mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-27 11:28:22 +03:00
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { isEmpty, isNil, pipe, range } from 'ramda';
|
|
import type { SyntheticEvent } from 'react';
|
|
|
|
type Optional<T> = T | null | undefined;
|
|
|
|
export type OptionalString = Optional<string>;
|
|
|
|
export const handleEventPreventingDefault = <T>(handler: () => T) => pipe(
|
|
(e: SyntheticEvent) => e.preventDefault(),
|
|
handler,
|
|
);
|
|
|
|
export const rangeOf = <T>(size: number, mappingFn: (value: number) => T, startAt = 1): T[] =>
|
|
range(startAt, size + 1).map(mappingFn);
|
|
|
|
export type Empty = null | undefined | '' | never[];
|
|
|
|
export const hasValue = <T>(value: T | Empty): value is T => !isNil(value) && !isEmpty(value);
|
|
|
|
export type Nullable<T> = {
|
|
[P in keyof T]: T[P] | null
|
|
};
|
|
|
|
export const nonEmptyValueOrNull = <T>(value: T): T | null => (isEmpty(value) ? null : value);
|
|
|
|
export type BooleanString = 'true' | 'false';
|
|
|
|
export const parseBooleanToString = (value: boolean): BooleanString => (value ? 'true' : 'false');
|
|
|
|
export const parseOptionalBooleanToString = (value?: boolean): BooleanString | undefined => (
|
|
value === undefined ? undefined : parseBooleanToString(value)
|
|
);
|