PLT-327: Add help text for Markdown
Этот коммит содержится в:
41
web/react/components/docs.jsx
Обычный файл
41
web/react/components/docs.jsx
Обычный файл
@@ -0,0 +1,41 @@
|
||||
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
const TextFormatting = require('../utils/text_formatting.jsx');
|
||||
const UserStore = require('../stores/user_store.jsx');
|
||||
|
||||
export default class Docs extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
UserStore.setCurrentUser(global.window.mm_user || {});
|
||||
|
||||
this.state = {text: ''};
|
||||
const errorState = {text: '## 404'};
|
||||
|
||||
if (props.site) {
|
||||
$.get('/static/help/' + props.site + '.md').then((response) => {
|
||||
this.setState({text: response});
|
||||
}, () => {
|
||||
this.setState(errorState);
|
||||
});
|
||||
} else {
|
||||
this.setState(errorState);
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div
|
||||
dangerouslySetInnerHTML={{__html: TextFormatting.formatText(this.state.text)}}
|
||||
>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Docs.defaultProps = {
|
||||
site: ''
|
||||
};
|
||||
Docs.propTypes = {
|
||||
site: React.PropTypes.string
|
||||
};
|
||||
Ссылка в новой задаче
Block a user