2017-02-18 09:56:27 +01:00
|
|
|
const riot = require('riot');
|
|
|
|
const dialog = require('./dialog');
|
|
|
|
const api = require('../../common/scripts/api');
|
|
|
|
|
|
|
|
module.exports = (I, cb, file = null) => {
|
|
|
|
const fileSelected = file => {
|
|
|
|
const cropper = riot.mount(document.body.appendChild(document.createElement('mk-crop-window')), {
|
|
|
|
file: file,
|
|
|
|
title: 'アバターとして表示する部分を選択',
|
|
|
|
aspectRatio: 1 / 1
|
|
|
|
})[0];
|
|
|
|
|
|
|
|
cropper.on('cropped', blob => {
|
|
|
|
const data = new FormData();
|
|
|
|
data.append('i', I.token);
|
|
|
|
data.append('file', blob, file.name + '.cropped.png');
|
|
|
|
|
|
|
|
api(I, 'drive/folders/find', {
|
|
|
|
name: 'アイコン'
|
|
|
|
}).then(iconFolder => {
|
|
|
|
if (iconFolder.length === 0) {
|
2017-02-18 23:15:18 +01:00
|
|
|
api(I, 'drive/folders/create', {
|
2017-02-18 09:56:27 +01:00
|
|
|
name: 'アイコン'
|
|
|
|
}).then(iconFolder => {
|
|
|
|
uplaod(data, iconFolder);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
uplaod(data, iconFolder[0]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
cropper.on('skiped', () => {
|
|
|
|
set(file);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const uplaod = (data, folder) => {
|
|
|
|
const progress = riot.mount(document.body.appendChild(document.createElement('mk-progress-dialog')), {
|
|
|
|
title: '新しいアバターをアップロードしています'
|
|
|
|
})[0];
|
|
|
|
|
|
|
|
if (folder) data.append('folder_id', folder.id);
|
|
|
|
|
|
|
|
const xhr = new XMLHttpRequest();
|
2017-02-19 07:32:10 +01:00
|
|
|
xhr.open('POST', CONFIG.apiUrl + '/drive/files/create', true);
|
2017-02-18 09:56:27 +01:00
|
|
|
xhr.onload = e => {
|
|
|
|
const file = JSON.parse(e.target.response);
|
|
|
|
progress.close();
|
|
|
|
set(file);
|
|
|
|
};
|
|
|
|
|
|
|
|
xhr.upload.onprogress = e => {
|
|
|
|
if (e.lengthComputable) progress.updateProgress(e.loaded, e.total);
|
|
|
|
};
|
|
|
|
|
|
|
|
xhr.send(data);
|
|
|
|
};
|
|
|
|
|
|
|
|
const set = file => {
|
|
|
|
api(I, 'i/update', {
|
|
|
|
avatar_id: file.id
|
|
|
|
}).then(i => {
|
|
|
|
dialog('<i class="fa fa-info-circle"></i>アバターを更新しました',
|
|
|
|
'新しいアバターが反映されるまで時間がかかる場合があります。',
|
|
|
|
[{
|
|
|
|
text: 'わかった'
|
|
|
|
}]);
|
|
|
|
|
|
|
|
if (cb) cb(i);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
if (file) {
|
|
|
|
fileSelected(file);
|
|
|
|
} else {
|
|
|
|
const browser = riot.mount(document.body.appendChild(document.createElement('mk-select-file-from-drive-window')), {
|
|
|
|
multiple: false,
|
|
|
|
title: '<i class="fa fa-picture-o"></i>アバターにする画像を選択'
|
|
|
|
})[0];
|
|
|
|
|
|
|
|
browser.one('selected', file => {
|
|
|
|
fileSelected(file);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|