cab6f1bafb
* Implement the mechanics of fxa login on android, but don't show ui for it yet. Also, scopedKeys are not yet implemented. * Hopefully fix the package-lock conflict? * WIP on android scoped keys * Finish implementing login. * created android/user.js to handle android logins
42 lines
970 B
JavaScript
42 lines
970 B
JavaScript
/* eslint-disable no-console */
|
|
|
|
import User from '../user';
|
|
import storage from '../../app/storage';
|
|
|
|
export default function initialState(state, emitter) {
|
|
const files = [];
|
|
|
|
Object.assign(state, {
|
|
prefix: '/android_asset',
|
|
user: new User(storage),
|
|
getAsset(name) {
|
|
return `${state.prefix}/${name}`;
|
|
},
|
|
raven: {
|
|
captureException: e => {
|
|
console.error('ERROR ' + e + ' ' + e.stack);
|
|
}
|
|
},
|
|
storage: {
|
|
files,
|
|
remove: function(fileId) {
|
|
console.log('REMOVE FILEID', fileId);
|
|
},
|
|
writeFile: function(file) {
|
|
console.log('WRITEFILE', file);
|
|
},
|
|
addFile: function(file) {
|
|
console.log('addfile' + JSON.stringify(file));
|
|
files.push(file);
|
|
emitter.emit('pushState', `/share/${file.id}`);
|
|
},
|
|
totalUploads: 0
|
|
},
|
|
transfer: null,
|
|
uploading: false,
|
|
settingPassword: false,
|
|
passwordSetError: null,
|
|
route: '/'
|
|
});
|
|
}
|