added config value to disable publishing

This commit is contained in:
bill bittner 2018-03-12 13:48:12 -07:00
parent afcd793692
commit ef8e87c48c
4 changed files with 18 additions and 7 deletions

View file

@ -3,12 +3,12 @@ module.exports = {
googleId: null, // google id for analytics tracking; leave `null` if not applicable
},
sql: {
database: null, // name of mysql database
database: 'lbry',
username: null, // username for mysql
password: null, // password for mysql
},
logging: {
logLevel : null, // options: silly, debug, verbose, info
logLevel : 'debug', // options: silly, debug, verbose, info
slackWebHook : null, // enter a webhook if you wish to push logs to slack; otherwise leave as `null`
slackErrorChannel: null, // enter a slack channel (#example) for errors to be sent to; otherwise leave null
slackInfoChannel : null, // enter a slack channel (#info) for info level logs to be sent to otherwise leave null
@ -26,8 +26,9 @@ module.exports = {
description: 'Open-source, decentralized image and video sharing.',
},
publish: {
primaryClaimAddress : null, // choose any address from your lbry wallet
additionalClaimAddresses: [], // // optional: add previously used claim addresses
disabled : false,
primaryClaimAddress : null, // choose any address from your lbry wallet
thumbnailChannel : '@channelName', // create a channel to use for thumbnail images
thumbnailChannelId : 'xyz123...', // the channel_id (claim id) for the channel above
},

View file

@ -3,8 +3,10 @@ import View from './view';
const mapStateToProps = ({ publish }) => {
return {
file : publish.file,
status: publish.status.status,
disabled : publish.disabled,
disabledMessage: publish.disabledMessage,
file : publish.file,
status : publish.status.status,
};
};

View file

@ -5,6 +5,14 @@ import PublishStatus from 'containers/PublishStatus';
class PublishTool extends React.Component {
render () {
if (this.props.disabled) {
return (
<div className='row row--tall flex-container--column flex-container--center-center'>
<p>Publishing is temporarily disabled.</p>
<p>Please check back soon or join our <a className='link--primary' href='https://discord.gg/YjYbwhS'>discord channel</a> for updates.</p>
</div>
);
}
if (this.props.file) {
if (this.props.status) {
return (
@ -13,9 +21,8 @@ class PublishTool extends React.Component {
} else {
return <PublishDetails />;
}
} else {
return <Dropzone />;
}
return <Dropzone />;
}
};

View file

@ -3,6 +3,7 @@ import { LOGIN } from 'constants/publish_channel_select_states';
const { publish } = require('../../config/speechConfig.js');
const initialState = {
disabled : publish.disabled,
publishInChannel : false,
selectedChannel : LOGIN,
showMetadataInputs: false,