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