var settingsRadioOptionStyles = { display: 'block', marginLeft: '13px' }, settingsCheckBoxOptionStyles = { display: 'block', marginLeft: '13px' }, settingsNumberFieldStyles = { width: '40px' }, downloadDirectoryLabelStyles = { fontSize: '.9em', marginLeft: '13px' }, downloadDirectoryFieldStyles= { width: '300px' }; var SettingsPage = React.createClass({ _initClientSettings: null, onRunOnStartChange: function (event) { lbry.setDaemonSetting('run_on_startup', event.target.checked); }, onShareDataChange: function (event) { lbry.setDaemonSetting('upload_log', event.target.checked); }, onDownloadDirChange: function(event) { lbry.setDaemonSetting('download_directory', event.target.value); }, onMaxUploadPrefChange: function(isLimited) { if (!isLimited) { lbry.setDaemonSetting('max_upload', 0.0); } this.setState({ isMaxUpload: isLimited }); }, onMaxUploadFieldChange: function(event) { lbry.setDaemonSetting('max_upload', Number(event.target.value)); }, onMaxDownloadPrefChange: function(isLimited) { if (!isLimited) { lbry.setDaemonSetting('max_download', 0.0); } this.setState({ isMaxDownload: isLimited }); }, onMaxDownloadFieldChange: function(event) { lbry.setDaemonSetting('max_download', Number(event.target.value)); }, getInitialState: function() { return { settings: null } }, componentDidMount: function() { document.title = "Settings"; this._initClientSettings = lbry.getClientSettings(); }, componentWillMount: function() { lbry.getDaemonSettings(function(settings) { this.setState({ initDaemonSettings: settings, isMaxUpload: settings.max_upload != 0, isMaxDownload: settings.max_download != 0 }); }.bind(this)); }, onShowNsfwChange: function(event) { lbry.setClientSetting('showNsfw', event.target.checked); }, render: function() { if (!this.state.initDaemonSettings) { return null; } return (

Run on Startup

Download Directory

Where would you like the files you download from LBRY to be saved?

Bandwidth Limits

Max Upload

Max Download

Content

Share Diagnostic Data

); } });