1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
// @flow
import moment from 'moment';
import * as React from 'react';
import { Component, Text, View, App, Types } from 'reactxp';
import * as AppButton from './AppButton';
import { Layout, Container } from './Layout';
import NavigationBar, { BackBarItem } from './NavigationBar';
import styles from './AccountStyles';
import Img from './Img';
import { formatAccount } from '../lib/formatters';
import type { AccountToken } from '../lib/daemon-rpc';
export type AccountProps = {
accountToken: AccountToken,
accountExpiry: string,
updateAccountExpiry: () => Promise<void>,
onLogout: () => void,
onClose: () => void,
onBuyMore: () => void,
};
export type AccountState = {
isRefreshingExpiry: boolean,
};
export default class Account extends Component<AccountProps, AccountState> {
state = {
isRefreshingExpiry: false,
};
_activationStateToken: ?Types.SubscriptionToken;
_isMounted = false;
componentDidMount() {
this._isMounted = true;
this._refreshAccountExpiry();
this._activationStateToken = App.activationStateChangedEvent.subscribe((activationState) => {
if (activationState === Types.AppActivationState.Active) {
this._refreshAccountExpiry();
}
});
}
componentWillUnmount() {
this._isMounted = false;
const activationStateToken = this._activationStateToken;
if (activationStateToken) {
activationStateToken.unsubscribe();
this._activationStateToken = null;
}
}
render() {
const expiry = moment(this.props.accountExpiry);
const formattedAccountToken = formatAccount(this.props.accountToken || '');
const formattedExpiry = expiry.format('hA, D MMMM YYYY').toUpperCase();
const isOutOfTime = expiry.isSameOrBefore(moment());
return (
<Layout>
<Container>
<View style={styles.account}>
<NavigationBar>
<BackBarItem action={this.props.onClose} title={'Settings'} />
</NavigationBar>
<View style={styles.account__container}>
<View style={styles.account__header}>
<Text style={styles.account__title}>Account</Text>
</View>
<View style={styles.account__content}>
<View style={styles.account__main}>
<View style={styles.account__row}>
<Text style={styles.account__row_label}>Account ID</Text>
<Text style={styles.account__row_value}>{formattedAccountToken}</Text>
</View>
<View style={styles.account__row}>
<Text style={styles.account__row_label}>Paid until</Text>
{isOutOfTime ? (
<Text style={styles.account__out_of_time} testName="account__out_of_time">
OUT OF TIME
</Text>
) : (
<Text style={styles.account__row_value}>{formattedExpiry}</Text>
)}
</View>
<View style={styles.account__footer}>
<AppButton.GreenButton
onPress={this.props.onBuyMore}
text="Buy more credit"
icon="icon-extLink"
testName="account__buymore">
<AppButton.Label>Buy more credit</AppButton.Label>
<Img source="icon-extLink" height={16} width={16} />
</AppButton.GreenButton>
<AppButton.RedButton onPress={this.props.onLogout} testName="account__logout">
Log out
</AppButton.RedButton>
</View>
</View>
</View>
</View>
</View>
</Container>
</Layout>
);
}
async _refreshAccountExpiry() {
this.setState({ isRefreshingExpiry: true });
try {
await this.props.updateAccountExpiry();
} catch (e) {
// TODO: Report the error to user
}
if (this._isMounted) {
this.setState({ isRefreshingExpiry: false });
}
}
}
|