通用评论 vedio

index.js 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  6. 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; }; }();
  7. var _react = require('react');
  8. var _react2 = _interopRequireDefault(_react);
  9. var _propTypes = require('prop-types');
  10. var _propTypes2 = _interopRequireDefault(_propTypes);
  11. var _Comment = require('../../Comment');
  12. var _Comment2 = _interopRequireDefault(_Comment);
  13. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  14. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  15. 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; }
  16. 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; }
  17. var CommentInput = function (_Component) {
  18. _inherits(CommentInput, _Component);
  19. function CommentInput(props) {
  20. _classCallCheck(this, CommentInput);
  21. var _this = _possibleConstructorReturn(this, (CommentInput.__proto__ || Object.getPrototypeOf(CommentInput)).call(this, props));
  22. _this.state = {};
  23. _this.handleSubmit = _this.handleSubmit.bind(_this);
  24. return _this;
  25. }
  26. /**
  27. * 提交评论
  28. * @param {object} { text<string>, files<array> } 需要提交的评论的文本和图片
  29. * @param {function} cb 提交成功后的回掉
  30. */
  31. _createClass(CommentInput, [{
  32. key: 'handleSubmit',
  33. value: function handleSubmit(_ref, cb) {
  34. var text = _ref.text,
  35. files = _ref.files;
  36. var value = text;
  37. if (files && files.length) {
  38. value += '<br /><br />';
  39. files.forEach(function (file) {
  40. value += '[' + file + ']';
  41. });
  42. }
  43. var _props = this.props,
  44. action = _props.action,
  45. commentId = _props.commentId,
  46. replyId = _props.replyId,
  47. callback = _props.callback;
  48. if (action === 'comment') {
  49. this.props.app.sCreateComment({
  50. content: value
  51. }, cb);
  52. } else if (action === 'reply') {
  53. this.props.app.sCreateReply({
  54. comment_id: commentId,
  55. content: value
  56. }, function () {
  57. return callback && callback();
  58. });
  59. } else if (action === 'replyToReply') {
  60. this.props.app.sCreateReply({
  61. comment_id: commentId,
  62. content: value,
  63. reply_id: replyId
  64. }, function () {
  65. return callback && callback();
  66. });
  67. }
  68. }
  69. }, {
  70. key: 'render',
  71. value: function render() {
  72. var _this2 = this;
  73. var childrenWithProps = _react2.default.Children.map(this.props.content, function (child) {
  74. return _react2.default.cloneElement(child, _extends({
  75. // 编辑器本身不提交值,但 CommentInput 会提交
  76. // CommentInput 主要是负责评论的业务逻辑,提交评论和回复
  77. // 默认使用 CommentInput 的 onSubmit 来提交评论
  78. // 但也可以使用 Editor 的 props 来覆盖 onSubmit
  79. onSubmit: _this2.handleSubmit
  80. }, child.props, {
  81. // 如果当前的编辑器不是“评论”,则编辑器高度减小一些
  82. rows: _this2.props.action === 'comment' ? child.props.rows : child.props.rows - 1
  83. }));
  84. });
  85. return _react2.default.createElement(
  86. 'div',
  87. null,
  88. childrenWithProps
  89. );
  90. }
  91. }]);
  92. return CommentInput;
  93. }(_react.Component);
  94. CommentInput.propTypes = {
  95. // comment 评论
  96. // reply 评论的回复
  97. // replyToReply 回复的回复
  98. action: _propTypes2.default.oneOf(['comment', 'reply', 'replyToReply'])
  99. };
  100. CommentInput.defaultProps = {
  101. action: 'comment'
  102. };
  103. exports.default = (0, _Comment2.default)(CommentInput);
  104. //# sourceMappingURL=index.js.map