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

84 lines
2.6 KiB
React
Raw Normal View History

2019-05-17 20:21:07 +02:00
// @flow
2019-06-27 01:59:27 +02:00
import { CHANNEL_NEW } from 'constants/claim';
import React, { useEffect, useState } from 'react';
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';
import ChannelSection from 'component/selectChannel';
2019-09-27 20:56:15 +02:00
import usePersistedState from 'effects/use-persisted-state';
2019-11-14 21:02:15 +01:00
import * as MODALS from 'constants/modal_types';
import I18nMessage from '../i18nMessage/view';
2019-05-17 20:21:07 +02:00
type Props = {
2019-11-14 21:02:15 +01:00
commentingEnabled: boolean,
2019-05-21 02:47:23 +02:00
uri: string,
2019-06-12 16:53:27 +02:00
claim: StreamClaim,
2019-11-14 21:02:15 +01:00
openModal: (id: string, { onCommentAcknowledge: () => void }) => void,
2019-06-12 16:53:27 +02:00
createComment: (string, string, string) => void,
2019-05-17 20:21:07 +02:00
};
2019-06-12 16:53:27 +02:00
export function CommentCreate(props: Props) {
2019-11-14 21:02:15 +01:00
const { commentingEnabled, createComment, claim, openModal } = props;
2019-06-12 16:53:27 +02:00
const { claim_id: claimId } = claim;
const [commentValue, setCommentValue] = usePersistedState(`comment-${claimId}`, '');
2019-06-27 01:59:27 +02:00
const [commentAck, setCommentAck] = usePersistedState('comment-acknowledge', false);
const [channel, setChannel] = usePersistedState('comment-channel', 'anonymous');
const [charCount, setCharCount] = useState(commentValue.length);
2019-05-17 20:21:07 +02:00
2019-06-12 16:53:27 +02:00
function handleCommentChange(event) {
setCommentValue(event.target.value);
2019-05-17 20:21:07 +02:00
}
2019-06-12 16:53:27 +02:00
function handleChannelChange(channel) {
setChannel(channel);
2019-05-21 02:47:23 +02:00
}
2019-11-14 21:02:15 +01:00
function handleCommentAck() {
2019-06-25 05:27:18 +02:00
setCommentAck(true);
2019-06-12 16:53:27 +02:00
}
2019-07-17 22:49:06 +02:00
2019-11-14 21:02:15 +01:00
function onTextareaFocus() {
if (!commentAck) {
openModal(MODALS.COMMENT_ACKNOWEDGEMENT, { onCommentAcknowledge: handleCommentAck });
}
}
2019-06-12 16:53:27 +02:00
function handleSubmit() {
2019-06-27 01:59:27 +02:00
if (channel !== CHANNEL_NEW && commentValue.length) createComment(commentValue, claimId, channel);
2019-06-12 16:53:27 +02:00
setCommentValue('');
2019-05-17 20:21:07 +02:00
}
useEffect(() => setCharCount(commentValue.length), [commentValue]);
2019-11-14 21:02:15 +01:00
if (!commentingEnabled) {
return (
<I18nMessage tokens={{ sign_in_link: <Button button="link" requiresAuth label={__('sign in')} /> }}>
Please %sign_in_link% to comment.
</I18nMessage>
);
}
2019-06-12 16:53:27 +02:00
return (
2019-11-14 21:02:15 +01:00
<Form onSubmit={handleSubmit}>
<ChannelSection channel={channel} onChannelChange={handleChannelChange} />
<FormField
disabled={channel === CHANNEL_NEW}
type="textarea"
name="content_description"
label={__('Comment')}
onFocus={onTextareaFocus}
placeholder={__('Say something about this...')}
value={commentValue}
charCount={charCount}
onChange={handleCommentChange}
/>
<Button
button="primary"
disabled={channel === CHANNEL_NEW || !commentValue.length}
type="submit"
label={__('Post')}
requiresAuth={IS_WEB}
/>
</Form>
2019-06-12 16:53:27 +02:00
);
2019-05-17 20:21:07 +02:00
}