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';
|
2020-09-30 02:04:47 +02:00
|
|
|
import type { ElementRef } from 'react';
|
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-03-20 20:09:45 +01:00
|
|
|
onDoneReplying?: () => void,
|
|
|
|
onCancelReplying?: () => void,
|
2020-08-24 19:35:21 +02:00
|
|
|
isNested: boolean,
|
2020-10-06 21:35:13 +02:00
|
|
|
isFetchingChannels: boolean,
|
2020-10-07 21:14:52 +02:00
|
|
|
parentId: string,
|
|
|
|
isReply: boolean,
|
|
|
|
isPostingComment: boolean,
|
2019-05-17 20:21:07 +02:00
|
|
|
};
|
|
|
|
|
2019-06-12 16:53:27 +02:00
|
|
|
export function CommentCreate(props: Props) {
|
2020-10-06 21:35:13 +02:00
|
|
|
const {
|
|
|
|
createComment,
|
|
|
|
claim,
|
|
|
|
channels,
|
|
|
|
onDoneReplying,
|
|
|
|
onCancelReplying,
|
|
|
|
isNested,
|
|
|
|
isFetchingChannels,
|
2020-10-07 21:14:52 +02:00
|
|
|
isReply,
|
|
|
|
parentId,
|
|
|
|
isPostingComment,
|
2020-10-06 21:35:13 +02:00
|
|
|
} = props;
|
2020-09-30 02:04:47 +02:00
|
|
|
const buttonref: ElementRef<any> = React.useRef();
|
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-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;
|
2020-10-07 21:14:52 +02:00
|
|
|
const disabled = isPostingComment || channel === CHANNEL_NEW || !commentValue.length;
|
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
|
|
|
}
|
|
|
|
|
2020-09-30 02:04:47 +02:00
|
|
|
function altEnterListener(e: SyntheticKeyboardEvent<*>) {
|
2020-10-06 07:50:36 +02:00
|
|
|
const KEYCODE_ENTER = 13;
|
|
|
|
if ((e.ctrlKey || e.metaKey) && e.keyCode === KEYCODE_ENTER) {
|
2020-09-30 02:04:47 +02:00
|
|
|
e.preventDefault();
|
|
|
|
buttonref.current.click();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onTextareaFocus() {
|
|
|
|
window.addEventListener('keydown', altEnterListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onTextareaBlur() {
|
|
|
|
window.removeEventListener('keydown', altEnterListener);
|
|
|
|
}
|
|
|
|
|
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-10-07 21:14:52 +02:00
|
|
|
createComment(commentValue, claimId, channel, parentId).then(res => {
|
2020-09-30 02:11:48 +02:00
|
|
|
if (res && res.signature) {
|
|
|
|
setCommentValue('');
|
2020-10-07 21:14:52 +02:00
|
|
|
|
2020-09-30 02:11:48 +02:00
|
|
|
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-10-06 21:35:13 +02:00
|
|
|
<FormField
|
|
|
|
type="textarea"
|
|
|
|
name={'comment_signup_prompt'}
|
|
|
|
placeholder={__('Say something about this...')}
|
|
|
|
label={isFetchingChannels ? __('Comment') : undefined}
|
|
|
|
/>
|
|
|
|
<div className="section__actions">
|
2020-10-09 08:58:46 +02:00
|
|
|
<Button disabled button="primary" label={__('Post --[button to submit something]--')} requiresAuth={IS_WEB} />
|
2020-10-06 21:35:13 +02:00
|
|
|
</div>
|
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}
|
2020-09-30 02:04:47 +02:00
|
|
|
onFocus={onTextareaFocus}
|
|
|
|
onBlur={onTextareaBlur}
|
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
|
2020-09-30 02:04:47 +02:00
|
|
|
ref={buttonref}
|
2020-01-23 21:41:14 +01:00
|
|
|
button="primary"
|
2020-09-30 02:04:47 +02:00
|
|
|
disabled={disabled}
|
2020-01-23 21:41:14 +01:00
|
|
|
type="submit"
|
2020-10-07 21:14:52 +02:00
|
|
|
label={
|
|
|
|
isReply
|
|
|
|
? isPostingComment
|
|
|
|
? __('Replying...')
|
|
|
|
: __('Reply')
|
|
|
|
: isPostingComment
|
|
|
|
? __('Posting...')
|
2020-10-09 08:58:46 +02:00
|
|
|
: __('Post --[button to submit something]--')
|
2020-10-07 21:14:52 +02:00
|
|
|
}
|
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
|
|
|
}
|