userInitialState.js
657 Bytes
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
/**
* # guideInitialState.js
*
*
*/
'use strict';
/**
* ## Import immutable record
*/
import {List, Record} from 'immutable';
/**
* ## InitialState
*
* shops: List of
* new (Record({
* id: '',
* name: '',
* }))
*
* The fields we're concerned with
*/
let InitialState = Record({
error: null,
isValid: false,
isFetching: false,
isShowPwd:false,
profile: new (Record({
account: '',
password:'',
pid: '',
username: '',
sessionKey: '',
})),
password: new (Record({
new: '',
old: '',
repeat: '',
})),
brands: List(),
isShowUpdate: false,
updateUrl: '',
});
export default InitialState;