-
Notifications
You must be signed in to change notification settings - Fork 427
/
Copy pathAboutPage.js
196 lines (182 loc) · 7.47 KB
/
AboutPage.js
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/**
* Created by guoshuyu on 2017/11/10.
*/
import React, {Component} from 'react';
import {
View, Platform, StatusBar, ScrollView, Linking
} from 'react-native';
import {Actions} from 'react-native-router-flux';
import styles from "../style"
import I18n from '../style/i18n'
import CommonRowItem from "./common/CommonRowItem";
import * as Constant from "../style/constant";
import VersionNumber from 'react-native-version-number-fix-new';
import issueActions from "../store/actions/issue";
import repositoryActions from "../store/actions/repository";
import Toast from './common/ToastProxy'
import {downloadUrl, hostWeb} from '../net/address'
/**
* 关于
*/
class AboutPage extends Component {
constructor(props) {
super(props);
this._createIssue = this._createIssue.bind(this);
this.showFeedback = this.showFeedback.bind(this);
}
componentDidMount() {
}
componentWillUnmount() {
}
_createIssue(text) {
let {repositoryName, userName} = this.props;
Actions.LoadingModal({backExit: false});
issueActions.createIssue("CarGuo", "GSYGithubApp",
{title: "APP " + I18n("feedback"), body: text}).then((res) => {
setTimeout(() => {
if (res && res.result) {
Actions.pop();
Toast("Thanks For Feedback");
} else {
this.showFeedback(text);
}
}, 500);
})
}
showFeedback(text) {
Actions.TextInputModal({
textConfirm: this._createIssue,
titleText: I18n('feedback'),
needEditTitle: false,
text: text,
titleValue: "",
bottomBar: true
})
}
render() {
return (
<View style={styles.mainBox}>
<StatusBar hidden={false} backgroundColor={'transparent'} translucent barStyle={'light-content'}/>
<ScrollView style={styles.flex}>
<CommonRowItem
showIconNext={true}
topLine={false}
bottomLine={false}
itemIcon={"git-commit"}
textStyle={[styles.centered, styles.normalText, {
textAlignVertical: 'center',
marginHorizontal: Constant.normalMarginEdge
}]}
iconSize={20}
viewStyle={[{
borderRadius: 4, marginTop: Constant.normalMarginEdge,
paddingLeft: Constant.normalMarginEdge
}, styles.shadowCard]}
itemText={I18n('version') + ": " + VersionNumber.appVersion}
onClickFun={() => {
getNewsVersion(true, false)
}}/>
<CommonRowItem
showIconNext={true}
topLine={false}
bottomLine={false}
itemIcon={"organization"}
textStyle={[styles.centered, styles.normalText, {
textAlignVertical: 'center',
marginHorizontal: Constant.normalMarginEdge
}]}
iconSize={20}
viewStyle={[{
borderRadius: 4, marginTop: Constant.normalMarginEdge,
paddingLeft: Constant.normalMarginEdge
}, styles.shadowCard]}
itemText={I18n('author')}
onClickFun={() => {
Actions.PersonPage({currentUser: "CarGuo"})
}}/>
<CommonRowItem
showIconNext={true}
topLine={false}
bottomLine={false}
itemIcon={"link"}
textStyle={[styles.centered, styles.normalText, {
textAlignVertical: 'center',
marginHorizontal: Constant.normalMarginEdge
}]}
iconSize={20}
viewStyle={[{
borderRadius: 4, marginTop: Constant.normalMarginEdge,
paddingLeft: Constant.normalMarginEdge
}, styles.shadowCard]}
itemText={I18n('projectUrl')}
onClickFun={() => {
Actions.RepositoryDetail({
repositoryName: "GSYGithubApp", ownerName: "CarGuo"
, title: "CarGuo/GSYGithubApp"
});
}}/>
<CommonRowItem
showIconNext={true}
topLine={false}
bottomLine={false}
itemIcon={"question"}
textStyle={[styles.centered, styles.normalText, {
textAlignVertical: 'center',
marginHorizontal: Constant.normalMarginEdge
}]}
iconSize={20}
viewStyle={[{
borderRadius: 4, marginTop: Constant.normalMarginEdge,
paddingLeft: Constant.normalMarginEdge
}, styles.shadowCard]}
itemText={I18n('feedback')}
onClickFun={() => {
this.showFeedback("")
}}/>
</ScrollView>
</View>
)
}
}
export const getNewsVersion = (showTip, onlyCheck = true) => {
//ios不检查更新
if (Platform.OS === "ios" && onlyCheck) {
return
}
repositoryActions.getRepositoryRelease("CarGuo", 'GSYGithubApp', 1, false).then((res) => {
if (res && res.result) {
//github只能有release的versionName,没有code,囧
let versionName = res.data[0].name;
if (__DEV__) {
console.log("service versionName ", versionName)
}
if (versionName) {
let versionNameNum = parseFloat(versionName);
let currentNum = parseFloat(VersionNumber.appVersion);
let newsHad = versionNameNum > currentNum;
if (__DEV__) {
console.log("service versionNameNum ", versionNameNum);
console.log("local currentNum ", currentNum);
console.log("version update newsHad ", newsHad);
}
if (newsHad) {
Actions.ConfirmModal({
titleText: I18n('update'),
text: I18n('update') + ": " + res.data[0].name + "\n" + res.data[0].body,
textConfirm: () => {
if (Platform.OS === "ios") {
Linking.openURL(hostWeb + "CarGuo/GSYGithubApp/releases")
} else {
Linking.openURL(downloadUrl)
}
}
});
} else {
if (showTip)
Toast(I18n("newestVersion"));
}
}
}
})
}
export default AboutPage