通用评论

index.js 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. "use strict";
  2. 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; };
  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. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  10. // import registerServiceWorker from "./registerServiceWorker";
  11. var Index = function Index(props) {
  12. return _react2.default.createElement(
  13. _App2.default,
  14. _extends({ showAlertComment: true, showAlertReply: true, showAlertFavor: true, showError: true }, props),
  15. _react2.default.createElement(_App.Editor, { maxUpload: 9, autoFocus: true })
  16. );
  17. };
  18. /**
  19. * 渲染评论组件
  20. * @param {object} config 编辑器配置
  21. * - {string} id 渲染评论的DOM的 ID
  22. * - {number} type 评论的 type
  23. * - {string} businessId 评论的 businessId
  24. * - {string} API, API 前缀, 默认 http://api.links123.net/comment/v1
  25. */
  26. function renderComment(config) {
  27. if (!config.id) {
  28. throw new Error("id is required");
  29. }
  30. if (!config.type) {
  31. throw new Error("type is required");
  32. }
  33. if (!config.businessId) {
  34. // throw new Error("businessId is required");
  35. console.warn("没有传入 businessId 参数,默认使用: test");
  36. }
  37. if (!config.API) {
  38. // throw new Error("API is required");
  39. console.warn("没有传入 API 参数,默认使用: http://api.links123.net/comment/v1");
  40. }
  41. var id = config.id,
  42. _config$type = config.type,
  43. type = _config$type === undefined ? 1 : _config$type,
  44. _config$businessId = config.businessId,
  45. businessId = _config$businessId === undefined ? "test" : _config$businessId,
  46. _config$API = config.API,
  47. API = _config$API === undefined ? "http://api.links123.net/comment/v1" : _config$API,
  48. userId = config.userId;
  49. _reactDom2.default.render(_react2.default.createElement(Index, { type: type, businessId: businessId, API: API, userId: userId }), document.getElementById(id));
  50. // registerServiceWorker();
  51. }
  52. window.renderComment = renderComment;
  53. renderComment({
  54. id: "root-comment",
  55. type: 1,
  56. businessId: "test"
  57. });
  58. // renderComment({
  59. // id: "root-comment",
  60. // type: 1,
  61. // businessId: "test",
  62. // API: 'http://api.links123.net/comment/v1',
  63. // });
  64. //# sourceMappingURL=index.js.map