2018-02-20 11:53:34 -06:00
|
|
|
import { apiUrl } from '../../config';
|
|
|
|
import CropWindow from '../views/components/crop-window.vue';
|
|
|
|
import ProgressDialog from '../views/components/progress-dialog.vue';
|
|
|
|
|
2018-11-09 01:00:29 -06:00
|
|
|
export default ($root: any) => {
|
2018-02-20 11:53:34 -06:00
|
|
|
|
2018-08-27 11:29:21 -05:00
|
|
|
const cropImage = file => new Promise((resolve, reject) => {
|
2018-08-28 03:44:49 -05:00
|
|
|
|
|
|
|
const regex = RegExp('\.(jpg|jpeg|png|gif|webp|bmp|tiff)$');
|
|
|
|
if (!regex.test(file.name) ) {
|
2018-11-14 01:30:58 -06:00
|
|
|
$root.alert({
|
2018-08-27 14:03:28 -05:00
|
|
|
title: '%fa:info-circle% %i18n:desktop.invalid-filetype%',
|
2018-11-14 01:30:58 -06:00
|
|
|
text: null
|
2018-08-27 14:03:28 -05:00
|
|
|
});
|
2018-08-30 15:04:20 -05:00
|
|
|
return reject('invalid-filetype');
|
2018-08-27 14:03:28 -05:00
|
|
|
}
|
2018-08-28 03:44:49 -05:00
|
|
|
|
2018-11-09 01:00:29 -06:00
|
|
|
const w = $root.new(CropWindow, {
|
2018-05-26 23:49:09 -05:00
|
|
|
image: file,
|
2018-08-06 13:20:26 -05:00
|
|
|
title: '%i18n:desktop.avatar-crop-title%',
|
2018-05-26 23:49:09 -05:00
|
|
|
aspectRatio: 1 / 1
|
|
|
|
});
|
2018-02-20 11:53:34 -06:00
|
|
|
|
|
|
|
w.$once('cropped', blob => {
|
|
|
|
const data = new FormData();
|
2018-11-09 01:00:29 -06:00
|
|
|
data.append('i', $root.$store.state.i.token);
|
2018-02-20 11:53:34 -06:00
|
|
|
data.append('file', blob, file.name + '.cropped.png');
|
|
|
|
|
2018-11-09 01:00:29 -06:00
|
|
|
$root.api('drive/folders/find', {
|
2018-08-06 13:20:26 -05:00
|
|
|
name: '%i18n:desktop.avatar%'
|
2018-08-27 11:29:21 -05:00
|
|
|
}).then(avatarFolder => {
|
|
|
|
if (avatarFolder.length === 0) {
|
2018-11-09 01:00:29 -06:00
|
|
|
$root.api('drive/folders/create', {
|
2018-08-06 13:20:26 -05:00
|
|
|
name: '%i18n:desktop.avatar%'
|
2018-02-20 11:53:34 -06:00
|
|
|
}).then(iconFolder => {
|
2018-08-27 11:29:21 -05:00
|
|
|
resolve(upload(data, iconFolder));
|
2018-02-20 11:53:34 -06:00
|
|
|
});
|
|
|
|
} else {
|
2018-08-27 11:29:21 -05:00
|
|
|
resolve(upload(data, avatarFolder[0]));
|
2018-02-20 11:53:34 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
w.$once('skipped', () => {
|
2018-08-27 11:29:21 -05:00
|
|
|
resolve(file);
|
2018-02-20 11:53:34 -06:00
|
|
|
});
|
|
|
|
|
2018-08-27 11:29:21 -05:00
|
|
|
w.$once('cancelled', reject);
|
|
|
|
|
2018-02-20 11:53:34 -06:00
|
|
|
document.body.appendChild(w.$el);
|
2018-08-27 11:29:21 -05:00
|
|
|
});
|
2018-02-20 11:53:34 -06:00
|
|
|
|
2018-08-27 11:29:21 -05:00
|
|
|
const upload = (data, folder) => new Promise((resolve, reject) => {
|
2018-11-09 01:00:29 -06:00
|
|
|
const dialog = $root.new(ProgressDialog, {
|
2018-08-06 13:20:26 -05:00
|
|
|
title: '%i18n:desktop.uploading-avatar%'
|
2018-05-26 23:49:09 -05:00
|
|
|
});
|
2018-02-20 11:53:34 -06:00
|
|
|
document.body.appendChild(dialog.$el);
|
|
|
|
|
2018-03-29 00:48:47 -05:00
|
|
|
if (folder) data.append('folderId', folder.id);
|
2018-02-20 11:53:34 -06: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 11:29:21 -05:00
|
|
|
resolve(file);
|
2018-02-20 11:53:34 -06:00
|
|
|
};
|
2018-08-27 11:29:21 -05:00
|
|
|
xhr.onerror = reject;
|
2018-02-20 11:53:34 -06:00
|
|
|
|
|
|
|
xhr.upload.onprogress = e => {
|
2018-02-20 14:55:19 -06:00
|
|
|
if (e.lengthComputable) (dialog as any).update(e.loaded, e.total);
|
2018-02-20 11:53:34 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
xhr.send(data);
|
2018-08-27 11:29:21 -05:00
|
|
|
});
|
2018-02-20 11:53:34 -06:00
|
|
|
|
2018-08-27 11:29:21 -05:00
|
|
|
const setAvatar = file => {
|
2018-11-09 01:00:29 -06:00
|
|
|
return $root.api('i/update', {
|
2018-03-29 00:48:47 -05:00
|
|
|
avatarId: file.id
|
2018-02-20 11:53:34 -06:00
|
|
|
}).then(i => {
|
2018-11-09 01:00:29 -06:00
|
|
|
$root.$store.commit('updateIKeyValue', {
|
2018-05-26 23:49:09 -05:00
|
|
|
key: 'avatarId',
|
|
|
|
value: i.avatarId
|
|
|
|
});
|
2018-11-09 01:00:29 -06:00
|
|
|
$root.$store.commit('updateIKeyValue', {
|
2018-05-26 23:49:09 -05:00
|
|
|
key: 'avatarUrl',
|
|
|
|
value: i.avatarUrl
|
|
|
|
});
|
2018-02-20 14:55:19 -06:00
|
|
|
|
2018-11-14 01:30:58 -06:00
|
|
|
$root.alert({
|
2018-08-06 13:20:26 -05:00
|
|
|
title: '%fa:info-circle% %i18n:desktop.avatar-updated%',
|
2018-11-14 01:30:58 -06:00
|
|
|
text: null
|
2018-02-20 11:53:34 -06:00
|
|
|
});
|
|
|
|
|
2018-08-27 11:29:21 -05:00
|
|
|
return i;
|
2018-02-20 11:53:34 -06:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-08-27 11:29:21 -05:00
|
|
|
return (file = null) => {
|
|
|
|
const selectedFile = file
|
|
|
|
? Promise.resolve(file)
|
2018-11-09 01:00:29 -06:00
|
|
|
: $root.$chooseDriveFile({
|
2018-08-27 11:29:21 -05:00
|
|
|
multiple: false,
|
|
|
|
title: '%fa:image% %i18n:desktop.choose-avatar%'
|
|
|
|
});
|
|
|
|
|
|
|
|
return selectedFile
|
|
|
|
.then(cropImage)
|
|
|
|
.then(setAvatar)
|
|
|
|
.catch(err => err && console.warn(err));
|
|
|
|
};
|
2018-02-20 11:53:34 -06:00
|
|
|
};
|