Browse Source

为高级web模式设置置顶栏

pull/4/head
欧醚 4 years ago
parent
commit
dc6403acac
2 changed files with 22 additions and 0 deletions
  1. +21
    -0
      app/javascript/mastodon/features/compose/index.js
  2. +1
    -0
      app/javascript/styles/closed-social/global.scss

+ 21
- 0
app/javascript/mastodon/features/compose/index.js View File

@ -18,6 +18,9 @@ import { mascot, treeRoot } from '../../initial_state';
import Icon from 'mastodon/components/icon';
import { logOut } from 'mastodon/utils/log_out';
import { pinnedInfo } from '../../initial_state';
import ReactHtmlParser, { processNodes, convertNodeToElement, htmlparser2 } from 'react-html-parser';
const messages = defineMessages({
start: { id: 'getting_started.heading', defaultMessage: 'Getting started' },
home_timeline: { id: 'tabs_bar.home', defaultMessage: 'Home' },
@ -50,6 +53,10 @@ class Compose extends React.PureComponent {
intl: PropTypes.object.isRequired,
};
state = {
showPinned: true,
}
componentDidMount () {
const { isSearchPage } = this.props;
@ -88,9 +95,14 @@ class Compose extends React.PureComponent {
onBlur = () => {
this.props.dispatch(changeComposing(false));
}
handleClear = () => {
this.setState({ showPinned: false});
}
render () {
const { multiColumn, showSearch, isSearchPage, intl } = this.props;
const { showPinned } = this.state;
let header = '';
@ -126,6 +138,15 @@ class Compose extends React.PureComponent {
{(multiColumn || isSearchPage) && <SearchContainer /> }
{ pinnedInfo && showPinned &&
<div className='hero-widget__text pinned-info'>
{ReactHtmlParser(pinnedInfo)}
<div className='pinned-info__icon' onClick={this.handleClear}>
<Icon id='times-circle' />
</div>
</div>
}
<div className='drawer__pager'>
{!isSearchPage && <div className='drawer__inner' onFocus={this.onFocus}>
<NavigationContainer onClose={this.onBlur} />

+ 1
- 0
app/javascript/styles/closed-social/global.scss View File

@ -3,6 +3,7 @@
}
.pinned-info {
position: relative;
opacity: 0.85;
font-size: 15px;
padding: 10px 20px;

Loading…
Cancel
Save