lbry-desktop/ui/component/commentCreate/view.jsx

140 lines
4.5 KiB
React
Raw Normal View History

2019-05-17 14:21:07 -04:00
// @flow
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';
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';
import ChannelSelection from 'component/selectChannel';
2019-09-27 14:56:15 -04:00
import usePersistedState from 'effects/use-persisted-state';
import { FF_MAX_CHARS_IN_COMMENT } from 'constants/form-field';
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,
channels: ?Array<ChannelClaim>,
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;
const { push } = useHistory();
2019-06-12 10:53:27 -04:00
const { claim_id: claimId } = claim;
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', '');
const [charCount, setCharCount] = useState(commentValue.length);
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
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-08-24 13:35:21 -04:00
}, [channel, topChannel, setChannel]);
2019-06-12 10:53:27 -04:00
function handleCommentChange(event) {
let commentValue;
if (isReply) {
commentValue = event.target.value;
} else {
commentValue = !SIMPLE_SITE && advancedEditor ? event : event.target.value;
}
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) {
createComment(commentValue, claimId, channel, topLevelId);
2020-03-20 15:09:45 -04:00
}
2019-06-12 10:53:27 -04:00
setCommentValue('');
2020-03-20 15:09:45 -04:00
if (onDoneReplying) {
onDoneReplying();
}
2019-05-17 14:21:07 -04:00
}
function toggleEditorMode() {
setAdvancedEditor(!advancedEditor);
}
useEffect(() => setCharCount(commentValue.length), [commentValue]);
2020-08-25 15:54:06 -04:00
if (!hasChannels) {
return (
<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}
type={SIMPLE_SITE ? 'textarea' : advancedEditor && !isReply ? 'markdown' : 'textarea'}
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>
}
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}
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">
<Button
button="primary"
disabled={channel === CHANNEL_NEW || !commentValue.length}
type="submit"
2020-03-20 15:09:45 -04:00
label={isReply ? __('Reply') : __('Post')}
requiresAuth={IS_WEB}
/>
2020-03-20 15:09:45 -04:00
{isReply && (
<Button
button="link"
label={__('Cancel')}
onClick={() => {
if (onCancelReplying) {
onCancelReplying();
}
}}
/>
)}
</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
}