3f79c9ae49
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
119 lines
2.7 KiB
TypeScript
119 lines
2.7 KiB
TypeScript
import { apiUrl } from '../../config';
|
|
import CropWindow from '../views/components/crop-window.vue';
|
|
import ProgressDialog from '../views/components/progress-dialog.vue';
|
|
|
|
export default ($root: any) => {
|
|
|
|
const cropImage = file => new Promise((resolve, reject) => {
|
|
|
|
const regex = RegExp('\.(jpg|jpeg|png|gif|webp|bmp|tiff)$');
|
|
if (!regex.test(file.name) ) {
|
|
$root.dialog({
|
|
title: '%fa:info-circle% %i18n:desktop.invalid-filetype%',
|
|
text: null,
|
|
actions: [{
|
|
text: '%i18n:common.got-it%'
|
|
}]
|
|
});
|
|
return reject('invalid-filetype');
|
|
}
|
|
|
|
const w = $root.new(CropWindow, {
|
|
image: file,
|
|
title: '%i18n:desktop.banner-crop-title%',
|
|
aspectRatio: 16 / 9
|
|
});
|
|
|
|
w.$once('cropped', blob => {
|
|
const data = new FormData();
|
|
data.append('i', $root.$store.state.i.token);
|
|
data.append('file', blob, file.name + '.cropped.png');
|
|
|
|
$root.api('drive/folders/find', {
|
|
name: '%i18n:desktop.banner%'
|
|
}).then(bannerFolder => {
|
|
if (bannerFolder.length === 0) {
|
|
$root.api('drive/folders/create', {
|
|
name: '%i18n:desktop.banner%'
|
|
}).then(iconFolder => {
|
|
resolve(upload(data, iconFolder));
|
|
});
|
|
} else {
|
|
resolve(upload(data, bannerFolder[0]));
|
|
}
|
|
});
|
|
});
|
|
|
|
w.$once('skipped', () => {
|
|
resolve(file);
|
|
});
|
|
|
|
w.$once('cancelled', reject);
|
|
|
|
document.body.appendChild(w.$el);
|
|
});
|
|
|
|
const upload = (data, folder) => new Promise((resolve, reject) => {
|
|
const dialog = $root.new(ProgressDialog, {
|
|
title: '%i18n:desktop.uploading-banner%'
|
|
});
|
|
document.body.appendChild(dialog.$el);
|
|
|
|
if (folder) data.append('folderId', folder.id);
|
|
|
|
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();
|
|
resolve(file);
|
|
};
|
|
xhr.onerror = reject;
|
|
|
|
xhr.upload.onprogress = e => {
|
|
if (e.lengthComputable) (dialog as any).update(e.loaded, e.total);
|
|
};
|
|
|
|
xhr.send(data);
|
|
});
|
|
|
|
const setBanner = file => {
|
|
return $root.api('i/update', {
|
|
bannerId: file.id
|
|
}).then(i => {
|
|
$root.$store.commit('updateIKeyValue', {
|
|
key: 'bannerId',
|
|
value: i.bannerId
|
|
});
|
|
$root.$store.commit('updateIKeyValue', {
|
|
key: 'bannerUrl',
|
|
value: i.bannerUrl
|
|
});
|
|
|
|
$root.$dialog({
|
|
title: '%fa:info-circle% %i18n:desktop.banner-updated%',
|
|
text: null,
|
|
actions: [{
|
|
text: '%i18n:common.got-it%'
|
|
}]
|
|
});
|
|
|
|
return i;
|
|
});
|
|
};
|
|
|
|
return (file = null) => {
|
|
const selectedFile = file
|
|
? Promise.resolve(file)
|
|
: $root.$chooseDriveFile({
|
|
multiple: false,
|
|
title: '%fa:image% %i18n:desktop.choose-banner%'
|
|
});
|
|
|
|
return selectedFile
|
|
.then(cropImage)
|
|
.then(setBanner)
|
|
.catch(err => err && console.warn(err));
|
|
};
|
|
};
|