通用评论

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. "use strict";
  2. var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
  3. var _react = require("react");
  4. var _react2 = _interopRequireDefault(_react);
  5. var _reactDom = require("react-dom");
  6. var _reactDom2 = _interopRequireDefault(_reactDom);
  7. var _App = require("./App");
  8. var _App2 = _interopRequireDefault(_App);
  9. var _registerServiceWorker = require("./registerServiceWorker");
  10. var _registerServiceWorker2 = _interopRequireDefault(_registerServiceWorker);
  11. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  12. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  13. function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
  14. function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
  15. // e.g.
  16. // import { Button, Icon } from "antd";
  17. // import App, { Editor, RenderText } from "./App";
  18. var Index = function (_Component) {
  19. _inherits(Index, _Component);
  20. function Index(props) {
  21. _classCallCheck(this, Index);
  22. var _this = _possibleConstructorReturn(this, (Index.__proto__ || Object.getPrototypeOf(Index)).call(this, props));
  23. _this.state = {
  24. value: ""
  25. };
  26. _this.handleChangeValue = _this.handleChangeValue.bind(_this);
  27. _this.handleChangeSubmit = _this.handleChangeSubmit.bind(_this);
  28. return _this;
  29. }
  30. _createClass(Index, [{
  31. key: "handleChangeValue",
  32. value: function handleChangeValue(value) {
  33. this.setState({ value: value });
  34. console.log("handleChangeValue value: ", value);
  35. }
  36. }, {
  37. key: "handleChangeSubmit",
  38. value: function handleChangeSubmit(_ref) {
  39. var _this2 = this;
  40. var text = _ref.text,
  41. files = _ref.files;
  42. this.setState({ loading: true }, function () {
  43. setTimeout(function () {
  44. _this2.setState({ loading: false });
  45. }, 2000);
  46. });
  47. console.log("submit text: ", text);
  48. console.log("submit files: ", files);
  49. }
  50. }, {
  51. key: "render",
  52. value: function render() {
  53. // 最简单的用法
  54. return _react2.default.createElement(
  55. _App2.default,
  56. { type: 1, businessId: "test" },
  57. _react2.default.createElement(_App.Editor, { maxUpload: 4 })
  58. );
  59. // e.g.
  60. // 复杂的用户法
  61. // const props = {
  62. // type: 1,
  63. // businessId: "1",
  64. // API: "http://api.links123.net/comment/v1",
  65. // showList: true
  66. // };
  67. // const editorProps = {
  68. // showEmoji: true,
  69. // placeholder: "说点什么吧",
  70. // rows: 5,
  71. // btnLoading: this.state.loading,
  72. // btnDisable: this.state.loading,
  73. // btnSubmitText: "提交",
  74. // value: this.state.value,
  75. // onChange: v => this.handleChangeValue(v),
  76. // onSubmit: v => this.handleChangeSubmit(v),
  77. // button: (
  78. // <Button
  79. // type="primary"
  80. // ghost
  81. // // onClick={() => console.log('click btn: ', this.state.value)}
  82. // >
  83. // 自定义按钮
  84. // </Button>
  85. // ),
  86. // emojiToolIcon: <Icon type="smile" style={{ fontSize: 23 }} />,
  87. // imageToolIcon: (
  88. // <Icon type="cloud-upload-o" style={{ fontSize: 25, marginLeft: 10 }} />
  89. // )
  90. // };
  91. // return (
  92. // <App {...props}>
  93. // <Editor {...editorProps} />
  94. // </App>
  95. // );
  96. }
  97. }]);
  98. return Index;
  99. }(_react.Component);
  100. _reactDom2.default.render(_react2.default.createElement(Index, null), document.getElementById("root-comment"));
  101. (0, _registerServiceWorker2.default)();
  102. //# sourceMappingURL=index.js.map