Fix look of the modals
parent
2a7602cad4
commit
960181fd99
|
@ -1,27 +1,21 @@
|
||||||
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||||
import { defineMessages, injectIntl } from 'react-intl';
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
||||||
import IconButton from '../../../components/icon_button';
|
import IconButton from '../../../components/icon_button';
|
||||||
import Button from '../../../components/button';
|
import Button from '../../../components/button';
|
||||||
import DetailedStatus from '../../status/components/detailed_status';
|
import StatusContent from '../../../components/status_content';
|
||||||
|
import Avatar from '../../../components/avatar';
|
||||||
|
import RelativeTimestamp from '../../../components/relative_timestamp';
|
||||||
|
import DisplayName from '../../../components/display_name';
|
||||||
|
|
||||||
const messages = defineMessages({
|
const messages = defineMessages({
|
||||||
close: { id: 'lightbox.close', defaultMessage: 'Close' },
|
|
||||||
reblog: { id: 'status.reblog', defaultMessage: 'Boost' }
|
reblog: { id: 'status.reblog', defaultMessage: 'Boost' }
|
||||||
});
|
});
|
||||||
|
|
||||||
const closeStyle = {
|
|
||||||
position: 'absolute',
|
|
||||||
top: '4px',
|
|
||||||
right: '4px'
|
|
||||||
};
|
|
||||||
|
|
||||||
const buttonContainerStyle = {
|
|
||||||
textAlign: 'right',
|
|
||||||
padding: '10px'
|
|
||||||
};
|
|
||||||
|
|
||||||
const BoostModal = React.createClass({
|
const BoostModal = React.createClass({
|
||||||
|
contextTypes: {
|
||||||
|
router: React.PropTypes.object
|
||||||
|
},
|
||||||
|
|
||||||
propTypes: {
|
propTypes: {
|
||||||
status: ImmutablePropTypes.map.isRequired,
|
status: ImmutablePropTypes.map.isRequired,
|
||||||
|
@ -37,23 +31,42 @@ const BoostModal = React.createClass({
|
||||||
this.props.onClose();
|
this.props.onClose();
|
||||||
},
|
},
|
||||||
|
|
||||||
handleOpenMedia() {
|
handleAccountClick (e) {
|
||||||
// do nothing"
|
if (e.button === 0) {
|
||||||
|
e.preventDefault();
|
||||||
|
this.props.onClose();
|
||||||
|
this.context.router.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
const { status, intl, onClose } = this.props;
|
const { status, intl, onClose } = this.props;
|
||||||
|
|
||||||
const reblogButton = <span><i className='fa fa-retweet' /> {intl.formatMessage(messages.reblog)}</span>;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='modal-root__modal boost-modal'>
|
<div className='modal-root__modal boost-modal'>
|
||||||
<IconButton title={intl.formatMessage(messages.close)} icon='times' onClick={onClose} size={16} style={closeStyle} />
|
<div className='boost-modal__container'>
|
||||||
<div>
|
<div className='status light'>
|
||||||
<DetailedStatus status={status} onOpenMedia={this.handleOpenMedia} />
|
<div style={{ fontSize: '15px' }}>
|
||||||
|
<div style={{ float: 'right', fontSize: '14px' }}>
|
||||||
|
<a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a onClick={this.handleAccountClick} href={status.getIn(['account', 'url'])} className='status__display-name' style={{ display: 'block', maxWidth: '100%', paddingRight: '25px' }}>
|
||||||
|
<div className='status__avatar' style={{ position: 'absolute', left: '10px', top: '10px', width: '48px', height: '48px' }}>
|
||||||
|
<Avatar src={status.getIn(['account', 'avatar'])} staticSrc={status.getIn(['account', 'avatar_static'])} size={48} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<DisplayName account={status.get('account')} />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<StatusContent status={status} />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style={buttonContainerStyle}>
|
|
||||||
<Button text={reblogButton} onClick={this.handleReblog} />
|
<div className='boost-modal__action-bar'>
|
||||||
|
<div><FormattedMessage id='boost_modal.combo' defaultMessage='You can press {combo} to skip this next time' values={{ combo: <span>Alt + <i className='fa fa-retweet' /></span> }} /></div>
|
||||||
|
<Button text={intl.formatMessage(messages.reblog)} onClick={this.handleReblog} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -349,6 +349,43 @@ a.status__content__spoiler-link {
|
||||||
.status__display-name {
|
.status__display-name {
|
||||||
color: lighten($color1, 26%);
|
color: lighten($color1, 26%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.light {
|
||||||
|
.status__relative-time {
|
||||||
|
color: $color3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status__display-name {
|
||||||
|
color: $color1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.display-name {
|
||||||
|
strong {
|
||||||
|
color: $color1;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: $color3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.status__content {
|
||||||
|
color: $color1;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $color4;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.status__content__spoiler-link {
|
||||||
|
color: $color5;
|
||||||
|
background: $color3;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: lighten($color3, 8%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-check-box {
|
.status-check-box {
|
||||||
|
@ -1938,30 +1975,39 @@ button.icon-button.active i.fa-retweet {
|
||||||
}
|
}
|
||||||
|
|
||||||
.boost-modal {
|
.boost-modal {
|
||||||
display: block;
|
background: lighten($color2, 8%);
|
||||||
|
color: $color1;
|
||||||
color: white;
|
border-radius: 8px;
|
||||||
background: lighten($color1, 13%);
|
overflow: hidden;
|
||||||
|
|
||||||
max-width: 90vw;
|
max-width: 90vw;
|
||||||
width: 480px;
|
width: 480px;
|
||||||
|
|
||||||
padding-top: 25px;
|
|
||||||
border-radius: 3px;
|
|
||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
& .detailed-status {
|
.boost-modal__container {
|
||||||
pointer-events: none;
|
padding: 10px;
|
||||||
max-height: 60vh;
|
|
||||||
overflow-y: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
& > .icon-button {
|
.status {
|
||||||
color: lighten($color1, 40%);
|
user-select: text;
|
||||||
|
border-bottom: 0;
|
||||||
&:hover, &:active {
|
}
|
||||||
color: lighten($color1, 60%);
|
}
|
||||||
}
|
|
||||||
|
.boost-modal__action-bar {
|
||||||
|
display: flex;
|
||||||
|
background: $color2;
|
||||||
|
padding: 10px;
|
||||||
|
line-height: 36px;
|
||||||
|
|
||||||
|
& > div {
|
||||||
|
flex: 1 1 auto;
|
||||||
|
text-align: right;
|
||||||
|
color: lighten($color1, 33%);
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
flex: 0 0 auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue