docbrown/app/javascript/article-form/actions.js
Alex 5948c6cfca
Fix bug when trying to preview a blank draft article (#12585)
* Try to fix preview bug

* Now an error is thrown client side if HTTP status isn't 200

* Now the JSON response is thrown instead of the response when preview fails.

* Linter test

Co-authored-by: Nick Taylor <nick@dev.to>
Co-authored-by: Fernando Valverde <fdov88@gmail.com>
2021-02-05 06:56:26 -06:00

126 lines
3.2 KiB
JavaScript

import { validateFileInputs } from '../packs/validateFileInputs';
export function previewArticle(payload, successCb, failureCb) {
fetch('/articles/preview', {
method: 'POST',
headers: {
Accept: 'application/json',
'X-CSRF-Token': window.csrfToken,
'Content-Type': 'application/json',
},
body: JSON.stringify({
article_body: payload,
}),
credentials: 'same-origin',
})
.then(async (response) => {
const payload = await response.json();
if (response.status !== 200) {
throw payload;
}
return payload;
})
.then(successCb)
.catch(failureCb);
}
export function getArticle() {}
function processPayload(payload) {
const {
/* eslint-disable no-unused-vars */
previewShowing,
helpShowing,
previewResponse,
helpHTML,
imageManagementShowing,
moreConfigShowing,
errors,
/* eslint-enable no-unused-vars */
...neededPayload
} = payload;
return neededPayload;
}
export function submitArticle(payload, clearStorage, errorCb, failureCb) {
const method = payload.id ? 'PUT' : 'POST';
const url = payload.id ? `/articles/${payload.id}` : '/articles';
fetch(url, {
method,
headers: {
Accept: 'application/json',
'X-CSRF-Token': window.csrfToken,
'Content-Type': 'application/json',
},
body: JSON.stringify({
article: processPayload(payload),
}),
credentials: 'same-origin',
})
.then((response) => response.json())
.then((response) => {
if (response.current_state_path) {
clearStorage();
window.location.replace(response.current_state_path);
} else {
// If there is an error and the method is POST, we know they are trying to publish.
errorCb(response, method === 'POST');
}
})
.catch(failureCb);
}
function generateUploadFormdata(payload) {
const token = window.csrfToken;
const formData = new FormData();
formData.append('authenticity_token', token);
Object.entries(payload.image).forEach(([_, value]) =>
formData.append('image[]', value),
);
return formData;
}
export function generateMainImage(payload, successCb, failureCb) {
fetch('/image_uploads', {
method: 'POST',
headers: {
'X-CSRF-Token': window.csrfToken,
},
body: generateUploadFormdata(payload),
credentials: 'same-origin',
})
.then((response) => response.json())
.then((json) => {
if (json.error) {
throw new Error(json.error);
}
const { links } = json;
const { image } = payload;
return successCb({ links, image });
})
.catch(failureCb);
}
/**
* Processes images for upload.
*
* @param {FileList} images Images to be uploaded.
* @param {Function} handleImageSuccess The handler that runs when the image is uploaded successfully.
* @param {Function} handleImageFailure The handler that runs when the image upload fails.
*/
export function processImageUpload(
images,
handleImageSuccess,
handleImageFailure,
) {
// Currently only one image is supported for upload.
if (images.length > 0 && validateFileInputs()) {
const payload = { image: images };
generateMainImage(payload, handleImageSuccess, handleImageFailure);
}
}