hide livestream on upload form if not experimental UI (#5735)
This commit is contained in:
parent
f2e17f8566
commit
d362fe0d75
2 changed files with 5 additions and 1 deletions
|
@ -18,9 +18,11 @@ import { selectUnclaimedRewardValue } from 'redux/selectors/rewards';
|
||||||
import { selectModal, selectActiveChannelClaim, selectIncognito } from 'redux/selectors/app';
|
import { selectModal, selectActiveChannelClaim, selectIncognito } from 'redux/selectors/app';
|
||||||
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
||||||
import PublishPage from './view';
|
import PublishPage from './view';
|
||||||
|
import { selectUser } from '../../redux/selectors/user';
|
||||||
|
|
||||||
const select = state => ({
|
const select = state => ({
|
||||||
...selectPublishFormValues(state),
|
...selectPublishFormValues(state),
|
||||||
|
user: selectUser(state),
|
||||||
// The winning claim for a short lbry uri
|
// The winning claim for a short lbry uri
|
||||||
amountNeededForTakeover: selectTakeOverAmount(state),
|
amountNeededForTakeover: selectTakeOverAmount(state),
|
||||||
// My previously published claims under this short lbry uri
|
// My previously published claims under this short lbry uri
|
||||||
|
|
|
@ -87,6 +87,7 @@ type Props = {
|
||||||
enablePublishPreview: boolean,
|
enablePublishPreview: boolean,
|
||||||
activeChannelClaim: ?ChannelClaim,
|
activeChannelClaim: ?ChannelClaim,
|
||||||
incognito: boolean,
|
incognito: boolean,
|
||||||
|
user: ?{ experimental_ui: boolean },
|
||||||
};
|
};
|
||||||
|
|
||||||
function PublishForm(props: Props) {
|
function PublishForm(props: Props) {
|
||||||
|
@ -132,6 +133,7 @@ function PublishForm(props: Props) {
|
||||||
enablePublishPreview,
|
enablePublishPreview,
|
||||||
activeChannelClaim,
|
activeChannelClaim,
|
||||||
incognito,
|
incognito,
|
||||||
|
user,
|
||||||
} = props;
|
} = props;
|
||||||
|
|
||||||
const TAGS_LIMIT = 5;
|
const TAGS_LIMIT = 5;
|
||||||
|
@ -394,7 +396,7 @@ function PublishForm(props: Props) {
|
||||||
setPrevFileText={setPrevFileText}
|
setPrevFileText={setPrevFileText}
|
||||||
header={
|
header={
|
||||||
<>
|
<>
|
||||||
{MODES.map((modeName, index) => (
|
{MODES.map((modeName, index) => !((index === 2) && user && user.experimental_ui) && (
|
||||||
<Button
|
<Button
|
||||||
key={index}
|
key={index}
|
||||||
icon={modeName}
|
icon={modeName}
|
||||||
|
|
Loading…
Reference in a new issue