2018-03-26 23:32:43 +02:00
// @flow
2019-07-08 22:54:58 +02:00
import * as PAGES from 'constants/pages' ;
2020-06-19 22:18:12 +02:00
import * as ICONS from 'constants/icons' ;
2018-03-26 23:32:43 +02:00
import * as React from 'react' ;
2020-07-27 19:43:30 +02:00
import { FormField } from 'component/common/form' ;
2018-03-26 23:32:43 +02:00
import Button from 'component/button' ;
import Page from 'component/page' ;
2021-08-05 09:00:21 +02:00
import SettingAccount from 'component/settingAccount' ;
2021-08-05 11:18:16 +02:00
import SettingAppearance from 'component/settingAppearance' ;
2021-08-06 04:41:37 +02:00
import SettingContent from 'component/settingContent' ;
2021-08-05 10:41:45 +02:00
import SettingSystem from 'component/settingSystem' ;
2018-03-26 23:32:43 +02:00
import FileSelector from 'component/common/file-selector' ;
2019-09-27 22:03:05 +02:00
import Card from 'component/common/card' ;
2020-11-10 06:21:04 +01:00
import classnames from 'classnames' ;
import Yrbl from 'component/yrbl' ;
2019-11-18 19:30:15 +01:00
2019-04-24 16:02:08 +02:00
type Price = {
2018-03-26 23:32:43 +02:00
currency : string ,
amount : number ,
} ;
2020-07-27 19:43:30 +02:00
type SetDaemonSettingArg = boolean | string | number ;
2019-02-12 18:26:50 +01:00
2018-03-26 23:32:43 +02:00
type DaemonSettings = {
2019-02-12 18:26:50 +01:00
download _dir : string ,
2018-03-26 23:32:43 +02:00
share _usage _data : boolean ,
} ;
type Props = {
2019-02-12 18:26:50 +01:00
setDaemonSetting : ( string , ? SetDaemonSettingArg ) => void ,
2021-03-03 19:50:16 +01:00
clearDaemonSetting : ( string ) => void ,
toggle3PAnalytics : ( boolean ) => void ,
2018-03-26 23:32:43 +02:00
daemonSettings : DaemonSettings ,
2020-02-19 07:31:40 +01:00
allowAnalytics : boolean ,
2019-11-22 22:13:00 +01:00
isAuthenticated : boolean ,
2018-03-26 23:32:43 +02:00
instantPurchaseEnabled : boolean ,
instantPurchaseMax : Price ,
2021-03-03 19:50:16 +01:00
openModal : ( string ) => void ,
2020-09-04 17:02:30 +02:00
enterSettings : ( ) => void ,
exitSettings : ( ) => void ,
2018-03-26 23:32:43 +02:00
} ;
2021-08-05 10:41:45 +02:00
class SettingsPage extends React . PureComponent < Props > {
2018-03-26 23:32:43 +02:00
componentDidMount ( ) {
2021-08-05 09:00:21 +02:00
const { enterSettings } = this . props ;
2020-09-04 17:02:30 +02:00
enterSettings ( ) ;
}
componentWillUnmount ( ) {
const { exitSettings } = this . props ;
exitSettings ( ) ;
2017-05-17 10:10:25 +02:00
}
2019-02-12 18:26:50 +01:00
setDaemonSetting ( name : string , value : ? SetDaemonSettingArg ) : void {
2018-10-13 17:49:47 +02:00
this . props . setDaemonSetting ( name , value ) ;
}
2020-03-24 18:57:17 +01:00
clearDaemonSetting ( name : string ) : void {
this . props . clearDaemonSetting ( name ) ;
}
2017-05-17 10:10:25 +02:00
render ( ) {
2017-09-07 03:53:42 +02:00
const {
daemonSettings ,
2020-02-19 07:31:40 +01:00
allowAnalytics ,
2019-11-22 22:13:00 +01:00
isAuthenticated ,
2019-10-15 06:20:12 +02:00
// autoDownload,
2019-02-13 17:27:20 +01:00
setDaemonSetting ,
2020-02-19 07:31:40 +01:00
toggle3PAnalytics ,
2017-09-07 03:53:42 +02:00
} = this . props ;
2018-03-26 23:32:43 +02:00
const noDaemonSettings = ! daemonSettings || Object . keys ( daemonSettings ) . length === 0 ;
2019-02-12 18:26:50 +01:00
2021-08-05 09:00:21 +02:00
const newStyle = true ;
return newStyle ? (
< Page noFooter noSideNavigation backout = { { title : _ _ ( 'Settings' ) , backLabel : _ _ ( 'Done' ) } } className = "card-stack" >
2021-08-05 11:18:16 +02:00
< SettingAppearance / >
2021-08-05 09:00:21 +02:00
< SettingAccount / >
2021-08-06 04:41:37 +02:00
< SettingContent / >
2021-08-05 10:41:45 +02:00
< SettingSystem / >
2021-08-05 09:00:21 +02:00
< / Page >
) : (
2020-07-10 23:04:36 +02:00
< Page
noFooter
noSideNavigation
backout = { {
title : _ _ ( 'Settings' ) ,
backLabel : _ _ ( 'Done' ) ,
} }
className = "card-stack"
>
2020-11-10 06:21:04 +01:00
{ ! isAuthenticated && IS _WEB && (
< div className = "main--empty" >
< Yrbl
type = "happy"
title = { _ _ ( 'Sign up for full control' ) }
subtitle = { _ _ ( 'Unlock new buttons that change things.' ) }
actions = {
< div className = "section__actions" >
< Button button = "primary" icon = { ICONS . SIGN _UP } label = { _ _ ( 'Sign Up' ) } navigate = { ` / $ / ${ PAGES . AUTH } ` } / >
< / div >
}
/ >
< / div >
) }
2019-08-26 20:32:45 +02:00
{ ! IS _WEB && noDaemonSettings ? (
2018-03-26 23:32:43 +02:00
< section className = "card card--section" >
2020-05-18 23:17:26 +02:00
< div className = "card__title card__title--deprecated" > { _ _ ( 'Failed to load settings.' ) } < / div >
2018-03-26 23:32:43 +02:00
< / section >
) : (
2020-11-13 19:10:47 +01:00
< div className = { classnames ( 'card-stack' , { 'card--disabled' : IS _WEB && ! isAuthenticated } ) } >
2019-10-23 20:59:33 +02:00
{ /* @if TARGET='app' */ }
2019-09-27 22:03:05 +02:00
< Card
2020-08-26 22:28:33 +02:00
title = { _ _ ( 'Download directory' ) }
2019-09-27 22:03:05 +02:00
actions = {
< React.Fragment >
< FileSelector
type = "openDirectory"
currentPath = { daemonSettings . download _dir }
2019-10-07 22:02:32 +02:00
onFileChosen = { ( newDirectory : WebFile ) => {
setDaemonSetting ( 'download_dir' , newDirectory . path ) ;
2019-09-27 22:03:05 +02:00
} }
/ >
< p className = "help" > { _ _ ( 'LBRY downloads will be saved here.' ) } < / p >
< / React.Fragment >
}
/ >
2020-04-25 01:53:57 +02:00
{ /* @endif */ }
2019-09-27 22:03:05 +02:00
2020-03-24 18:57:17 +01:00
{ /* @if TARGET='app' */ }
< Card
2020-08-26 22:28:33 +02:00
title = { _ _ ( 'Share usage and diagnostic data' ) }
2020-07-27 19:43:30 +02:00
subtitle = {
< React.Fragment >
{ _ _ (
` This is information like error logging, performance tracking, and usage statistics. It includes your IP address and basic system details, but no other identifying information (unless you sign in to lbry.tv) `
) } { ' ' }
< Button button = "link" label = { _ _ ( 'Learn more' ) } href = "https://lbry.com/privacypolicy" / >
< / React.Fragment >
2020-03-24 18:57:17 +01:00
}
actions = {
2020-07-27 19:43:30 +02:00
< >
< FormField
type = "checkbox"
name = "share_internal"
onChange = { ( ) => setDaemonSetting ( 'share_usage_data' , ! daemonSettings . share _usage _data ) }
checked = { daemonSettings . share _usage _data }
label = { < React.Fragment > { _ _ ( 'Allow the app to share data to LBRY.inc' ) } < / React.Fragment > }
helper = {
isAuthenticated
? _ _ ( 'Internal sharing is required while signed in.' )
: _ _ ( 'Internal sharing is required to participate in rewards programs.' )
}
disabled = { isAuthenticated && daemonSettings . share _usage _data }
2020-03-24 18:57:17 +01:00
/ >
2020-07-27 19:43:30 +02:00
< FormField
type = "checkbox"
name = "share_third_party"
2021-03-03 19:50:16 +01:00
onChange = { ( e ) => toggle3PAnalytics ( e . target . checked ) }
2020-07-27 19:43:30 +02:00
checked = { allowAnalytics }
label = { _ _ ( 'Allow the app to access third party analytics platforms' ) }
helper = { _ _ ( 'We use detailed analytics to improve all aspects of the LBRY experience.' ) }
/ >
< / >
2020-03-24 18:57:17 +01:00
}
/ >
{ /* @endif */ }
2019-09-27 22:03:05 +02:00
2020-07-27 19:43:30 +02:00
{ ( isAuthenticated || ! IS _WEB ) && (
< >
< Card
2020-08-26 22:28:33 +02:00
title = { _ _ ( 'Advanced settings' ) }
2020-07-27 19:43:30 +02:00
actions = {
< div className = "section__actions" >
< Button
button = "secondary"
label = { _ _ ( 'Manage' ) }
icon = { ICONS . SETTINGS }
navigate = { ` / $ / ${ PAGES . SETTINGS _ADVANCED } ` }
/ >
< / div >
}
/ >
< / >
) }
2019-03-18 06:06:41 +01:00
< / div >
2018-03-26 23:32:43 +02:00
) }
< / Page >
2016-04-10 02:00:56 +02:00
) ;
}
2017-05-17 10:10:25 +02:00
}
2016-11-22 21:19:08 +01:00
2020-07-27 19:43:30 +02:00
export default SettingsPage ;