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

85 lines
2.7 KiB
React
Raw Normal View History

2019-05-17 20:21:07 +02:00
// @flow
import React 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-06-25 05:27:18 +02:00
import usePersistedState from 'util/use-persisted-state';
2019-05-17 20:21:07 +02:00
2019-05-21 02:47:23 +02:00
// props:
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,
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-06-25 05:27:18 +02:00
const COMMENT_ACKNOWLEDGED = 'COMMENT_ACKNOWLEDGED';
2019-06-12 16:53:27 +02:00
const { createComment, claim } = props;
const { claim_id: claimId } = claim;
const [commentValue, setCommentValue] = usePersistedState(`comment-${claimId}`, '');
2019-06-25 05:27:18 +02:00
const [commentAck, setCommentAck] = usePersistedState(COMMENT_ACKNOWLEDGED, false);
2019-06-12 16:53:27 +02:00
const [channel, setChannel] = usePersistedState('COMMENT_CHANNEL', 'anonymous');
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-06-12 16:53:27 +02:00
function handleCommentAck(event) {
2019-06-25 05:27:18 +02:00
setCommentAck(true);
2019-06-12 16:53:27 +02:00
}
function handleSubmit() {
if (channel !== 'new' && commentValue.length) createComment(commentValue, claimId, channel);
setCommentValue('');
2019-05-17 20:21:07 +02:00
}
2019-06-12 16:53:27 +02:00
return (
<React.Fragment>
2019-06-25 05:27:18 +02:00
{commentAck !== true && (
2019-06-12 16:53:27 +02:00
<section className="card card--section">
<div className="card__content">
<div className="media__title">About comments..</div>
</div>
2019-05-17 20:21:07 +02:00
<div className="card__content">
2019-06-12 16:53:27 +02:00
<div className="media__subtitle">Seriously, don&apos;t comment.</div>
2019-05-21 02:47:23 +02:00
</div>
2019-06-12 16:53:27 +02:00
<div className="card__content">
<Button button="primary" onClick={handleCommentAck} label={__('Got it!')} />
</div>
</section>
)}
2019-06-25 05:27:18 +02:00
{commentAck === true && (
2019-06-12 16:53:27 +02:00
<section className="card card--section">
<Form onSubmit={handleSubmit}>
2019-05-21 02:47:23 +02:00
<div className="card__content">
2019-06-12 16:53:27 +02:00
<ChannelSection channel={channel} onChannelChange={handleChannelChange} />
2019-05-21 02:47:23 +02:00
</div>
2019-06-12 16:53:27 +02:00
<div className="card__content">
<FormField
disabled={channel === 'new'}
type="textarea"
name="content_description"
label={__('Text')}
placeholder={__('Your comment')}
value={commentValue}
onChange={handleCommentChange}
/>
</div>
<div className="card__content">
<Button
button="primary"
disabled={channel === 'new' || !commentValue.length}
type="submit"
label={__('Post')}
/>
</div>
</Form>
</section>
)}
</React.Fragment>
);
2019-05-17 20:21:07 +02:00
}