* Big upgrades * WIP: Stash * Stash, 30 flow errors left * Downgrade mobx * WIP * When I understand the difference between class and instance methods * 💚 * Fixes: File import Model saving edge cases pinning and starring docs Collection editing Upgrade mobx devtools * Notification settings saving works * Disabled settings * Document mailer * Working notifications * Colletion created notification Ensure not notified for own actions * Tidy up * Document updated event only for document creation Add indexes Notification setting on user creation * Commentary * Fixed: Notification setting on signup * Fix document move / duplicate stale data Add BaseModel.refresh method * Fixes: Title in sidebar not updated after editing document * 💚 * Improve / restore error handling Better handle offline errors * 👕
56 lines
1.2 KiB
JavaScript
56 lines
1.2 KiB
JavaScript
// @flow
|
|
import { client } from './ApiClient';
|
|
import invariant from 'invariant';
|
|
|
|
type Options = {
|
|
name?: string,
|
|
};
|
|
|
|
export const uploadFile = async (
|
|
file: File | Blob,
|
|
option?: Options = { name: '' }
|
|
) => {
|
|
const filename = file instanceof File ? file.name : option.name;
|
|
const response = await client.post('/users.s3Upload', {
|
|
kind: file.type,
|
|
size: file.size,
|
|
filename,
|
|
});
|
|
|
|
invariant(response, 'Response should be available');
|
|
|
|
const data = response.data;
|
|
const asset = data.asset;
|
|
const formData = new FormData();
|
|
|
|
for (const key in data.form) {
|
|
formData.append(key, data.form[key]);
|
|
}
|
|
|
|
// $FlowFixMe
|
|
if (file.blob) {
|
|
// $FlowFixMe
|
|
formData.append('file', file.file);
|
|
} else {
|
|
formData.append('file', file);
|
|
}
|
|
|
|
const options: Object = {
|
|
method: 'post',
|
|
body: formData,
|
|
};
|
|
await fetch(data.uploadUrl, options);
|
|
|
|
return asset;
|
|
};
|
|
|
|
export const dataUrlToBlob = (dataURL: string) => {
|
|
var blobBin = atob(dataURL.split(',')[1]);
|
|
var array = [];
|
|
for (var i = 0; i < blobBin.length; i++) {
|
|
array.push(blobBin.charCodeAt(i));
|
|
}
|
|
const file = new Blob([new Uint8Array(array)], { type: 'image/png' });
|
|
return file;
|
|
};
|