2019-07-02 19:54:42 +02:00
|
|
|
// @flow
|
2020-06-30 07:51:15 +02:00
|
|
|
import * as MODALS from 'constants/modal_types';
|
|
|
|
import * as ICONS from 'constants/icons';
|
|
|
|
import React from 'react';
|
2020-08-25 21:54:06 +02:00
|
|
|
import classnames from 'classnames';
|
2019-11-14 18:00:01 +01:00
|
|
|
import { FormField } from 'component/common/form';
|
2019-07-23 10:05:51 +02:00
|
|
|
import Button from 'component/button';
|
2019-11-22 22:13:00 +01:00
|
|
|
import TagsSearch from 'component/tagsSearch';
|
2021-02-25 02:53:56 +01:00
|
|
|
import { FF_MAX_CHARS_IN_DESCRIPTION } from 'constants/form-field';
|
2020-06-21 18:51:06 +02:00
|
|
|
import ErrorText from 'component/common/error-text';
|
2020-06-29 21:54:07 +02:00
|
|
|
import ChannelThumbnail from 'component/channelThumbnail';
|
|
|
|
import { isNameValid, parseURI } from 'lbry-redux';
|
|
|
|
import ClaimAbandonButton from 'component/claimAbandonButton';
|
2020-07-02 19:18:06 +02:00
|
|
|
import { useHistory } from 'react-router-dom';
|
2020-06-29 21:54:07 +02:00
|
|
|
import { MINIMUM_PUBLISH_BID, INVALID_NAME_ERROR, ESTIMATED_FEE } from 'constants/claim';
|
2020-06-30 07:51:15 +02:00
|
|
|
import { Tabs, TabList, Tab, TabPanels, TabPanel } from 'component/common/tabs';
|
|
|
|
import Card from 'component/common/card';
|
2020-07-02 19:18:06 +02:00
|
|
|
import * as PAGES from 'constants/pages';
|
2020-07-03 00:14:40 +02:00
|
|
|
import analytics from 'analytics';
|
2020-09-02 22:08:37 +02:00
|
|
|
import LbcSymbol from 'component/common/lbc-symbol';
|
2020-10-15 19:56:55 +02:00
|
|
|
import SUPPORTED_LANGUAGES from 'constants/supported_languages';
|
2021-02-02 21:00:24 +01:00
|
|
|
import WalletSpendableBalanceHelp from 'component/walletSpendableBalanceHelp';
|
2021-03-30 01:05:18 +02:00
|
|
|
import { SIMPLE_SITE } from 'config';
|
2021-06-07 03:54:39 +02:00
|
|
|
import { sortLanguageMap } from 'util/default-languages';
|
2021-02-02 21:00:24 +01:00
|
|
|
|
2020-10-15 19:56:55 +02:00
|
|
|
const LANG_NONE = 'none';
|
|
|
|
|
2020-07-02 18:18:59 +02:00
|
|
|
const MAX_TAG_SELECT = 5;
|
2019-07-02 19:54:42 +02:00
|
|
|
|
|
|
|
type Props = {
|
2019-08-15 13:36:03 +02:00
|
|
|
claim: ChannelClaim,
|
2020-06-29 21:54:07 +02:00
|
|
|
title: string,
|
2020-07-03 17:03:29 +02:00
|
|
|
amount: number,
|
2020-07-02 19:39:29 +02:00
|
|
|
coverUrl: string,
|
|
|
|
thumbnailUrl: string,
|
2019-07-02 19:54:42 +02:00
|
|
|
location: { search: string },
|
|
|
|
description: string,
|
|
|
|
website: string,
|
|
|
|
email: string,
|
|
|
|
balance: number,
|
|
|
|
tags: Array<string>,
|
|
|
|
locations: Array<string>,
|
|
|
|
languages: Array<string>,
|
2021-02-25 02:53:56 +01:00
|
|
|
updateChannel: (any) => Promise<any>,
|
2020-06-22 17:19:55 +02:00
|
|
|
updatingChannel: boolean,
|
2020-06-29 21:54:07 +02:00
|
|
|
updateError: string,
|
2021-02-25 02:53:56 +01:00
|
|
|
createChannel: (any) => Promise<any>,
|
2020-06-29 21:54:07 +02:00
|
|
|
createError: string,
|
|
|
|
creatingChannel: boolean,
|
2020-07-03 00:14:40 +02:00
|
|
|
clearChannelErrors: () => void,
|
2020-06-29 21:54:07 +02:00
|
|
|
onDone: () => void,
|
2020-06-30 07:51:15 +02:00
|
|
|
openModal: (
|
|
|
|
id: string,
|
2021-02-25 02:53:56 +01:00
|
|
|
{ onUpdate: (string) => void, assetName: string, helpText: string, currentValue: string, title: string }
|
2020-06-30 07:51:15 +02:00
|
|
|
) => void,
|
2020-06-29 21:54:07 +02:00
|
|
|
uri: string,
|
2020-09-02 22:08:37 +02:00
|
|
|
disabled: boolean,
|
2019-07-02 19:54:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
function ChannelForm(props: Props) {
|
|
|
|
const {
|
2020-06-29 21:54:07 +02:00
|
|
|
uri,
|
2019-08-15 13:36:03 +02:00
|
|
|
claim,
|
2020-07-03 16:44:29 +02:00
|
|
|
amount,
|
2019-07-02 19:54:42 +02:00
|
|
|
title,
|
|
|
|
description,
|
|
|
|
website,
|
|
|
|
email,
|
2020-07-02 19:39:29 +02:00
|
|
|
thumbnailUrl,
|
|
|
|
coverUrl,
|
2019-07-02 19:54:42 +02:00
|
|
|
tags,
|
|
|
|
locations,
|
2020-10-15 19:56:55 +02:00
|
|
|
languages = [],
|
2020-06-29 21:54:07 +02:00
|
|
|
onDone,
|
2019-07-02 19:54:42 +02:00
|
|
|
updateChannel,
|
2020-06-21 18:51:06 +02:00
|
|
|
updateError,
|
2020-06-22 17:19:55 +02:00
|
|
|
updatingChannel,
|
2020-06-29 21:54:07 +02:00
|
|
|
createChannel,
|
|
|
|
creatingChannel,
|
|
|
|
createError,
|
2020-07-03 00:14:40 +02:00
|
|
|
clearChannelErrors,
|
2020-06-29 21:54:07 +02:00
|
|
|
openModal,
|
2020-08-25 21:54:06 +02:00
|
|
|
disabled,
|
2019-07-02 19:54:42 +02:00
|
|
|
} = props;
|
2020-06-30 07:51:15 +02:00
|
|
|
const [nameError, setNameError] = React.useState(undefined);
|
|
|
|
const [bidError, setBidError] = React.useState('');
|
2020-11-19 18:17:47 +01:00
|
|
|
const [coverError, setCoverError] = React.useState(false);
|
2020-06-29 21:54:07 +02:00
|
|
|
const { claim_id: claimId } = claim || {};
|
2020-07-02 18:18:59 +02:00
|
|
|
const [params, setParams]: [any, (any) => void] = React.useState(getChannelParams());
|
2020-06-29 21:54:07 +02:00
|
|
|
const { channelName } = parseURI(uri);
|
|
|
|
const name = params.name;
|
2020-06-30 07:51:15 +02:00
|
|
|
const isNewChannel = !uri;
|
2020-07-02 19:18:06 +02:00
|
|
|
const { replace } = useHistory();
|
2020-10-15 19:56:55 +02:00
|
|
|
const languageParam = params.languages;
|
|
|
|
const primaryLanguage = Array.isArray(languageParam) && languageParam.length && languageParam[0];
|
|
|
|
const secondaryLanguage = Array.isArray(languageParam) && languageParam.length >= 2 && languageParam[1];
|
2020-06-29 21:54:07 +02:00
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
function getChannelParams() {
|
|
|
|
// fill this in with sdk data
|
|
|
|
const channelParams: {
|
|
|
|
website: string,
|
|
|
|
email: string,
|
2020-07-02 19:39:29 +02:00
|
|
|
coverUrl: string,
|
|
|
|
thumbnailUrl: string,
|
2020-06-30 07:51:15 +02:00
|
|
|
description: string,
|
|
|
|
title: string,
|
|
|
|
amount: number,
|
|
|
|
languages: ?Array<string>,
|
|
|
|
locations: ?Array<string>,
|
|
|
|
tags: ?Array<{ name: string }>,
|
|
|
|
claim_id?: string,
|
|
|
|
} = {
|
|
|
|
website,
|
|
|
|
email,
|
2020-07-02 19:39:29 +02:00
|
|
|
coverUrl,
|
|
|
|
thumbnailUrl,
|
2020-06-30 07:51:15 +02:00
|
|
|
description,
|
|
|
|
title,
|
2020-07-03 17:03:29 +02:00
|
|
|
amount: amount || 0.001,
|
2020-06-30 07:51:15 +02:00
|
|
|
languages: languages || [],
|
|
|
|
locations: locations || [],
|
|
|
|
tags: tags
|
2021-02-25 02:53:56 +01:00
|
|
|
? tags.map((tag) => {
|
2020-06-30 07:51:15 +02:00
|
|
|
return { name: tag };
|
|
|
|
})
|
|
|
|
: [],
|
|
|
|
};
|
|
|
|
|
|
|
|
if (claimId) {
|
|
|
|
channelParams['claim_id'] = claimId;
|
2020-06-29 21:54:07 +02:00
|
|
|
}
|
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
return channelParams;
|
|
|
|
}
|
2019-07-02 19:54:42 +02:00
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
function handleBidChange(bid: number) {
|
2019-07-02 19:54:42 +02:00
|
|
|
const { balance, amount } = props;
|
2020-07-03 16:23:49 +02:00
|
|
|
const totalAvailableBidAmount = (parseFloat(amount) || 0.0) + (parseFloat(balance) || 0.0);
|
|
|
|
|
2019-07-02 19:54:42 +02:00
|
|
|
setParams({ ...params, amount: bid });
|
2020-06-29 21:54:07 +02:00
|
|
|
|
2019-07-02 19:54:42 +02:00
|
|
|
if (bid <= 0.0 || isNaN(bid)) {
|
|
|
|
setBidError(__('Deposit cannot be 0'));
|
|
|
|
} else if (totalAvailableBidAmount < bid) {
|
2021-01-22 17:08:11 +01:00
|
|
|
setBidError(
|
|
|
|
__('Deposit cannot be higher than your available balance: %balance%', { balance: totalAvailableBidAmount })
|
|
|
|
);
|
2020-07-03 00:14:40 +02:00
|
|
|
} else if (totalAvailableBidAmount - bid < ESTIMATED_FEE) {
|
|
|
|
setBidError(__('Please decrease your deposit to account for transaction fees'));
|
2019-11-13 19:11:51 +01:00
|
|
|
} else if (bid < MINIMUM_PUBLISH_BID) {
|
2019-07-02 19:54:42 +02:00
|
|
|
setBidError(__('Your deposit must be higher'));
|
2020-06-29 21:54:07 +02:00
|
|
|
} else {
|
|
|
|
setBidError('');
|
2019-07-02 19:54:42 +02:00
|
|
|
}
|
2020-06-30 07:51:15 +02:00
|
|
|
}
|
2019-07-02 19:54:42 +02:00
|
|
|
|
2020-10-15 19:56:55 +02:00
|
|
|
function handleLanguageChange(index, code) {
|
|
|
|
let langs = [...languageParam];
|
|
|
|
if (index === 0) {
|
|
|
|
if (code === LANG_NONE) {
|
|
|
|
// clear all
|
|
|
|
langs = [];
|
|
|
|
} else {
|
|
|
|
langs[0] = code;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (code === LANG_NONE || code === langs[0]) {
|
|
|
|
langs.splice(1, 1);
|
|
|
|
} else {
|
|
|
|
langs[index] = code;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setParams({ ...params, languages: langs });
|
|
|
|
}
|
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
function handleThumbnailChange(thumbnailUrl: string) {
|
2020-07-02 19:39:29 +02:00
|
|
|
setParams({ ...params, thumbnailUrl });
|
2020-06-30 07:51:15 +02:00
|
|
|
}
|
2019-07-02 19:54:42 +02:00
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
function handleCoverChange(coverUrl: string) {
|
2020-07-02 19:39:29 +02:00
|
|
|
setParams({ ...params, coverUrl });
|
2020-06-30 07:51:15 +02:00
|
|
|
}
|
2019-11-14 18:00:01 +01:00
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
function handleSubmit() {
|
2020-06-29 21:54:07 +02:00
|
|
|
if (uri) {
|
2021-02-25 02:53:56 +01:00
|
|
|
updateChannel(params).then((success) => {
|
2020-06-29 21:54:07 +02:00
|
|
|
if (success) {
|
|
|
|
onDone();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2021-02-25 02:53:56 +01:00
|
|
|
createChannel(params).then((success) => {
|
2020-06-29 21:54:07 +02:00
|
|
|
if (success) {
|
2020-07-03 00:14:40 +02:00
|
|
|
analytics.apiLogPublish(success);
|
2020-06-29 21:54:07 +02:00
|
|
|
onDone();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2020-06-30 07:51:15 +02:00
|
|
|
}
|
|
|
|
|
2021-02-25 02:53:56 +01:00
|
|
|
const LIMIT_ERR_PARTIAL_MSG = 'bad-txns-claimscriptsize-toolarge (code 16)';
|
|
|
|
let errorMsg = updateError || createError;
|
|
|
|
if (errorMsg && errorMsg.includes(LIMIT_ERR_PARTIAL_MSG)) {
|
|
|
|
errorMsg = __('Transaction limit reached. Try reducing the Description length.');
|
|
|
|
}
|
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
React.useEffect(() => {
|
|
|
|
let nameError;
|
|
|
|
if (!name && name !== undefined) {
|
|
|
|
nameError = __('A name is required for your url');
|
|
|
|
} else if (!isNameValid(name, false)) {
|
|
|
|
nameError = INVALID_NAME_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
setNameError(nameError);
|
|
|
|
}, [name]);
|
2020-03-13 23:15:37 +01:00
|
|
|
|
2020-07-03 00:14:40 +02:00
|
|
|
React.useEffect(() => {
|
|
|
|
clearChannelErrors();
|
|
|
|
}, [clearChannelErrors]);
|
|
|
|
|
2019-07-02 19:54:42 +02:00
|
|
|
// TODO clear and bail after submit
|
|
|
|
return (
|
2020-06-29 21:54:07 +02:00
|
|
|
<>
|
2020-08-25 21:54:06 +02:00
|
|
|
<div className={classnames('main--contained', { 'card--disabled': disabled })}>
|
2020-06-30 07:51:15 +02:00
|
|
|
<header className="channel-cover">
|
|
|
|
<div className="channel__quick-actions">
|
2020-06-29 21:54:07 +02:00
|
|
|
<Button
|
|
|
|
button="alt"
|
|
|
|
title={__('Cover')}
|
|
|
|
onClick={() =>
|
|
|
|
openModal(MODALS.IMAGE_UPLOAD, {
|
2021-02-25 02:53:56 +01:00
|
|
|
onUpdate: (coverUrl) => handleCoverChange(coverUrl),
|
2020-06-30 07:51:15 +02:00
|
|
|
title: __('Edit Cover Image'),
|
2020-07-02 19:39:29 +02:00
|
|
|
helpText: __('(6.25:1)'),
|
2020-06-30 07:51:15 +02:00
|
|
|
assetName: __('Cover Image'),
|
2020-07-02 19:39:29 +02:00
|
|
|
currentValue: params.coverUrl,
|
2020-06-29 21:54:07 +02:00
|
|
|
})
|
2020-06-21 18:51:06 +02:00
|
|
|
}
|
2020-06-29 21:54:07 +02:00
|
|
|
icon={ICONS.CAMERA}
|
|
|
|
iconSize={18}
|
|
|
|
/>
|
|
|
|
</div>
|
2020-11-19 18:17:47 +01:00
|
|
|
{params.coverUrl &&
|
|
|
|
(coverError ? (
|
|
|
|
<div className="channel-cover__custom--waiting">{__('This will be visible in a few minutes.')}</div>
|
|
|
|
) : (
|
|
|
|
<img className="channel-cover__custom" src={params.coverUrl} onError={() => setCoverError(true)} />
|
|
|
|
))}
|
2020-06-29 21:54:07 +02:00
|
|
|
<div className="channel__primary-info">
|
|
|
|
<div className="channel__edit-thumb">
|
|
|
|
<Button
|
|
|
|
button="alt"
|
|
|
|
title={__('Edit')}
|
|
|
|
onClick={() =>
|
|
|
|
openModal(MODALS.IMAGE_UPLOAD, {
|
2021-02-25 02:53:56 +01:00
|
|
|
onUpdate: (v) => handleThumbnailChange(v),
|
2020-06-30 07:51:15 +02:00
|
|
|
title: __('Edit Thumbnail Image'),
|
2020-07-02 19:39:29 +02:00
|
|
|
helpText: __('(1:1)'),
|
2020-06-30 07:51:15 +02:00
|
|
|
assetName: __('Thumbnail'),
|
2020-07-02 19:39:29 +02:00
|
|
|
currentValue: params.thumbnailUrl,
|
2020-06-29 21:54:07 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
icon={ICONS.CAMERA}
|
|
|
|
iconSize={18}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<ChannelThumbnail
|
|
|
|
className="channel__thumbnail--channel-page"
|
|
|
|
uri={uri}
|
2020-07-02 19:39:29 +02:00
|
|
|
thumbnailPreview={params.thumbnailUrl}
|
2020-06-29 21:54:07 +02:00
|
|
|
allowGifs
|
2020-11-19 18:17:47 +01:00
|
|
|
showDelayedMessage
|
2020-06-29 21:54:07 +02:00
|
|
|
/>
|
|
|
|
<h1 className="channel__title">
|
|
|
|
{params.title || (channelName && '@' + channelName) || (params.name && '@' + params.name)}
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
<div className="channel-cover__gradient" />
|
|
|
|
</header>
|
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
<Tabs>
|
|
|
|
<TabList className="tabs__list--channel-page">
|
|
|
|
<Tab>{__('General')}</Tab>
|
2020-09-04 19:14:48 +02:00
|
|
|
<Tab>{__('Credit Details')}</Tab>
|
2020-06-30 07:51:15 +02:00
|
|
|
<Tab>{__('Tags')}</Tab>
|
|
|
|
<Tab>{__('Other')}</Tab>
|
|
|
|
</TabList>
|
|
|
|
<TabPanels>
|
|
|
|
<TabPanel>
|
|
|
|
<Card
|
|
|
|
body={
|
|
|
|
<>
|
|
|
|
<fieldset-group class="fieldset-group--smushed fieldset-group--disabled-prefix">
|
|
|
|
<fieldset-section>
|
|
|
|
<label htmlFor="channel_name">{__('Name')}</label>
|
|
|
|
<div className="form-field__prefix">@</div>
|
|
|
|
</fieldset-section>
|
2020-06-29 21:54:07 +02:00
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
<FormField
|
|
|
|
autoFocus={isNewChannel}
|
|
|
|
type="text"
|
|
|
|
name="channel_name"
|
|
|
|
placeholder={__('MyAwesomeChannel')}
|
|
|
|
value={params.name || channelName}
|
|
|
|
error={nameError}
|
|
|
|
disabled={!isNewChannel}
|
2021-02-25 02:53:56 +01:00
|
|
|
onChange={(e) => setParams({ ...params, name: e.target.value })}
|
2020-06-30 07:51:15 +02:00
|
|
|
/>
|
|
|
|
</fieldset-group>
|
|
|
|
{!isNewChannel && <span className="form-field__help">{__('This field cannot be changed.')}</span>}
|
2020-06-29 21:54:07 +02:00
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
<FormField
|
|
|
|
type="text"
|
|
|
|
name="channel_title2"
|
|
|
|
label={__('Title')}
|
|
|
|
placeholder={__('My Awesome Channel')}
|
|
|
|
value={params.title}
|
2021-02-25 02:53:56 +01:00
|
|
|
onChange={(e) => setParams({ ...params, title: e.target.value })}
|
2020-06-30 07:51:15 +02:00
|
|
|
/>
|
|
|
|
<FormField
|
|
|
|
type="markdown"
|
|
|
|
name="content_description2"
|
|
|
|
label={__('Description')}
|
|
|
|
placeholder={__('Description of your content')}
|
|
|
|
value={params.description}
|
2021-02-25 02:53:56 +01:00
|
|
|
onChange={(text) => setParams({ ...params, description: text })}
|
|
|
|
textAreaMaxLength={FF_MAX_CHARS_IN_DESCRIPTION}
|
2020-06-30 07:51:15 +02:00
|
|
|
/>
|
|
|
|
</>
|
|
|
|
}
|
2020-06-29 21:54:07 +02:00
|
|
|
/>
|
2020-06-30 07:51:15 +02:00
|
|
|
</TabPanel>
|
|
|
|
<TabPanel>
|
|
|
|
<Card
|
|
|
|
body={
|
|
|
|
<FormField
|
|
|
|
className="form-field--price-amount"
|
|
|
|
type="number"
|
|
|
|
name="content_bid2"
|
|
|
|
step="any"
|
2020-09-10 17:54:41 +02:00
|
|
|
label={<LbcSymbol postfix={__('Deposit')} size={14} />}
|
2020-06-30 07:51:15 +02:00
|
|
|
value={params.amount}
|
|
|
|
error={bidError}
|
|
|
|
min="0.0"
|
|
|
|
disabled={false}
|
2021-02-25 02:53:56 +01:00
|
|
|
onChange={(event) => handleBidChange(parseFloat(event.target.value))}
|
2020-06-30 07:51:15 +02:00
|
|
|
placeholder={0.1}
|
2021-02-02 21:00:24 +01:00
|
|
|
helper={
|
|
|
|
<>
|
|
|
|
{__('Increasing your deposit can help your channel be discovered more easily.')}
|
|
|
|
<WalletSpendableBalanceHelp inline />
|
|
|
|
</>
|
|
|
|
}
|
2020-06-30 07:51:15 +02:00
|
|
|
/>
|
|
|
|
}
|
2020-06-29 21:54:07 +02:00
|
|
|
/>
|
2020-06-30 07:51:15 +02:00
|
|
|
</TabPanel>
|
|
|
|
<TabPanel>
|
|
|
|
<Card
|
|
|
|
body={
|
|
|
|
<TagsSearch
|
2021-03-30 01:05:18 +02:00
|
|
|
suggestMature={!SIMPLE_SITE}
|
2020-06-30 07:51:15 +02:00
|
|
|
disableAutoFocus
|
2021-05-10 08:31:16 +02:00
|
|
|
disableControlTags
|
2020-07-02 18:18:59 +02:00
|
|
|
limitSelect={MAX_TAG_SELECT}
|
2020-06-30 07:51:15 +02:00
|
|
|
tagsPassedIn={params.tags || []}
|
|
|
|
label={__('Selected Tags')}
|
2021-02-25 02:53:56 +01:00
|
|
|
onRemove={(clickedTag) => {
|
|
|
|
const newTags = params.tags.slice().filter((tag) => tag.name !== clickedTag.name);
|
2020-06-30 07:51:15 +02:00
|
|
|
setParams({ ...params, tags: newTags });
|
|
|
|
}}
|
2021-02-25 02:53:56 +01:00
|
|
|
onSelect={(newTags) => {
|
|
|
|
newTags.forEach((newTag) => {
|
|
|
|
if (!params.tags.map((savedTag) => savedTag.name).includes(newTag.name)) {
|
2020-06-30 07:51:15 +02:00
|
|
|
setParams({ ...params, tags: [...params.tags, newTag] });
|
|
|
|
} else {
|
|
|
|
// If it already exists and the user types it in, remove it
|
2021-02-25 02:53:56 +01:00
|
|
|
setParams({ ...params, tags: params.tags.filter((tag) => tag.name !== newTag.name) });
|
2020-06-30 07:51:15 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</TabPanel>
|
|
|
|
<TabPanel>
|
|
|
|
<Card
|
|
|
|
body={
|
|
|
|
<>
|
|
|
|
<FormField
|
|
|
|
type="text"
|
|
|
|
name="channel_website2"
|
|
|
|
label={__('Website')}
|
|
|
|
placeholder={__('aprettygoodsite.com')}
|
|
|
|
disabled={false}
|
|
|
|
value={params.website}
|
2021-02-25 02:53:56 +01:00
|
|
|
onChange={(e) => setParams({ ...params, website: e.target.value })}
|
2020-06-30 07:51:15 +02:00
|
|
|
/>
|
|
|
|
<FormField
|
|
|
|
type="text"
|
|
|
|
name="content_email2"
|
|
|
|
label={__('Email')}
|
|
|
|
placeholder={__('yourstruly@example.com')}
|
|
|
|
disabled={false}
|
|
|
|
value={params.email}
|
2021-02-25 02:53:56 +01:00
|
|
|
onChange={(e) => setParams({ ...params, email: e.target.value })}
|
2020-06-30 07:51:15 +02:00
|
|
|
/>
|
2020-10-15 19:56:55 +02:00
|
|
|
<FormField
|
|
|
|
name="language_select"
|
|
|
|
type="select"
|
|
|
|
label={__('Primary Language')}
|
2021-02-25 02:53:56 +01:00
|
|
|
onChange={(event) => handleLanguageChange(0, event.target.value)}
|
2020-10-15 19:56:55 +02:00
|
|
|
value={primaryLanguage}
|
|
|
|
helper={__('Your main content language')}
|
|
|
|
>
|
|
|
|
<option key={'pri-langNone'} value={LANG_NONE}>
|
|
|
|
{__('None selected')}
|
|
|
|
</option>
|
2021-06-07 03:54:39 +02:00
|
|
|
{sortLanguageMap(SUPPORTED_LANGUAGES).map(([langKey, langName]) => (
|
|
|
|
<option key={langKey} value={langKey}>
|
|
|
|
{langName}
|
2020-10-15 19:56:55 +02:00
|
|
|
</option>
|
|
|
|
))}
|
|
|
|
</FormField>
|
|
|
|
<FormField
|
|
|
|
name="language_select2"
|
|
|
|
type="select"
|
|
|
|
label={__('Secondary Language')}
|
2021-02-25 02:53:56 +01:00
|
|
|
onChange={(event) => handleLanguageChange(1, event.target.value)}
|
2020-10-15 19:56:55 +02:00
|
|
|
value={secondaryLanguage}
|
|
|
|
disabled={!languageParam[0]}
|
|
|
|
helper={__('Your other content language')}
|
|
|
|
>
|
|
|
|
<option key={'sec-langNone'} value={LANG_NONE}>
|
|
|
|
{__('None selected')}
|
|
|
|
</option>
|
2021-06-07 03:54:39 +02:00
|
|
|
{sortLanguageMap(SUPPORTED_LANGUAGES).map(([langKey, langName]) => (
|
|
|
|
<option key={langKey} value={langKey} disabled={langKey === languageParam[0]}>
|
|
|
|
{langName}
|
|
|
|
</option>
|
|
|
|
))}
|
2020-10-15 19:56:55 +02:00
|
|
|
</FormField>
|
2020-06-30 07:51:15 +02:00
|
|
|
</>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</TabPanel>
|
|
|
|
</TabPanels>
|
|
|
|
</Tabs>
|
|
|
|
|
|
|
|
<Card
|
|
|
|
className="card--after-tabs"
|
|
|
|
actions={
|
|
|
|
<>
|
|
|
|
<div className="section__actions">
|
|
|
|
<Button
|
|
|
|
button="primary"
|
2020-07-03 00:14:40 +02:00
|
|
|
disabled={
|
|
|
|
creatingChannel || updatingChannel || nameError || bidError || (isNewChannel && !params.name)
|
|
|
|
}
|
2020-06-30 07:51:15 +02:00
|
|
|
label={creatingChannel || updatingChannel ? __('Submitting') : __('Submit')}
|
|
|
|
onClick={handleSubmit}
|
|
|
|
/>
|
|
|
|
<Button button="link" label={__('Cancel')} onClick={onDone} />
|
|
|
|
</div>
|
2021-02-25 02:53:56 +01:00
|
|
|
{errorMsg ? (
|
|
|
|
<ErrorText>{errorMsg}</ErrorText>
|
2020-06-30 07:51:15 +02:00
|
|
|
) : (
|
|
|
|
<p className="help">
|
2020-07-03 16:32:48 +02:00
|
|
|
{__('After submitting, it will take a few minutes for your changes to be live for everyone.')}
|
2020-06-30 07:51:15 +02:00
|
|
|
</p>
|
|
|
|
)}
|
|
|
|
{!isNewChannel && (
|
|
|
|
<div className="section__actions">
|
2020-07-02 19:18:06 +02:00
|
|
|
<ClaimAbandonButton uri={uri} abandonActionCallback={() => replace(`/$/${PAGES.CHANNELS}`)} />
|
2020-06-30 07:51:15 +02:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
/>
|
2020-06-29 21:54:07 +02:00
|
|
|
</div>
|
|
|
|
</>
|
2019-07-02 19:54:42 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ChannelForm;
|