2019-05-17 20:21:07 +02:00
|
|
|
// @flow
|
2021-04-23 21:59:48 +02:00
|
|
|
import type { ElementRef } from 'react';
|
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';
|
2021-04-23 21:59:48 +02:00
|
|
|
import * as ICONS from 'constants/icons';
|
|
|
|
import React 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';
|
2021-02-09 17:05:56 +01:00
|
|
|
import SelectChannel from 'component/selectChannel';
|
2019-09-27 20:56:15 +02:00
|
|
|
import usePersistedState from 'effects/use-persisted-state';
|
2021-04-23 21:59:48 +02:00
|
|
|
import { FF_MAX_CHARS_IN_COMMENT, FF_MAX_CHARS_IN_LIVESTREAM_COMMENT } from 'constants/form-field';
|
2020-08-27 22:08:31 +02:00
|
|
|
import { useHistory } from 'react-router';
|
2021-04-23 21:59:48 +02:00
|
|
|
import WalletTipAmountSelector from 'component/walletTipAmountSelector';
|
|
|
|
import CreditAmount from 'component/common/credit-amount';
|
|
|
|
import ChannelThumbnail from 'component/channelThumbnail';
|
|
|
|
import UriIndicator from 'component/uriIndicator';
|
2021-03-10 19:34:21 +01:00
|
|
|
|
|
|
|
const COMMENT_SLOW_MODE_SECONDS = 5;
|
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,
|
2020-10-20 05:20:38 +02:00
|
|
|
activeChannel: string,
|
2021-02-09 17:05:56 +01:00
|
|
|
activeChannelClaim: ?ChannelClaim,
|
2021-03-10 19:34:21 +01:00
|
|
|
livestream?: boolean,
|
|
|
|
toast: (string) => void,
|
|
|
|
claimIsMine: boolean,
|
2021-04-23 21:59:48 +02:00
|
|
|
sendTip: ({}, (any) => void, (any) => void) => void,
|
2021-05-15 06:56:58 +02:00
|
|
|
setjustCommented: (boolean) => void,
|
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,
|
2021-02-09 17:05:56 +01:00
|
|
|
activeChannelClaim,
|
2021-03-10 19:34:21 +01:00
|
|
|
livestream,
|
|
|
|
toast,
|
|
|
|
claimIsMine,
|
2021-04-23 21:59:48 +02:00
|
|
|
sendTip,
|
2021-05-15 06:56:58 +02:00
|
|
|
setjustCommented,
|
2020-10-06 21:35:13 +02:00
|
|
|
} = props;
|
2020-09-30 02:04:47 +02:00
|
|
|
const buttonref: ElementRef<any> = React.useRef();
|
2021-04-03 06:28:54 +02:00
|
|
|
const {
|
|
|
|
push,
|
|
|
|
location: { pathname },
|
|
|
|
} = useHistory();
|
2021-04-23 21:59:48 +02:00
|
|
|
const [isSubmitting, setIsSubmitting] = React.useState(false);
|
2019-06-12 16:53:27 +02:00
|
|
|
const { claim_id: claimId } = claim;
|
2021-04-23 21:59:48 +02:00
|
|
|
const [isSupportComment, setIsSupportComment] = React.useState();
|
|
|
|
const [isReviewingSupportComment, setIsReviewingSupportComment] = React.useState();
|
|
|
|
const [tipAmount, setTipAmount] = React.useState(1);
|
2020-03-20 20:09:45 +01:00
|
|
|
const [commentValue, setCommentValue] = React.useState('');
|
2021-03-10 19:34:21 +01:00
|
|
|
const [lastCommentTime, setLastCommentTime] = React.useState();
|
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;
|
2021-04-23 21:59:48 +02:00
|
|
|
const disabled = isSubmitting || !activeChannelClaim || !commentValue.length;
|
|
|
|
const charCount = commentValue.length;
|
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() {
|
2021-02-09 17:05:56 +01:00
|
|
|
if (activeChannelClaim && commentValue.length) {
|
2021-03-10 19:34:21 +01:00
|
|
|
const timeUntilCanComment = !lastCommentTime
|
|
|
|
? 0
|
2021-03-22 22:13:15 +01:00
|
|
|
: (lastCommentTime - Date.now()) / 1000 + COMMENT_SLOW_MODE_SECONDS;
|
2021-03-10 19:34:21 +01:00
|
|
|
|
|
|
|
if (livestream && !claimIsMine && timeUntilCanComment > 0) {
|
2021-04-03 06:28:54 +02:00
|
|
|
toast(__('Slowmode is on. You can comment again in %time% seconds.', { time: Math.ceil(timeUntilCanComment) }));
|
2021-03-10 19:34:21 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-04-23 21:59:48 +02:00
|
|
|
handleCreateComment();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleSupportComment() {
|
|
|
|
if (!activeChannelClaim) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const params = {
|
|
|
|
amount: tipAmount,
|
|
|
|
claim_id: claimId,
|
|
|
|
channel_id: activeChannelClaim.claim_id,
|
|
|
|
};
|
|
|
|
|
|
|
|
setIsSubmitting(true);
|
|
|
|
|
|
|
|
sendTip(
|
|
|
|
params,
|
|
|
|
(response) => {
|
|
|
|
const { txid } = response;
|
|
|
|
setTimeout(() => {
|
|
|
|
handleCreateComment(txid);
|
|
|
|
}, 1500);
|
|
|
|
},
|
|
|
|
() => {
|
|
|
|
setIsSubmitting(false);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleCreateComment(txid) {
|
|
|
|
setIsSubmitting(true);
|
|
|
|
createComment(commentValue, claimId, parentId, txid)
|
|
|
|
.then((res) => {
|
|
|
|
setIsSubmitting(false);
|
|
|
|
|
2020-09-30 02:11:48 +02:00
|
|
|
if (res && res.signature) {
|
|
|
|
setCommentValue('');
|
2021-03-22 22:13:15 +01:00
|
|
|
setLastCommentTime(Date.now());
|
2021-04-23 21:59:48 +02:00
|
|
|
setIsReviewingSupportComment(false);
|
|
|
|
setIsSupportComment(false);
|
2021-05-15 06:56:58 +02:00
|
|
|
setjustCommented(true);
|
2020-10-07 21:14:52 +02:00
|
|
|
|
2020-09-30 02:11:48 +02:00
|
|
|
if (onDoneReplying) {
|
|
|
|
onDoneReplying();
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 21:59:48 +02:00
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
setIsSubmitting(false);
|
2020-09-30 02:11:48 +02:00
|
|
|
});
|
2019-05-17 20:21:07 +02:00
|
|
|
}
|
|
|
|
|
2020-05-21 10:53:21 +02:00
|
|
|
function toggleEditorMode() {
|
|
|
|
setAdvancedEditor(!advancedEditor);
|
|
|
|
}
|
|
|
|
|
2020-08-25 21:54:06 +02:00
|
|
|
if (!hasChannels) {
|
|
|
|
return (
|
2021-04-03 06:28:54 +02:00
|
|
|
<div
|
|
|
|
role="button"
|
|
|
|
onClick={() => {
|
|
|
|
const pathPlusRedirect = `/$/${PAGES.CHANNEL_NEW}?redirect=${pathname}`;
|
|
|
|
if (livestream) {
|
|
|
|
window.open(pathPlusRedirect);
|
|
|
|
} else {
|
|
|
|
push(pathPlusRedirect);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
2020-10-06 21:35:13 +02:00
|
|
|
<FormField
|
|
|
|
type="textarea"
|
|
|
|
name={'comment_signup_prompt'}
|
|
|
|
placeholder={__('Say something about this...')}
|
|
|
|
label={isFetchingChannels ? __('Comment') : undefined}
|
|
|
|
/>
|
2021-04-23 21:59:48 +02:00
|
|
|
<div className="section__actions--no-margin">
|
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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-04-23 21:59:48 +02:00
|
|
|
if (isReviewingSupportComment && activeChannelClaim) {
|
|
|
|
return (
|
|
|
|
<div className="comment__create">
|
|
|
|
<div className="comment__sc-preview">
|
|
|
|
<CreditAmount className="comment__scpreview-amount" amount={tipAmount} size={18} />
|
|
|
|
|
|
|
|
<ChannelThumbnail xsmall uri={activeChannelClaim.canonical_url} />
|
|
|
|
<div>
|
|
|
|
<UriIndicator uri={activeChannelClaim.name} link />
|
|
|
|
<div>{commentValue}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="section__actions--no-margin">
|
|
|
|
<Button
|
|
|
|
autoFocus
|
|
|
|
button="primary"
|
|
|
|
disabled={disabled}
|
|
|
|
label={isSubmitting ? __('Sending...') : __('Send')}
|
|
|
|
onClick={handleSupportComment}
|
|
|
|
/>
|
|
|
|
<Button button="link" label={__('Cancel')} onClick={() => setIsReviewingSupportComment(false)} />
|
|
|
|
</div>
|
|
|
|
</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
|
2021-02-09 17:05:56 +01:00
|
|
|
disabled={!activeChannelClaim}
|
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">
|
2021-04-23 21:59:48 +02:00
|
|
|
{!livestream && (
|
|
|
|
<div className="comment-new__label">{isReply ? __('Replying as') + ' ' : __('Comment as') + ' '}</div>
|
|
|
|
)}
|
2021-02-09 17:05:56 +01:00
|
|
|
<SelectChannel tiny />
|
2020-08-24 19:35:21 +02:00
|
|
|
</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}
|
2021-04-23 21:59:48 +02:00
|
|
|
textAreaMaxLength={livestream ? FF_MAX_CHARS_IN_LIVESTREAM_COMMENT : FF_MAX_CHARS_IN_COMMENT}
|
2019-11-14 21:02:15 +01:00
|
|
|
/>
|
2021-04-23 21:59:48 +02:00
|
|
|
{isSupportComment && <WalletTipAmountSelector amount={tipAmount} onChange={(amount) => setTipAmount(amount)} />}
|
|
|
|
<div className="section__actions section__actions--no-margin">
|
|
|
|
{isSupportComment ? (
|
|
|
|
<>
|
2021-03-10 19:34:21 +01:00
|
|
|
<Button
|
2021-04-23 21:59:48 +02:00
|
|
|
disabled={disabled}
|
2021-03-10 19:34:21 +01:00
|
|
|
type="button"
|
2021-04-23 21:59:48 +02:00
|
|
|
button="primary"
|
|
|
|
icon={ICONS.LBC}
|
|
|
|
label={__('Review')}
|
|
|
|
onClick={() => setIsReviewingSupportComment(true)}
|
2021-03-10 19:34:21 +01:00
|
|
|
/>
|
2021-04-23 21:59:48 +02:00
|
|
|
|
|
|
|
<Button disabled={disabled} button="link" label={__('Cancel')} onClick={() => setIsSupportComment(false)} />
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<Button
|
|
|
|
ref={buttonref}
|
|
|
|
button="primary"
|
|
|
|
disabled={disabled}
|
|
|
|
type="submit"
|
|
|
|
label={
|
|
|
|
isReply
|
|
|
|
? isSubmitting
|
|
|
|
? __('Replying...')
|
|
|
|
: __('Reply')
|
|
|
|
: isSubmitting
|
|
|
|
? __('Commenting...')
|
|
|
|
: __('Comment --[button to submit something]--')
|
2020-03-20 20:09:45 +01:00
|
|
|
}
|
2021-04-23 21:59:48 +02:00
|
|
|
requiresAuth={IS_WEB}
|
|
|
|
/>
|
|
|
|
{!claimIsMine && (
|
|
|
|
<Button disabled={disabled} button="alt" icon={ICONS.LBC} onClick={() => setIsSupportComment(true)} />
|
|
|
|
)}
|
|
|
|
{isReply && (
|
|
|
|
<Button
|
|
|
|
button="link"
|
|
|
|
label={__('Cancel')}
|
|
|
|
onClick={() => {
|
|
|
|
if (onCancelReplying) {
|
|
|
|
onCancelReplying();
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</>
|
2020-03-20 20:09:45 +01:00
|
|
|
)}
|
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
|
|
|
}
|