Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • fcos-suite/fcos-suite-map
1 result
Show changes
export function removeDuplicateObjects<T>(arr: T[], key: keyof T): T[] {
const tagMap = new Map(arr.map((item: T) => [item[key], item]));
return [...tagMap.values()];
}
export function generateRandomHslColor(saturation = 100, lightness = 50, distinctValues = 20): string {
const randomColorIndex = getRandomIntInclusive(0, distinctValues);
const color = `hsl(${Math.floor(randomColorIndex * (360 / distinctValues))},${saturation}%,${lightness}%)`;
return color;
}
function getRandomIntInclusive(min: number, max: number) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1) + min);
}
import { request } from 'graphql-request';
import type { Variables } from 'graphql-request/dist/types';
const fetcher = (query: string, variables?: Object) =>
const fetcher = <T, V extends Variables>(query: string, variables?: V): Promise<T> =>
request(import.meta.env.SNOWPACK_PUBLIC_API_URL, query, variables);
export default fetcher;
export const validateFile = (
file: File,
allowedSize = 5000000,
allowedExtensions = ['jpg', 'jpeg', 'png'],
): boolean => {
const { name: fileName, size: fileSize } = file;
const fileExtension = fileName.split('.').pop();
if (fileExtension && !allowedExtensions.includes(fileExtension.toLowerCase())) {
return false;
} else if (fileSize > allowedSize) {
return false;
}
return true;
};
......@@ -8,5 +8,9 @@ module.exports = {
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms')],
plugins: [
require('@tailwindcss/forms')({
strategy: 'class',
}),
],
};