chore: Move to prettier standard double quotes (#1309)

This commit is contained in:
Tom Moor
2020-06-20 13:59:15 -07:00
committed by GitHub
parent 2a3b9e2104
commit f43deb7940
444 changed files with 5988 additions and 5977 deletions

View File

@ -1,6 +1,6 @@
// @flow
import { client } from './ApiClient';
import invariant from 'invariant';
import { client } from "./ApiClient";
import invariant from "invariant";
type Options = {
name?: string,
@ -10,10 +10,10 @@ type Options = {
export const uploadFile = async (
file: File | Blob,
options?: Options = { name: '' }
options?: Options = { name: "" }
) => {
const name = file instanceof File ? file.name : options.name;
const response = await client.post('/attachments.create', {
const response = await client.post("/attachments.create", {
public: options.public,
documentId: options.documentId,
contentType: file.type,
@ -21,7 +21,7 @@ export const uploadFile = async (
name,
});
invariant(response, 'Response should be available');
invariant(response, "Response should be available");
const data = response.data;
const attachment = data.attachment;
@ -34,13 +34,13 @@ export const uploadFile = async (
// $FlowFixMe
if (file.blob) {
// $FlowFixMe
formData.append('file', file.file);
formData.append("file", file.file);
} else {
formData.append('file', file);
formData.append("file", file);
}
await fetch(data.uploadUrl, {
method: 'post',
method: "post",
body: formData,
});
@ -48,11 +48,11 @@ export const uploadFile = async (
};
export const dataUrlToBlob = (dataURL: string) => {
var blobBin = atob(dataURL.split(',')[1]);
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' });
const file = new Blob([new Uint8Array(array)], { type: "image/png" });
return file;
};