aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-10-20 20:08:57 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2019-10-20 20:08:57 +0200
commit7e332dc4b7a5fe0c275a8d802752d7ba5dc3d4ec (patch)
tree7066e41d4163102292785aec4029ed4c2f98b596 /src/components/ui
parentFix #139 (diff)
downloadferdium-app-7e332dc4b7a5fe0c275a8d802752d7ba5dc3d4ec.tar.gz
ferdium-app-7e332dc4b7a5fe0c275a8d802752d7ba5dc3d4ec.tar.zst
ferdium-app-7e332dc4b7a5fe0c275a8d802752d7ba5dc3d4ec.zip
Improve switch between accounts and servers
Diffstat (limited to 'src/components/ui')
-rw-r--r--src/components/ui/AppLoader/index.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/components/ui/AppLoader/index.js b/src/components/ui/AppLoader/index.js
index 1fd247d17..a7f6f4545 100644
--- a/src/components/ui/AppLoader/index.js
+++ b/src/components/ui/AppLoader/index.js
@@ -22,8 +22,13 @@ export default @injectSheet(styles) @withTheme class AppLoader extends Component
22 static propTypes = { 22 static propTypes = {
23 classes: PropTypes.object.isRequired, 23 classes: PropTypes.object.isRequired,
24 theme: PropTypes.object.isRequired, 24 theme: PropTypes.object.isRequired,
25 texts: PropTypes.array,
25 }; 26 };
26 27
28 static defaultProps = {
29 texts: textList,
30 }
31
27 state = { 32 state = {
28 step: 0, 33 step: 0,
29 }; 34 };
@@ -43,7 +48,7 @@ export default @injectSheet(styles) @withTheme class AppLoader extends Component
43 } 48 }
44 49
45 render() { 50 render() {
46 const { classes, theme } = this.props; 51 const { classes, theme, texts } = this.props;
47 const { step } = this.state; 52 const { step } = this.state;
48 53
49 return ( 54 return (
@@ -52,7 +57,7 @@ export default @injectSheet(styles) @withTheme class AppLoader extends Component
52 className={classes.component} 57 className={classes.component}
53 spinnerColor={theme.colorAppLoaderSpinner} 58 spinnerColor={theme.colorAppLoaderSpinner}
54 > 59 >
55 {textList.map((text, i) => ( 60 {texts.map((text, i) => (
56 <span 61 <span
57 key={text} 62 key={text}
58 className={classnames({ 63 className={classnames({