43 lines
811 B
JavaScript
43 lines
811 B
JavaScript
module.exports = {
|
|
userAccount: {
|
|
loading: false,
|
|
error: null,
|
|
username: 'staff',
|
|
email: null,
|
|
bio: null,
|
|
name: null,
|
|
country: null,
|
|
socialLinks: null,
|
|
profileImage: {
|
|
imageUrlMedium: null,
|
|
imageUrlLarge: null
|
|
},
|
|
levelOfEducation: null,
|
|
learningGoal: null
|
|
},
|
|
profilePage: {
|
|
errors: {},
|
|
saveState: null,
|
|
savePhotoState: null,
|
|
currentlyEditingField: null,
|
|
account: {
|
|
username: 'staff',
|
|
socialLinks: []
|
|
},
|
|
preferences: {},
|
|
courseCertificates: [],
|
|
drafts: {},
|
|
isLoadingProfile: true,
|
|
isAuthenticatedUserProfile: true,
|
|
countriesCodesList: ['US', 'CA', 'GB', 'ME']
|
|
},
|
|
router: {
|
|
location: {
|
|
pathname: '/u/staff',
|
|
search: '',
|
|
hash: ''
|
|
},
|
|
action: 'POP'
|
|
}
|
|
};
|