2019-05-17 14:21:07 -04:00
|
|
|
// @flow
|
2020-08-27 16:08:31 -04:00
|
|
|
import { SIMPLE_SITE } from 'config';
|
2020-08-25 15:54:06 -04:00
|
|
|
import * as PAGES from 'constants/pages';
|
2019-06-26 19:59:27 -04:00
|
|
|
import { CHANNEL_NEW } from 'constants/claim';
|
2019-09-30 23:16:46 +02:00
|
|
|
import React, { useEffect, useState } from 'react';
|
2020-03-20 15:09:45 -04:00
|
|
|
import classnames from 'classnames';
|
2019-05-20 20:47:23 -04:00
|
|
|
import { FormField, Form } from 'component/common/form';
|
2019-05-17 14:21:07 -04:00
|
|
|
import Button from 'component/button';
|
2020-04-15 17:58:59 -04:00
|
|
|
import ChannelSelection from 'component/selectChannel';
|
2019-09-27 14:56:15 -04:00
|
|
|
import usePersistedState from 'effects/use-persisted-state';
|
2020-06-12 17:18:04 +02:00
|
|
|
import { FF_MAX_CHARS_IN_COMMENT } from 'constants/form-field';
|
2020-08-27 16:08:31 -04:00
|
|
|
import { useHistory } from 'react-router';
|
2019-05-17 14:21:07 -04:00
|
|
|
|
|
|
|
type Props = {
|
2019-05-20 20:47:23 -04:00
|
|
|
uri: string,
|
2019-06-12 10:53:27 -04:00
|
|
|
claim: StreamClaim,
|
2020-03-20 15:09:45 -04:00
|
|
|
createComment: (string, string, string, ?string) => void,
|
2020-03-02 15:41:11 -05:00
|
|
|
channels: ?Array<ChannelClaim>,
|
2020-09-11 13:51:31 -04:00
|
|
|
topLevelId?: string,
|
2020-03-20 15:09:45 -04:00
|
|
|
onDoneReplying?: () => void,
|
|
|
|
onCancelReplying?: () => void,
|
2020-08-24 13:35:21 -04:00
|
|
|
isNested: boolean,
|
2019-05-17 14:21:07 -04:00
|
|
|
};
|
|
|
|
|
2019-06-12 10:53:27 -04:00
|
|
|
export function CommentCreate(props: Props) {
|
2020-09-30 14:46:17 -04:00
|
|
|
const { createComment, claim, channels, topLevelId, onDoneReplying, onCancelReplying, isNested } = props;
|
2020-08-27 16:08:31 -04:00
|
|
|
const { push } = useHistory();
|
2019-06-12 10:53:27 -04:00
|
|
|
const { claim_id: claimId } = claim;
|
2020-09-11 13:51:31 -04:00
|
|
|
const isReply = !!topLevelId;
|
2020-03-20 15:09:45 -04:00
|
|
|
const [commentValue, setCommentValue] = React.useState('');
|
2020-02-18 17:48:10 -05:00
|
|
|
const [channel, setChannel] = usePersistedState('comment-channel', '');
|
2019-09-30 23:16:46 +02:00
|
|
|
const [charCount, setCharCount] = useState(commentValue.length);
|
2020-05-21 16:53:21 +08:00
|
|
|
const [advancedEditor, setAdvancedEditor] = usePersistedState('comment-editor-mode', false);
|
2020-08-25 15:54:06 -04:00
|
|
|
const hasChannels = channels && channels.length;
|
2019-05-17 14:21:07 -04:00
|
|
|
|
2020-03-02 15:41:11 -05:00
|
|
|
const topChannel =
|
|
|
|
channels &&
|
|
|
|
channels.reduce((top, channel) => {
|
|
|
|
const topClaimCount = (top && top.meta && top.meta.claims_in_channel) || 0;
|
|
|
|
const currentClaimCount = (channel && channel.meta && channel.meta.claims_in_channel) || 0;
|
|
|
|
return topClaimCount >= currentClaimCount ? top : channel;
|
|
|
|
});
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
// set default channel
|
|
|
|
if ((channel === '' || channel === 'anonymous') && topChannel) {
|
2020-08-24 13:35:21 -04:00
|
|
|
setChannel(topChannel.name);
|
2020-03-02 15:41:11 -05:00
|
|
|
}
|
2020-08-24 13:35:21 -04:00
|
|
|
}, [channel, topChannel, setChannel]);
|
2020-03-02 15:41:11 -05:00
|
|
|
|
2019-06-12 10:53:27 -04:00
|
|
|
function handleCommentChange(event) {
|
2020-06-03 11:37:57 -04:00
|
|
|
let commentValue;
|
|
|
|
if (isReply) {
|
|
|
|
commentValue = event.target.value;
|
|
|
|
} else {
|
2020-07-24 10:13:42 -04:00
|
|
|
commentValue = !SIMPLE_SITE && advancedEditor ? event : event.target.value;
|
2020-06-03 11:37:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
setCommentValue(commentValue);
|
2019-05-17 14:21:07 -04:00
|
|
|
}
|
|
|
|
|
2019-06-12 10:53:27 -04:00
|
|
|
function handleSubmit() {
|
2020-03-20 15:09:45 -04:00
|
|
|
if (channel !== CHANNEL_NEW && commentValue.length) {
|
2020-09-11 13:51:31 -04:00
|
|
|
createComment(commentValue, claimId, channel, topLevelId);
|
2020-03-20 15:09:45 -04:00
|
|
|
}
|
2020-09-11 13:51:31 -04:00
|
|
|
|
2019-06-12 10:53:27 -04:00
|
|
|
setCommentValue('');
|
2020-09-11 13:51:31 -04:00
|
|
|
|
2020-03-20 15:09:45 -04:00
|
|
|
if (onDoneReplying) {
|
|
|
|
onDoneReplying();
|
|
|
|
}
|
2019-05-17 14:21:07 -04:00
|
|
|
}
|
|
|
|
|
2020-05-21 16:53:21 +08:00
|
|
|
function toggleEditorMode() {
|
|
|
|
setAdvancedEditor(!advancedEditor);
|
|
|
|
}
|
|
|
|
|
2019-09-30 23:16:46 +02:00
|
|
|
useEffect(() => setCharCount(commentValue.length), [commentValue]);
|
|
|
|
|
2020-08-25 15:54:06 -04:00
|
|
|
if (!hasChannels) {
|
|
|
|
return (
|
2020-08-27 16:08:31 -04:00
|
|
|
<div role="button" onClick={() => push(`/$/${PAGES.CHANNEL_NEW}`)}>
|
2020-08-31 12:28:28 -04:00
|
|
|
<FormField type="textarea" name={'comment_signup_prompt'} placeholder={__('Say something about this...')} />
|
2020-08-25 15:54:06 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-12 10:53:27 -04:00
|
|
|
return (
|
2020-08-24 13:35:21 -04:00
|
|
|
<Form
|
|
|
|
onSubmit={handleSubmit}
|
|
|
|
className={classnames('comment__create', {
|
|
|
|
'comment__create--reply': isReply,
|
|
|
|
'comment__create--nested-reply': isNested,
|
|
|
|
})}
|
|
|
|
>
|
2019-11-14 15:02:15 -05:00
|
|
|
<FormField
|
|
|
|
disabled={channel === CHANNEL_NEW}
|
2020-07-24 10:13:42 -04:00
|
|
|
type={SIMPLE_SITE ? 'textarea' : advancedEditor && !isReply ? 'markdown' : 'textarea'}
|
2020-05-21 18:26:39 +08:00
|
|
|
name={isReply ? 'content_reply' : 'content_description'}
|
2020-08-24 13:35:21 -04:00
|
|
|
label={
|
|
|
|
<span className="comment-new__label-wrapper">
|
|
|
|
<div className="comment-new__label">{isReply ? __('Replying as') + ' ' : __('Comment as') + ' '}</div>
|
|
|
|
<ChannelSelection channel={channel} hideAnon tiny hideNew onChannelChange={setChannel} />
|
|
|
|
</span>
|
|
|
|
}
|
2020-07-24 10:13:42 -04:00
|
|
|
quickActionLabel={
|
|
|
|
!SIMPLE_SITE && (isReply ? undefined : advancedEditor ? __('Simple Editor') : __('Advanced Editor'))
|
|
|
|
}
|
2020-08-24 13:35:21 -04:00
|
|
|
quickActionHandler={!SIMPLE_SITE && toggleEditorMode}
|
2019-11-14 15:02:15 -05:00
|
|
|
placeholder={__('Say something about this...')}
|
|
|
|
value={commentValue}
|
|
|
|
charCount={charCount}
|
|
|
|
onChange={handleCommentChange}
|
2020-03-20 15:21:39 -04:00
|
|
|
autoFocus={isReply}
|
2020-06-12 17:18:04 +02:00
|
|
|
textAreaMaxLength={FF_MAX_CHARS_IN_COMMENT}
|
2019-11-14 15:02:15 -05:00
|
|
|
/>
|
2020-08-24 13:35:21 -04:00
|
|
|
<div className="section__actions section__actions--no-margin">
|
2020-01-23 15:41:14 -05:00
|
|
|
<Button
|
|
|
|
button="primary"
|
|
|
|
disabled={channel === CHANNEL_NEW || !commentValue.length}
|
|
|
|
type="submit"
|
2020-03-20 15:09:45 -04:00
|
|
|
label={isReply ? __('Reply') : __('Post')}
|
2020-01-23 15:41:14 -05:00
|
|
|
requiresAuth={IS_WEB}
|
|
|
|
/>
|
2020-03-20 15:09:45 -04:00
|
|
|
{isReply && (
|
|
|
|
<Button
|
|
|
|
button="link"
|
|
|
|
label={__('Cancel')}
|
|
|
|
onClick={() => {
|
|
|
|
if (onCancelReplying) {
|
|
|
|
onCancelReplying();
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
)}
|
2020-01-23 15:41:14 -05:00
|
|
|
</div>
|
2019-11-14 15:02:15 -05:00
|
|
|
</Form>
|
2019-06-12 10:53:27 -04:00
|
|
|
);
|
2019-05-17 14:21:07 -04:00
|
|
|
}
|