rudeshark.net/src/client/app/desktop/api/update-avatar.ts

107 lines
2.4 KiB
TypeScript
Raw Normal View History

2018-04-29 14:37:51 +02:00
import OS from '../../mios';
2018-02-20 18:53:34 +01:00
import { apiUrl } from '../../config';
import CropWindow from '../views/components/crop-window.vue';
import ProgressDialog from '../views/components/progress-dialog.vue';
2018-08-27 18:29:21 +02:00
export default (os: OS) => {
2018-02-20 18:53:34 +01:00
2018-08-27 18:29:21 +02:00
const cropImage = file => new Promise((resolve, reject) => {
2018-05-27 06:49:09 +02:00
const w = os.new(CropWindow, {
image: file,
2018-08-06 20:20:26 +02:00
title: '%i18n:desktop.avatar-crop-title%',
2018-05-27 06:49:09 +02:00
aspectRatio: 1 / 1
});
2018-02-20 18:53:34 +01:00
w.$once('cropped', blob => {
const data = new FormData();
2018-05-27 06:49:09 +02:00
data.append('i', os.store.state.i.token);
2018-02-20 18:53:34 +01:00
data.append('file', blob, file.name + '.cropped.png');
os.api('drive/folders/find', {
2018-08-06 20:20:26 +02:00
name: '%i18n:desktop.avatar%'
2018-08-27 18:29:21 +02:00
}).then(avatarFolder => {
if (avatarFolder.length === 0) {
2018-02-20 18:53:34 +01:00
os.api('drive/folders/create', {
2018-08-06 20:20:26 +02:00
name: '%i18n:desktop.avatar%'
2018-02-20 18:53:34 +01:00
}).then(iconFolder => {
2018-08-27 18:29:21 +02:00
resolve(upload(data, iconFolder));
2018-02-20 18:53:34 +01:00
});
} else {
2018-08-27 18:29:21 +02:00
resolve(upload(data, avatarFolder[0]));
2018-02-20 18:53:34 +01:00
}
});
});
w.$once('skipped', () => {
2018-08-27 18:29:21 +02:00
resolve(file);
2018-02-20 18:53:34 +01:00
});
2018-08-27 18:29:21 +02:00
w.$once('cancelled', reject);
2018-02-20 18:53:34 +01:00
document.body.appendChild(w.$el);
2018-08-27 18:29:21 +02:00
});
2018-02-20 18:53:34 +01:00
2018-08-27 18:29:21 +02:00
const upload = (data, folder) => new Promise((resolve, reject) => {
2018-05-27 06:49:09 +02:00
const dialog = os.new(ProgressDialog, {
2018-08-06 20:20:26 +02:00
title: '%i18n:desktop.uploading-avatar%'
2018-05-27 06:49:09 +02:00
});
2018-02-20 18:53:34 +01:00
document.body.appendChild(dialog.$el);
2018-03-29 07:48:47 +02:00
if (folder) data.append('folderId', folder.id);
2018-02-20 18:53:34 +01:00
const xhr = new XMLHttpRequest();
xhr.open('POST', apiUrl + '/drive/files/create', true);
xhr.onload = e => {
const file = JSON.parse((e.target as any).response);
(dialog as any).close();
2018-08-27 18:29:21 +02:00
resolve(file);
2018-02-20 18:53:34 +01:00
};
2018-08-27 18:29:21 +02:00
xhr.onerror = reject;
2018-02-20 18:53:34 +01:00
xhr.upload.onprogress = e => {
2018-02-20 21:55:19 +01:00
if (e.lengthComputable) (dialog as any).update(e.loaded, e.total);
2018-02-20 18:53:34 +01:00
};
xhr.send(data);
2018-08-27 18:29:21 +02:00
});
2018-02-20 18:53:34 +01:00
2018-08-27 18:29:21 +02:00
const setAvatar = file => {
return os.api('i/update', {
2018-03-29 07:48:47 +02:00
avatarId: file.id
2018-02-20 18:53:34 +01:00
}).then(i => {
2018-05-27 06:49:09 +02:00
os.store.commit('updateIKeyValue', {
key: 'avatarId',
value: i.avatarId
});
os.store.commit('updateIKeyValue', {
key: 'avatarUrl',
value: i.avatarUrl
});
2018-02-20 21:55:19 +01:00
2018-02-20 18:53:34 +01:00
os.apis.dialog({
2018-08-06 20:20:26 +02:00
title: '%fa:info-circle% %i18n:desktop.avatar-updated%',
text: null,
2018-02-20 18:53:34 +01:00
actions: [{
2018-08-06 20:20:26 +02:00
text: '%i18n:common.got-it%'
2018-02-20 18:53:34 +01:00
}]
});
2018-08-27 18:29:21 +02:00
return i;
2018-02-20 18:53:34 +01:00
});
};
2018-08-27 18:29:21 +02:00
return (file = null) => {
const selectedFile = file
? Promise.resolve(file)
: os.apis.chooseDriveFile({
multiple: false,
title: '%fa:image% %i18n:desktop.choose-avatar%'
});
return selectedFile
.then(cropImage)
.then(setAvatar)
.catch(err => err && console.warn(err));
};
2018-02-20 18:53:34 +01:00
};