123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571 |
- import dayjs from "dayjs";
- import shortid from "shortid";
- import PropTypes from "prop-types";
- import classnames from "classnames";
- import React, { Fragment } from "react";
- import intl from "react-intl-universal";
- import { Icon, Button, Popover, Input, message } from "antd";
- import Emoji from "./Emoji";
- import Upload from "./Upload";
- import Comment from "../../Comment";
- import { isMobile } from "./../../utils";
- import { OSS_LINK } from "../../constant";
- import { isFunction } from "../../helper";
- import { DRIVER_LICENSE_PATH, ERROR_DEFAULT } from "../../constant";
- import "./index.css";
-
- const { TextArea } = Input;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- class Editor extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- showUpload: false,
- value: props.value || "",
- fileList: props.fileList || [],
- fileMap: {},
- uploadVisible: false
- };
- this.handleChange = this.handleChange.bind(this);
- this.handleClickEmoji = this.handleClickEmoji.bind(this);
- this.handleChangeFileList = this.handleChangeFileList.bind(this);
- this.handleShowUpload = this.handleShowUpload.bind(this);
- this.handleUpload = this.handleUpload.bind(this);
- this.handleSubmit = this.handleSubmit.bind(this);
- this.handlePaste = this.handlePaste.bind(this);
- this.resetState = this.resetState.bind(this);
- this.handleEmojiScroll = this.handleEmojiScroll.bind(this);
- this.handlePressEnter = this.handlePressEnter.bind(this);
- this.invokeFileListChange = this.invokeFileListChange.bind(this);
- }
-
- componentDidMount() {
- const { app, onRef } = this.props;
- if (
- app.currentUser &&
- (app.currentUser.user_id > 0 || app.currentUser.id > 0)
- ) {
- app.sOssSts();
- }
- if (isFunction(onRef)) {
- onRef(this);
- }
- }
-
- handleEmojiScroll(e) {
- if (!this.emoji) {
- return;
- }
- e.preventDefault();
- if (e.deltaY > 0) {
- this.emoji.next();
- } else if (e.deltaY < 0) {
- this.emoji.prev();
- }
- }
-
-
-
- handleChange(value) {
- this.setState({ value });
- if (this.props.onChange) {
- this.props.onChange(value);
- }
- }
-
-
-
- handleClickEmoji(emoji) {
- let value = this.props.value || this.state.value;
- value += `[${emoji}]`;
- this.handleChange(value);
- }
-
-
-
- handleChangeFileList(fileList) {
- let list = fileList;
- if (fileList.length > this.props.maxUpload) {
- list = fileList.slice(0, this.props.maxUpload);
- }
- this.invokeFileListChange(list);
- }
-
-
-
- handleShowUpload(showUpload) {
- if (typeof showUpload === "boolean") {
- this.setState({ showUpload: showUpload });
- } else {
- this.setState({ showUpload: !this.state.showUpload });
- }
- }
-
-
-
- handleUpload({ uid, path }) {
- const { fileMap } = this.state;
- let { fileList } = this.state;
- fileMap[uid] = path;
- fileList = fileList.map(item => {
- if (item.uid === uid) {
- item.thumbUrl = OSS_LINK + path;
- }
- return item;
- });
- this.setState({ fileMap });
- this.invokeFileListChange(fileList);
- }
-
-
-
- invokeFileListChange(fileList) {
- const { limitOne, handleChangeFileList } = this.props;
- handleChangeFileList(fileList);
- this.setState({ fileList });
- if (limitOne && isMobile) {
- const file = fileList[0];
- if (
- file &&
- file.status === "done" &&
- !file.thumbUrl.includes("data:image")
- ) {
- this.setState({ uploadVisible: false });
- }
- }
- }
-
-
-
- handlePaste(e) {
- if (this.state.fileList.length >= this.props.maxUpload) {
- return;
- }
- const items = e.clipboardData && e.clipboardData.items;
- let file = null;
- if (items && items.length) {
- for (let i = 0; i < items.length; i++) {
- if (items[i].type.indexOf("image") !== -1) {
- file = items[i].getAsFile();
- break;
- }
- }
- if (file === null) return;
- }
- this.setState({
- uploadVisible: true
- });
- let reader = new FileReader();
- reader.readAsDataURL(file);
- reader.onloadend = () => {
-
- this.props.app
- .UploadToOss(this.props.app.oss, DRIVER_LICENSE_PATH, file)
- .then(data => {
- const fileList = this.state.fileList.concat({
- url: OSS_LINK + data.name,
- thumbUrl: OSS_LINK + data.name,
- type: file.type,
- uid: new Date().valueOf()
- });
- this.invokeFileListChange(fileList);
- })
- .catch(e => {
- const msg = e.message || ERROR_DEFAULT;
- if (this.props.showError) {
- message.error(msg);
- }
- if (this.props.onError) {
- this.props.onError(msg, { response: e.response });
- }
- });
- };
- }
-
-
-
- handleSubmit() {
- const { maxLength } = this.props;
- let { value, fileMap, fileList } = this.state;
- if (value.length > maxLength) {
-
- message.error(intl.get("editor.maxLength", { maxLength }));
- return;
- }
- const files = [];
- if (fileList.length) {
- fileList.forEach(item => {
- if (item.url) {
- files.push(item.url);
- return;
- }
- if (!fileMap[item.uid]) {
- return;
- }
- files.push(`${OSS_LINK}${fileMap[item.uid]}`);
- });
- }
- if (this.props.beforeSubmit) {
- Promise.resolve(this.props.beforeSubmit({ text: value, files })).then(
- res => {
- if (!(res === false)) {
- this.props.onSubmit({ text: value, files }, (res, action) => {
- this.resetState();
- if (action === "comment" && this.props.onCommentSuccess) {
- this.props.onCommentSuccess(res);
- }
- });
- }
- }
- );
- } else {
- this.props.onSubmit({ text: value, files }, (res, action) => {
- this.resetState();
- if (action === "comment" && this.props.onCommentSuccess) {
- this.props.onCommentSuccess(res);
- }
- });
- }
- }
-
- resetState() {
- this.handleChange("");
- this.handleChangeFileList([]);
- this.setState({
- showUpload: false,
- value: "",
- fileList: [],
- fileMap: {}
- });
- }
-
- checkDisabledSubmit() {
- const { btnDisabled, value, fileList } = this.props;
- if (btnDisabled) {
- return true;
- }
- if (value && value !== "") {
- return false;
- }
- if (this.state.value && this.state.value !== "") {
- return false;
- }
- if (fileList && fileList.length > 0) {
- return false;
- }
- if (this.state.fileList.length > 0) {
- return false;
- }
- return true;
- }
-
-
-
- handlePressEnter(e) {
- if (this.props.allowEnterSubmit) {
- if (!e.shiftKey) {
- e.preventDefault();
- this.handleSubmit();
- }
- }
- }
-
- render() {
- const {
- value,
-
- rows,
- showEmoji,
- showUpload,
- multiple,
- emojiPopoverPlacement,
- uploadPopoverPlacement,
- uploadOverlayClassName,
- fileList,
- maxUpload,
-
- btnLoading,
- button,
- emojiToolIcon,
- imageToolIcon,
- maxLength,
- autoFocus,
- app
- } = this.props;
- let placeholder = this.props.placeholder || intl.get("editor.placeholder");
- let btnSubmitText =
- this.props.btnSubmitText || intl.get("editor.SubmitBtn");
- const handleSubmit = this.handleSubmit;
- const disabledSubmit = this.checkDisabledSubmit();
- const inputValue = value || this.state.value;
- const uploadFileList = fileList || this.state.fileList;
- const isLogin =
- app.currentUser &&
- (app.currentUser.user_id > 0 || app.currentUser.id > 0);
-
- return (
- <div className="comment-editor-container" onPaste={this.handlePaste}>
- {isLogin ? (
- <Fragment>
- <div
- className={classnames({
- "comment-editor-toolbar": true,
- "comment-editor-toolbar-error": inputValue.length > maxLength
- })}
- ></div>
- <div className="comment-editor">
- <TextArea
- value={inputValue}
- onChange={e => {
- this.handleChange(e.target.value);
- }}
- rows={rows}
- placeholder={placeholder}
- autoFocus={autoFocus}
- onPressEnter={this.handlePressEnter}
- />
-
- <div className="comment-toolbar">
- <div className="comment-toolbar-left">
- {showEmoji && (
- <Popover
- trigger="click"
- placement={emojiPopoverPlacement}
- autoAdjustOverflow={false}
- overlayStyle={{ zIndex: 9999 }}
- content={
- <div
- style={{ width: 240, height: 205 }}
- onWheel={this.handleEmojiScroll}
- >
- <Emoji
- onClick={this.handleClickEmoji}
- ref={node => {
- this.emoji = node;
- }}
- emojiList={this.props.app.emojiList}
- />
- </div>
- }
- overlayClassName="comment-emoji-popover"
- >
- {emojiToolIcon || (
- <Icon type="smile-o" className="comment-toolbar-icon" />
- )}
- </Popover>
- )}
-
- {showUpload ? (
- <Popover
- trigger="click"
- // TODO: 针对非 react.js,直接使用 click 事件来控制展开或关闭
- visible={this.state.uploadVisible}
- placement={uploadPopoverPlacement}
- overlayClassName={uploadOverlayClassName}
- autoAdjustOverflow={false}
- overlayStyle={{ zIndex: 9999 }}
- onVisibleChange={visible => {
- this.setState({
- uploadVisible: visible
- });
- }}
- content={
- <div className="comment-img-popover">
- <Upload
- onRef={node => (this.uploadRef = node)}
- multiple={multiple}
- onChangeFileList={this.handleChangeFileList}
- onUpload={this.handleUpload}
- maxUpload={maxUpload}
- fileList={uploadFileList}
- showError={this.props.showError}
- onError={this.props.onError}
- />
- <div className="clearfix" />
- </div>
- }
- title={
- <div className="comment-img-title">
- <span>
- {intl.get("editor.uploadTip")}
- {maxUpload >= 2 ? (
- <span className="comment-img-title-counter">
- {intl.get("editor.uploadCount", {
- count: maxUpload - uploadFileList.length
- })}
- </span>
- ) : null}
- </span>
- </div>
- }
- >
- {imageToolIcon ? (
- React.cloneElement(imageToolIcon, {
- onClick: () => this.handleShowUpload(true)
- })
- ) : (
- <Icon
- type="picture"
- className="comment-toolbar-icon"
- style={{ marginLeft: 20 }}
- onClick={() => this.handleShowUpload(true)}
- />
- )}
- </Popover>
- ) : null}
- </div>
-
- <div className="comment-toolbar-right">
- {button ? (
- React.cloneElement(button, {
- onClick: button.props.onClick || handleSubmit
- })
- ) : (
- <Button
- onClick={() => this.handleSubmit()}
- type="primary"
- loading={btnLoading}
- disabled={disabledSubmit}
- >
- {btnSubmitText}
- </Button>
- )}
- </div>
- </div>
- </div>
- </Fragment>
- ) : (
- <Fragment>
- <div className="comment-unlogin-tip">
- {intl.get("comment.unlogin")}
- </div>
- <div className="comment-unlogin-button">
- <Button
- type="primary"
- onClick={() => {
- window.location.href = `${app.LOGINLINK}?f=${window.location.href}`;
- }}
- >
- {intl.get("account.login")}
- </Button>
- </div>
- </Fragment>
- )}
- </div>
- );
- }
- }
-
- Editor.propTypes = {
- rows: PropTypes.number,
- placeholder: PropTypes.string,
- showEmoji: PropTypes.bool,
- emojiPopoverPlacement: PropTypes.string,
- showUpload: PropTypes.bool,
- uploadPopoverPlacement: PropTypes.string,
- uploadOverlayClassName: PropTypes.string,
- multiple: PropTypes.bool,
- closeUploadWhenBlur: PropTypes.bool,
- maxUpload: PropTypes.number,
- value: PropTypes.string,
- onChange: PropTypes.func,
- onSubmit: PropTypes.func,
- beforeSubmit: PropTypes.func,
- btnSubmitText: PropTypes.string,
- btnLoading: PropTypes.bool,
- btnDisabled: PropTypes.bool,
- button: PropTypes.node,
- emojiToolIcon: PropTypes.node,
- imageToolIcon: PropTypes.node,
- showError: PropTypes.bool,
- onError: PropTypes.func,
- maxLength: PropTypes.number,
- // Enter事件相关
- allowEnterSubmit: PropTypes.bool,
- // 私信仅允许选中一个,此处可以优化为通用的limit
- limitOne: PropTypes.bool
- };
-
- Editor.defaultProps = {
- rows: 5,
- // placeholder: "说点什么吧",
- showEmoji: true,
- showUpload: true,
- multiple: true,
- emojiPopoverPlacement: "bottomLeft",
- closeUploadWhenBlur: false,
- uploadPopoverPlacement: "bottomLeft",
- uploadOverlayClassName: "",
- maxUpload: 1,
- // btnSubmitText: "发表",
- btnLoading: false,
- btnDisabled: false,
- showError: true,
- maxLength: 5000,
- app: {},
- handleChangeFileList: () => {},
- // Enter事件相关
- allowEnterSubmit: false,
- limitOne: false
- };
-
- export default Comment(Editor);
|