|
@@ -3,7 +3,7 @@ import {Layout, message} from 'antd';
|
|
|
import './PostArticleLayout.less'
|
|
|
import MarkdownEditor from "../../Components/MarkdownEditor/MarkdownEditor";
|
|
|
import PostHeader from "../../Components/PostHeader/PostHeader";
|
|
|
-import {apiPostArticle, apiPostGetClasses, apiPostGetTags} from "../../API/API";
|
|
|
+import {apiPostArticle, apiPostGetClasses, apiPostGetTags, apiSaveArticle} from "../../API/API";
|
|
|
|
|
|
const {Header, Content} = Layout;
|
|
|
|
|
@@ -15,6 +15,8 @@ class PostArticleLayout extends Component {
|
|
|
stags: [],
|
|
|
aclass: '',
|
|
|
classes: null,
|
|
|
+ cover: '',
|
|
|
+ Interval: null
|
|
|
}
|
|
|
|
|
|
componentDidMount() {
|
|
@@ -32,6 +34,9 @@ class PostArticleLayout extends Component {
|
|
|
})
|
|
|
}
|
|
|
})
|
|
|
+ this.setState({
|
|
|
+ Interval: setInterval(this.handleSave, 60000)
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
handleTextChange = text => {
|
|
@@ -47,26 +52,56 @@ class PostArticleLayout extends Component {
|
|
|
}
|
|
|
|
|
|
handlePost = () => {
|
|
|
- let params = {
|
|
|
- title: this.state.title,
|
|
|
- content: this.state.text,
|
|
|
- tag: this.state.stags,
|
|
|
- }
|
|
|
- apiPostArticle(params).then(res => {
|
|
|
- if (res.data.code === '402') {
|
|
|
- message.success('发布成功')
|
|
|
- } else if (res.data.code === '401') {
|
|
|
- message.error(res.data.message)
|
|
|
- // window.location.href = ""
|
|
|
- } else {
|
|
|
- message.error('错误')
|
|
|
- // window.location.href = ""
|
|
|
+ if (this.state.title === '') {
|
|
|
+ message.warning('请写标题')
|
|
|
+ } else if (this.state.text === '') {
|
|
|
+ message.warning('请写内容')
|
|
|
+ } else {
|
|
|
+ clearInterval(this.state.Interval)
|
|
|
+ let params = {
|
|
|
+ title: this.state.title,
|
|
|
+ content: this.state.text,
|
|
|
+ tag: this.state.stags,
|
|
|
+ cover: this.state.cover,
|
|
|
+ class: this.state.aclass,
|
|
|
}
|
|
|
+ apiPostArticle(params).then(res => {
|
|
|
+ if (res.data.code === '402') {
|
|
|
+ message.success('发布成功')
|
|
|
+ } else if (res.data.code === '401') {
|
|
|
+ message.error(res.data.message)
|
|
|
+ // window.location.href = ""
|
|
|
+ } else if (res.data.code === '403') {
|
|
|
+ message.error(res.data.message)
|
|
|
+ // window.location.href = ""
|
|
|
+ } else {
|
|
|
+ message.error('错误')
|
|
|
+ // window.location.href = ""
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ handleCoverChange = cover => {
|
|
|
+ this.setState({
|
|
|
+ cover: cover
|
|
|
})
|
|
|
}
|
|
|
|
|
|
handleSave = () => {
|
|
|
-
|
|
|
+ if (this.state.title !== '' || this.state.text !== '') {
|
|
|
+ let params = {
|
|
|
+ title: this.state.title,
|
|
|
+ content: this.state.text,
|
|
|
+ }
|
|
|
+ apiSaveArticle(params).then(res => {
|
|
|
+ if (res.data.code === '402') {
|
|
|
+ message.success('已保存')
|
|
|
+ } else {
|
|
|
+ message.error('保存错误')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
handleTagSet = tags => {
|
|
@@ -93,6 +128,7 @@ class PostArticleLayout extends Component {
|
|
|
tags={this.state.tags}
|
|
|
handleClassChange={this.handleClassChange.bind(this)}
|
|
|
classes={this.state.classes}
|
|
|
+ handleCoverChange={this.handleCoverChange.bind(this)}
|
|
|
/>
|
|
|
</Header>
|
|
|
<Content>
|