Bläddra i källkod

feat: update params of oSubmit

node 5 år sedan
förälder
incheckning
924f2804d1
3 ändrade filer med 14 tillägg och 6 borttagningar
  1. 2
    1
      README.md
  2. 9
    2
      src/components/CommentInput/index.js
  3. 3
    3
      src/components/Editor/index.js

+ 2
- 1
README.md Visa fil

8
 import Comment, { Editor } from 'comment';
8
 import Comment, { Editor } from 'comment';
9
 ```
9
 ```
10
 
10
 
11
+- [deprecate] 表示不推荐使用
11
 
12
 
12
 ## Props
13
 ## Props
13
 
14
 
22
 | showList   | boolean | true                               | false    | 是否显示评论列表                             |
23
 | showList   | boolean | true                               | false    | 是否显示评论列表                             |
23
 | showEditor | boolean | true                               | false    | 是否显示评论输入框                           |
24
 | showEditor | boolean | true                               | false    | 是否显示评论输入框                           |
24
 | showHeader | boolean | true                               | false    | 是否显示评论顶部的提示                       |
25
 | showHeader | boolean | true                               | false    | 是否显示评论顶部的提示                       |
25
-| token      | string  |                                    | false    | token,用于身份认证,非必须。默认使用 cookie |
26
+| token    | string  |                                    | false    |  [deprecate] token,用于身份认证,非必须。默认使用 cookie |
26
 
27
 
27
 
28
 
28
 
29
 

+ 9
- 2
src/components/CommentInput/index.js Visa fil

11
 
11
 
12
   /**
12
   /**
13
    * 提交评论
13
    * 提交评论
14
-   * @param {string} value 需要提交的评论的值
14
+   * @param {object} { text<string>, files<array> } 需要提交的评论的文本和图片
15
    * @param {function} cb 提交成功后的回掉
15
    * @param {function} cb 提交成功后的回掉
16
    */
16
    */
17
-  handleSubmit(value, cb) {
17
+  handleSubmit({ text, files }, cb) {
18
+    let value = text;
19
+    if (files && files.length) {
20
+      value += "<br /><br />";
21
+      files.forEach(file => {
22
+        value += `[${file}]`;
23
+      });
24
+    }
18
     const { action, commentId, replyId, callback } = this.props;
25
     const { action, commentId, replyId, callback } = this.props;
19
     if (action === "comment") {
26
     if (action === "comment") {
20
       this.props.app.sCreateComment(
27
       this.props.app.sCreateComment(

+ 3
- 3
src/components/Editor/index.js Visa fil

91
    */
91
    */
92
   handleSubmit() {
92
   handleSubmit() {
93
     let { value, fileMap, fileList } = this.state;
93
     let { value, fileMap, fileList } = this.state;
94
+    const files = [];
94
     if (fileList.length) {
95
     if (fileList.length) {
95
-      value += "<br/>";
96
       fileList.forEach(item => {
96
       fileList.forEach(item => {
97
-        value += `[${OSS_LINK}${fileMap[item.uid]}]`;
97
+        files.push(`${OSS_LINK}${fileMap[item.uid]}`);
98
       });
98
       });
99
     }
99
     }
100
-    this.props.onSubmit(value, () => {
100
+    this.props.onSubmit({ text: value, files }, () => {
101
       this.setState({
101
       this.setState({
102
         showUpload: false,
102
         showUpload: false,
103
         value: "",
103
         value: "",