Merge pull request #662 from Retrospring/feature/request-js-user

Refactor user TS functionality to use `@rails/request.js`
This commit is contained in:
Karina Kwiatek 2022-09-03 21:44:48 +02:00 committed by GitHub
commit 5baafdc38d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
import Rails from '@rails/ujs'; import { post } from '@rails/request.js';
import { showNotification, showErrorNotification } from 'utilities/notifications'; import { showNotification, showErrorNotification } from 'utilities/notifications';
import I18n from 'retrospring/i18n'; import I18n from 'retrospring/i18n';
@ -30,22 +30,24 @@ export function userActionHandler(event: Event): void {
} }
let success = false; let success = false;
Rails.ajax({ post(targetURL, {
url: targetURL, body: {
type: 'POST',
data: new URLSearchParams({
screen_name: target, screen_name: target,
type: relationshipType, type: relationshipType,
}).toString(), },
success: (data) => { contentType: 'application/json'
})
.then(async response => {
const data = await response.json;
success = data.success; success = data.success;
showNotification(data.message, data.success); showNotification(data.message, data.success);
}, })
error: (data, status, xhr) => { .catch(err => {
console.log(data, status, xhr); console.log(err);
showErrorNotification(I18n.translate('frontend.error.message')); showErrorNotification(I18n.translate('frontend.error.message'));
}, })
complete: () => { .finally(() => {
if (!success) return; if (!success) return;
switch (action) { switch (action) {
@ -76,8 +78,7 @@ export function userActionHandler(event: Event): void {
} }
break; break;
} }
} });
});
} }
function resetFollowButton(button: HTMLButtonElement) { function resetFollowButton(button: HTMLButtonElement) {