// @flow import { SIMPLE_SITE, SITE_NAME } from 'config'; import * as MODALS from 'constants/modal_types'; import * as PAGES from 'constants/pages'; import { CHANNEL_NEW } from 'constants/claim'; import React, { useEffect, useState } from 'react'; import classnames from 'classnames'; import { FormField, Form } from 'component/common/form'; import Button from 'component/button'; import ChannelSelection from 'component/selectChannel'; import usePersistedState from 'effects/use-persisted-state'; import I18nMessage from 'component/i18nMessage'; import { FF_MAX_CHARS_IN_COMMENT } from 'constants/form-field'; type Props = { commentingEnabled: boolean, uri: string, claim: StreamClaim, openModal: (id: string, { onCommentAcknowledge: () => void }) => void, createComment: (string, string, string, ?string) => void, channels: ?Array, parentId?: string, onDoneReplying?: () => void, onCancelReplying?: () => void, isNested: boolean, }; export function CommentCreate(props: Props) { const { commentingEnabled, createComment, claim, openModal, channels, parentId, onDoneReplying, onCancelReplying, isNested, } = props; const { claim_id: claimId } = claim; const isReply = !!parentId; const [commentValue, setCommentValue] = React.useState(''); const [commentAck, setCommentAck] = usePersistedState('comment-acknowledge', false); const [channel, setChannel] = usePersistedState('comment-channel', ''); const [charCount, setCharCount] = useState(commentValue.length); const [advancedEditor, setAdvancedEditor] = usePersistedState('comment-editor-mode', false); const hasChannels = channels && channels.length; 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) { setChannel(topChannel.name); } }, [channel, topChannel, setChannel]); function handleCommentChange(event) { let commentValue; if (isReply) { commentValue = event.target.value; } else { commentValue = !SIMPLE_SITE && advancedEditor ? event : event.target.value; } setCommentValue(commentValue); } function handleCommentAck() { setCommentAck(true); } function onTextareaFocus() { if (!commentAck) { openModal(MODALS.COMMENT_ACKNOWEDGEMENT, { onCommentAcknowledge: handleCommentAck }); } } function handleSubmit() { if (channel !== CHANNEL_NEW && commentValue.length) { createComment(commentValue, claimId, channel, parentId); } setCommentValue(''); if (onDoneReplying) { onDoneReplying(); } } function toggleEditorMode() { setAdvancedEditor(!advancedEditor); } useEffect(() => setCharCount(commentValue.length), [commentValue]); if (!commentingEnabled) { return ( }}> Please %sign_in_link% to comment. ); } if (!hasChannels) { return (

{__('Join the discussion')}

{__('A channel is required to comment on %SITE_NAME%.', { SITE_NAME })}

); } return (
{isReply ? __('Replying as') + ' ' : __('Comment as') + ' '}
} quickActionLabel={ !SIMPLE_SITE && (isReply ? undefined : advancedEditor ? __('Simple Editor') : __('Advanced Editor')) } quickActionHandler={!SIMPLE_SITE && toggleEditorMode} onFocus={onTextareaFocus} placeholder={__('Say something about this...')} value={commentValue} charCount={charCount} onChange={handleCommentChange} autoFocus={isReply} textAreaMaxLength={FF_MAX_CHARS_IN_COMMENT} />
); }