2019-07-02 14:38:42 +02:00
|
|
|
import Rails from '@rails/ujs';
|
2018-10-09 11:32:27 +02:00
|
|
|
import debounce from 'debounce';
|
2022-04-28 19:10:21 +02:00
|
|
|
import { session } from '@hotwired/turbo';
|
2018-10-09 11:32:27 +02:00
|
|
|
|
|
|
|
export { debounce };
|
2022-04-28 19:10:21 +02:00
|
|
|
export const { fire, csrfToken, cspNonce } = Rails;
|
2018-10-09 11:32:27 +02:00
|
|
|
|
2022-05-06 19:35:14 +02:00
|
|
|
export function show(el: HTMLElement | null) {
|
|
|
|
el?.classList.remove('hidden');
|
2018-09-06 19:23:27 +02:00
|
|
|
}
|
|
|
|
|
2022-05-06 19:35:14 +02:00
|
|
|
export function hide(el: HTMLElement | null) {
|
|
|
|
el?.classList.add('hidden');
|
2018-09-06 19:23:27 +02:00
|
|
|
}
|
|
|
|
|
2022-05-06 19:35:14 +02:00
|
|
|
export function toggle(el: HTMLElement | null, force?: boolean) {
|
2020-03-30 15:34:56 +02:00
|
|
|
if (force == undefined) {
|
2022-05-06 19:35:14 +02:00
|
|
|
el?.classList.toggle('hidden');
|
2020-03-30 15:34:56 +02:00
|
|
|
} else if (force) {
|
2022-05-06 19:35:14 +02:00
|
|
|
el?.classList.remove('hidden');
|
2020-03-30 15:34:56 +02:00
|
|
|
} else {
|
2022-05-06 19:35:14 +02:00
|
|
|
el?.classList.add('hidden');
|
2020-03-30 15:34:56 +02:00
|
|
|
}
|
2018-09-06 19:23:27 +02:00
|
|
|
}
|
2018-10-09 11:32:27 +02:00
|
|
|
|
2022-05-06 19:35:14 +02:00
|
|
|
export function enable(el: HTMLInputElement | HTMLButtonElement | null) {
|
2019-11-19 17:55:30 +01:00
|
|
|
el && (el.disabled = false);
|
|
|
|
}
|
|
|
|
|
2022-05-06 19:35:14 +02:00
|
|
|
export function disable(el: HTMLInputElement | HTMLButtonElement | null) {
|
2019-11-19 17:55:30 +01:00
|
|
|
el && (el.disabled = true);
|
|
|
|
}
|
|
|
|
|
2022-05-06 19:35:14 +02:00
|
|
|
export function hasClass(el: HTMLElement | null, cssClass: string) {
|
|
|
|
return el?.classList.contains(cssClass);
|
2019-11-19 17:55:30 +01:00
|
|
|
}
|
|
|
|
|
2022-05-06 19:35:14 +02:00
|
|
|
export function addClass(el: HTMLElement | null, cssClass: string) {
|
|
|
|
el?.classList.add(cssClass);
|
2019-11-19 17:55:30 +01:00
|
|
|
}
|
|
|
|
|
2022-05-06 19:35:14 +02:00
|
|
|
export function removeClass(el: HTMLElement | null, cssClass: string) {
|
|
|
|
el?.classList.remove(cssClass);
|
2019-11-19 17:55:30 +01:00
|
|
|
}
|
|
|
|
|
2022-04-15 13:05:46 +02:00
|
|
|
export function delegate<E extends Event = Event>(
|
2022-02-02 17:16:50 +01:00
|
|
|
eventNames: string,
|
|
|
|
selector: string,
|
2022-04-15 13:05:46 +02:00
|
|
|
callback: (event: E) => void
|
2022-02-02 17:16:50 +01:00
|
|
|
) {
|
2018-10-09 11:32:27 +02:00
|
|
|
eventNames
|
|
|
|
.split(' ')
|
2020-04-30 15:42:29 +02:00
|
|
|
.forEach((eventName) =>
|
2022-04-15 13:05:46 +02:00
|
|
|
Rails.delegate(
|
|
|
|
document,
|
|
|
|
selector,
|
|
|
|
eventName,
|
|
|
|
callback as (event: Event) => void
|
|
|
|
)
|
2018-10-09 11:32:27 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-04-28 19:10:21 +02:00
|
|
|
export class ResponseError extends Error {
|
2022-05-06 19:37:43 +02:00
|
|
|
readonly response: Response;
|
|
|
|
readonly jsonBody?: unknown;
|
|
|
|
readonly textBody?: string;
|
2022-02-23 13:08:02 +01:00
|
|
|
|
2022-05-06 19:37:43 +02:00
|
|
|
constructor(response: Response, jsonBody?: unknown, textBody?: string) {
|
2022-02-23 13:08:02 +01:00
|
|
|
super(String(response.statusText || response.status));
|
|
|
|
this.response = response;
|
2022-05-06 19:37:43 +02:00
|
|
|
this.jsonBody = jsonBody;
|
|
|
|
this.textBody = textBody;
|
2022-02-23 13:08:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-28 19:10:21 +02:00
|
|
|
const FETCH_TIMEOUT = 30 * 1000; // 30 sec
|
|
|
|
|
|
|
|
// Perform an HTTP request using `fetch` API,
|
|
|
|
// and handle the result depending on the MIME type.
|
|
|
|
//
|
|
|
|
// Usage:
|
|
|
|
//
|
|
|
|
// Execute a GET request, and return the response as parsed JSON
|
|
|
|
// const parsedJson = await httpRequest(url).json();
|
|
|
|
//
|
|
|
|
// Execute a POST request with some JSON payload
|
|
|
|
// const parsedJson = await httpRequest(url, { method: 'POST', json: '{ "foo": 1 }').json();
|
|
|
|
//
|
|
|
|
// Execute a GET request, and apply the Turbo stream in the Response
|
|
|
|
// await httpRequest(url).turbo();
|
|
|
|
//
|
|
|
|
export function httpRequest(
|
|
|
|
url: string,
|
|
|
|
{
|
|
|
|
csrf = true,
|
|
|
|
timeout = FETCH_TIMEOUT,
|
|
|
|
json,
|
|
|
|
controller,
|
|
|
|
...init
|
|
|
|
}: RequestInit & {
|
|
|
|
csrf?: boolean;
|
|
|
|
json?: unknown;
|
|
|
|
timeout?: number | false;
|
|
|
|
controller?: AbortController;
|
|
|
|
} = {}
|
|
|
|
) {
|
2022-05-05 09:35:53 +02:00
|
|
|
const headers = init.headers ? new Headers(init.headers) : new Headers();
|
2022-04-28 19:10:21 +02:00
|
|
|
if (csrf) {
|
|
|
|
headers.set('x-csrf-token', csrfToken() ?? '');
|
|
|
|
headers.set('x-requested-with', 'XMLHttpRequest');
|
|
|
|
init.credentials = 'same-origin';
|
|
|
|
}
|
|
|
|
init.headers = headers;
|
|
|
|
init.method = init.method?.toUpperCase() ?? 'GET';
|
|
|
|
|
|
|
|
if (json) {
|
|
|
|
headers.set('content-type', 'application/json');
|
|
|
|
init.body = JSON.stringify(json);
|
|
|
|
}
|
2020-10-08 11:19:16 +02:00
|
|
|
|
2022-07-05 13:38:00 +02:00
|
|
|
let timer: ReturnType<typeof setTimeout>;
|
2022-04-28 19:10:21 +02:00
|
|
|
if (!init.signal) {
|
|
|
|
controller = createAbortController(controller);
|
|
|
|
if (controller) {
|
|
|
|
init.signal = controller.signal;
|
|
|
|
if (timeout != false) {
|
|
|
|
timer = setTimeout(() => controller?.abort(), timeout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-06 19:37:43 +02:00
|
|
|
const request = async (
|
|
|
|
init: RequestInit,
|
|
|
|
accept?: string
|
|
|
|
): Promise<Response> => {
|
2022-04-28 19:10:21 +02:00
|
|
|
if (accept && init.headers instanceof Headers) {
|
|
|
|
init.headers.set('accept', accept);
|
|
|
|
}
|
2022-05-06 19:37:43 +02:00
|
|
|
try {
|
|
|
|
const response = await fetch(url, init);
|
|
|
|
|
|
|
|
if (response.ok) {
|
|
|
|
return response;
|
|
|
|
} else if (response.status == 401) {
|
|
|
|
location.reload(); // reload whole page so Devise will redirect to sign-in
|
|
|
|
}
|
|
|
|
|
|
|
|
const contentType = response.headers.get('content-type');
|
|
|
|
let jsonBody: unknown;
|
|
|
|
let textBody: string | undefined;
|
|
|
|
try {
|
|
|
|
if (contentType?.match('json')) {
|
2022-05-13 18:13:52 +02:00
|
|
|
jsonBody = await response.clone().json();
|
2022-05-06 19:37:43 +02:00
|
|
|
} else {
|
2022-05-13 18:13:52 +02:00
|
|
|
textBody = await response.clone().text();
|
2022-04-28 19:10:21 +02:00
|
|
|
}
|
2022-05-06 19:37:43 +02:00
|
|
|
} catch {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
throw new ResponseError(response, jsonBody, textBody);
|
|
|
|
} finally {
|
|
|
|
clearTimeout(timer);
|
|
|
|
}
|
2022-04-28 19:10:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
async json<T>(): Promise<T | null> {
|
|
|
|
const response = await request(init, 'application/json');
|
|
|
|
if (response.status == 204) {
|
2020-10-08 11:19:16 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return response.json();
|
2022-04-28 19:10:21 +02:00
|
|
|
},
|
|
|
|
async turbo(): Promise<void> {
|
|
|
|
const response = await request(init, 'text/vnd.turbo-stream.html');
|
|
|
|
if (response.status != 204) {
|
|
|
|
const stream = await response.text();
|
|
|
|
session.renderStreamMessage(stream);
|
|
|
|
}
|
2022-05-11 09:34:19 +02:00
|
|
|
},
|
|
|
|
async js(): Promise<void> {
|
|
|
|
const response = await request(init, 'text/javascript');
|
|
|
|
if (response.status != 204) {
|
|
|
|
const script = document.createElement('script');
|
|
|
|
const nonce = cspNonce();
|
|
|
|
if (nonce) {
|
|
|
|
script.setAttribute('nonce', nonce);
|
|
|
|
}
|
|
|
|
script.text = await response.text();
|
|
|
|
document.head.appendChild(script);
|
|
|
|
document.head.removeChild(script);
|
|
|
|
}
|
2020-10-08 11:19:16 +02:00
|
|
|
}
|
2022-04-28 19:10:21 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function createAbortController(controller?: AbortController) {
|
|
|
|
if (controller) {
|
|
|
|
return controller;
|
|
|
|
} else if (window.AbortController) {
|
|
|
|
return new AbortController();
|
|
|
|
}
|
|
|
|
return;
|
2018-10-09 11:32:27 +02:00
|
|
|
}
|
|
|
|
|
2022-02-23 13:07:23 +01:00
|
|
|
export function isNumeric(s: string) {
|
|
|
|
const n = parseFloat(s);
|
|
|
|
return !isNaN(n) && isFinite(n);
|
2020-01-23 15:12:19 +01:00
|
|
|
}
|