1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- import React from "react";
- import ReactDOM from "react-dom";
- import App, { Editor } from "./App";
- // import registerServiceWorker from "./registerServiceWorker";
-
- const Index = props => (
- <App showAlertComment showAlertReply showAlertFavor showError {...props}>
- <Editor maxUpload={9} autoFocus {...props.editorProps} />
- </App>
- );
-
- /**
- * 渲染评论组件
- * @param {object} config 编辑器配置
- * - {string} id 渲染评论的DOM的 ID
- * - {number} type 评论的 type
- * - {string} businessId 评论的 businessId
- * - {string} API, API 前缀, 默认 http://api.links123.net/comment/v1
- */
- function renderComment(config) {
- if (!config.id) {
- throw new Error("id is required");
- }
- if (!config.type) {
- throw new Error("type is required");
- }
- if (!config.businessId) {
- // throw new Error("businessId is required");
- config.businessId = "test";
- console.warn("没有传入 businessId 参数,默认使用: test");
- }
- if (!config.API) {
- // throw new Error("API is required");
- config.API = "http://api.links123.net/comment/v1";
- console.warn(
- "没有传入 API 参数,默认使用: http://api.links123.net/comment/v1"
- );
- }
-
- ReactDOM.render(<Index {...config} />, document.getElementById(config.id));
- // registerServiceWorker();
- }
-
- window.renderComment = renderComment;
-
- if (process.env.NODE_ENV !== "production") {
- renderComment({
- id: "root-comment",
- type: 1,
- businessId: "test",
- businessUserId: 4,
- userId: 71299,
- onCountChange: c => {
- console.log(c);
- }
- });
- }
-
- // renderComment({
- // id: "root-comment",
- // type: 1,
- // businessId: "test",
- // API: 'http://api.links123.net/comment/v1',
- // });
|