Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
scratch-www
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
scratch-www
Commits
07bd1f21
Commit
07bd1f21
authored
Oct 23, 2015
by
Matthew Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move to using iframe in modal
like registration
parent
cfb7fa03
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
22 deletions
+53
-22
src/components/banner/banner.scss
src/components/banner/banner.scss
+1
-0
src/components/modal/modal.jsx
src/components/modal/modal.jsx
+12
-12
src/views/splash/splash.jsx
src/views/splash/splash.jsx
+40
-10
No files found.
src/components/banner/banner.scss
View file @
07bd1f21
...
...
@@ -5,6 +5,7 @@ $navigation-height: 50px;
.banner
{
position
:
fixed
;
top
:
$navigation-height
;
z-index
:
99
;
box-shadow
:
0
1px
1px
$ui-dark-gray
;
background-color
:
$ui-orange
;
width
:
100%
;
...
...
src/components/modal/modal.jsx
View file @
07bd1f21
...
...
@@ -17,17 +17,7 @@ var Modal = React.createClass({
},
getDefaultProps
:
function
()
{
return
{
frameSettings
:
null
,
style
:
{
overlay
:
{
zIndex
:
100
,
backgroundColor
:
'
rgba(0, 0, 0, .75)
'
},
content
:
{
overflow
:
'
visible
'
,
borderRadius
:
'
6px
'
}
}
frameSettings
:
null
};
},
requestClose
:
function
()
{
...
...
@@ -35,7 +25,17 @@ var Modal = React.createClass({
},
render
:
function
()
{
var
frameSettings
=
this
.
props
.
frameSettings
;
var
style
=
this
.
props
.
style
;
var
style
=
this
.
props
.
style
||
{};
defaults
(
style
,
{
overlay
:
{
zIndex
:
100
,
backgroundColor
:
'
rgba(0, 0, 0, .75)
'
},
content
:
{
overflow
:
'
visible
'
,
borderRadius
:
'
6px
'
}
});
var
modalProps
=
omit
(
this
.
props
,
[
'
frameSettings
'
,
'
style
'
]);
if
(
frameSettings
)
{
defaults
(
frameSettings
,
Modal
.
defaultFrameSettings
);
...
...
src/views/splash/splash.jsx
View file @
07bd1f21
...
...
@@ -41,9 +41,17 @@ var Splash = injectIntl(React.createClass({
this
.
getActivity
();
this
.
getFeaturedCustom
();
this
.
getNews
();
if
(
this
.
state
.
session
.
flags
.
has_outstanding_email_confirmation
&&
this
.
state
.
session
.
flags
.
confirm_email_banner
)
{
window
.
addEventListener
(
'
message
'
,
this
.
onMessage
);
}
}
else
{
this
.
setState
({
featuredCustom
:
[]});
this
.
getProjectCount
();
window
.
removeEventListener
(
'
message
'
,
this
.
onMessage
);
}
}
},
...
...
@@ -53,15 +61,36 @@ var Splash = injectIntl(React.createClass({
this
.
getActivity
();
this
.
getFeaturedCustom
();
this
.
getNews
();
if
(
this
.
state
.
session
.
flags
.
has_outstanding_email_confirmation
&&
this
.
state
.
session
.
flags
.
confirm_email_banner
)
{
window
.
addEventListener
(
'
message
'
,
this
.
onMessage
);
}
}
else
{
this
.
getProjectCount
();
}
},
componentWillUnmount
:
function
()
{
window
.
removeEventListener
(
'
message
'
,
this
.
onMessage
);
},
onMessage
:
function
(
e
)
{
if
(
e
.
origin
!=
window
.
location
.
origin
)
return
;
if
(
e
.
data
==
'
resend-done
'
)
{
this
.
hideEmailConfirmationModal
();
}
else
{
var
data
=
JSON
.
parse
(
e
.
data
);
if
(
data
[
'
action
'
]
===
'
leave-page
'
)
{
window
.
location
.
href
=
data
[
'
uri
'
];
}
}
},
getActivity
:
function
()
{
this
.
api
({
uri
:
'
/proxy/users/
'
+
this
.
state
.
session
.
user
.
username
+
'
/activity?limit=5
'
},
function
(
err
,
body
)
{
if
(
!
err
)
this
.
setState
({
'
activity
'
:
body
});
if
(
!
err
)
this
.
setState
({
activity
:
body
});
}.
bind
(
this
));
},
getFeaturedGlobal
:
function
()
{
...
...
@@ -82,7 +111,7 @@ var Splash = injectIntl(React.createClass({
this
.
api
({
uri
:
'
/news?limit=3
'
},
function
(
err
,
body
)
{
if
(
!
err
)
this
.
setState
({
'
news
'
:
body
});
if
(
!
err
)
this
.
setState
({
news
:
body
});
}.
bind
(
this
));
},
getProjectCount
:
function
()
{
...
...
@@ -93,10 +122,10 @@ var Splash = injectIntl(React.createClass({
}.
bind
(
this
));
},
showEmailConfirmationModal
:
function
()
{
this
.
setState
({
showEmailConfirmationModal
:
true
});
this
.
setState
({
emailConfirmationModalOpen
:
true
});
},
hideEmailConfirmationModal
:
function
()
{
this
.
setState
({
showEmailConfirmationModal
:
false
});
this
.
setState
({
emailConfirmationModalOpen
:
false
});
},
handleDismiss
:
function
(
cue
)
{
this
.
api
({
...
...
@@ -250,7 +279,7 @@ var Splash = injectIntl(React.createClass({
},
render
:
function
()
{
var
featured
=
this
.
renderHomepageRows
();
var
showEmailConfirmation
=
true
;
(
var
showEmailConfirmation
=
(
this
.
state
.
session
.
user
&&
this
.
state
.
session
.
flags
.
has_outstanding_email_confirmation
&&
this
.
state
.
session
.
flags
.
confirm_email_banner
);
return
(
...
...
@@ -260,16 +289,17 @@ var Splash = injectIntl(React.createClass({
className=
"warning"
onRequestDismiss=
{
this
.
handleDismiss
.
bind
(
this
,
'
confirmed_email
'
)
}
>
<
a
href=
"#"
onClick=
{
this
.
showEmailConfirmationModal
}
>
Confirm your email
</
a
>
to enable sharing.
{
'
'
}
{
'
'
}
to enable sharing.
{
'
'
}
<
a
href=
"/info/faq/#accounts"
>
Having trouble?
</
a
>
</
Banner
>,
<
Modal
key=
"emailConfirmationModal"
isOpen=
{
this
.
s
howEmailConfirmationModal
}
isOpen=
{
this
.
s
tate
.
emailConfirmationModalOpen
}
onRequestClose=
{
this
.
hideEmailConfirmationModal
}
frameSettings=
{
Modal
.
defaultFrameSettings
}
>
frameSettings=
{
{
width
:
500
,
height
:
330
,
padding
:
1
}
}
>
<
iframe
src=
"/accounts/email_resend/"
{
...
omit
(
Modal
.
defaultFrameSettings
,
'
padding
')}
/>
src=
"/accounts/email_resend_standalone/"
width=
"500"
height=
"330"
/>
</
Modal
>
]
:
[]
}
<
div
key=
"inner"
className=
"inner"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment