File size: 3,778 Bytes
6e38ce1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | import { RcFile } from "antd/es/upload";
import { IStatus } from "./types/app";
export const getServerUrl = () => {
return process.env.GATSBY_API_URL || "/api";
};
export function setCookie(name: string, value: any, days: number) {
let expires = "";
if (days) {
const date = new Date();
date.setTime(date.getTime() + days * 24 * 60 * 60 * 1000);
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + (value || "") + expires + "; path=/";
}
export function getCookie(name: string) {
const nameEQ = name + "=";
const ca = document.cookie.split(";");
for (let i = 0; i < ca.length; i++) {
let c = ca[i];
while (c.charAt(0) == " ") c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return null;
}
export function setLocalStorage(
name: string,
value: any,
stringify: boolean = true
) {
if (stringify) {
localStorage.setItem(name, JSON.stringify(value));
} else {
localStorage.setItem(name, value);
}
}
export function getLocalStorage(name: string, stringify: boolean = true): any {
if (typeof window !== "undefined") {
const value = localStorage.getItem(name);
try {
if (stringify) {
return JSON.parse(value!);
} else {
return value;
}
} catch (e) {
return null;
}
} else {
return null;
}
}
export function fetchJSON(
url: string | URL,
payload: any = {},
onSuccess: (data: any) => void,
onError: (error: IStatus) => void,
onFinal: () => void = () => {}
) {
return fetch(url, payload)
.then(function (response) {
if (response.status !== 200) {
console.log(
"Looks like there was a problem. Status Code: " + response.status,
response
);
response.json().then(function (data) {
console.log("Error data", data);
});
onError({
status: false,
message:
"Connection error " + response.status + " " + response.statusText,
});
return;
}
return response.json().then(function (data) {
onSuccess(data);
});
})
.catch(function (err) {
console.log("Fetch Error :-S", err);
onError({
status: false,
message: `There was an error connecting to server. (${err}) `,
});
})
.finally(() => {
onFinal();
});
}
export function eraseCookie(name: string) {
document.cookie = name + "=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;";
}
export function truncateText(text: string, length = 50) {
if (text.length > length) {
return text.substring(0, length) + " ...";
}
return text;
}
export const fetchVersion = () => {
const versionUrl = getServerUrl() + "/version";
return fetch(versionUrl)
.then((response) => response.json())
.then((data) => {
return data;
})
.catch((error) => {
console.error("Error:", error);
return null;
});
};
export const convertFilesToBase64 = async (files: RcFile[] = []) => {
return Promise.all(
files.map(async (file) => {
return new Promise<{ name: string; content: string; type: string }>(
(resolve, reject) => {
const reader = new FileReader();
reader.onload = () => {
// Extract base64 content from reader result
const base64Content = reader.result as string;
// Remove the data URL prefix (e.g., "data:image/png;base64,")
const base64Data = base64Content.split(",")[1] || base64Content;
resolve({ name: file.name, content: base64Data, type: file.type });
};
reader.onerror = reject;
reader.readAsDataURL(file);
}
);
})
);
};
|