2022-02-06 22:07:18 +03:00
|
|
|
import { useParams, useLocation, useNavigate } from 'react-router-dom';
|
2021-11-09 01:23:45 +03:00
|
|
|
import { useMemo } from 'react';
|
2021-12-25 21:51:25 +03:00
|
|
|
import { isEmpty, pipe } from 'ramda';
|
2021-11-09 01:23:45 +03:00
|
|
|
import { parseQuery, stringifyQuery } from '../../utils/helpers/query';
|
2021-12-25 21:51:25 +03:00
|
|
|
import { ShortUrlsOrder, ShortUrlsOrderableFields } from '../data';
|
|
|
|
import { orderToString, stringToOrder } from '../../utils/helpers/ordering';
|
2022-01-31 12:15:25 +03:00
|
|
|
import { TagsFilteringMode } from '../../api/types';
|
2021-11-09 01:23:45 +03:00
|
|
|
|
2021-12-25 21:51:25 +03:00
|
|
|
interface ShortUrlsQueryCommon {
|
2021-11-09 01:23:45 +03:00
|
|
|
search?: string;
|
2021-11-11 00:25:56 +03:00
|
|
|
startDate?: string;
|
|
|
|
endDate?: string;
|
2022-01-31 12:15:25 +03:00
|
|
|
tagsMode?: TagsFilteringMode;
|
2021-11-09 01:23:45 +03:00
|
|
|
}
|
|
|
|
|
2021-12-25 21:51:25 +03:00
|
|
|
interface ShortUrlsQuery extends ShortUrlsQueryCommon {
|
|
|
|
orderBy?: string;
|
2022-03-13 13:14:30 +03:00
|
|
|
tags?: string;
|
2021-12-25 21:51:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
interface ShortUrlsFiltering extends ShortUrlsQueryCommon {
|
|
|
|
orderBy?: ShortUrlsOrder;
|
2022-03-13 13:14:30 +03:00
|
|
|
tags: string[];
|
2021-12-25 21:51:25 +03:00
|
|
|
}
|
|
|
|
|
2022-11-26 11:11:46 +03:00
|
|
|
type ToFirstPage = (extra: Partial<ShortUrlsFiltering>) => void;
|
|
|
|
|
2022-02-06 22:07:18 +03:00
|
|
|
export const useShortUrlsQuery = (): [ShortUrlsFiltering, ToFirstPage] => {
|
|
|
|
const navigate = useNavigate();
|
2022-11-26 11:11:46 +03:00
|
|
|
const { search } = useLocation();
|
|
|
|
const { serverId = '' } = useParams<{ serverId: string }>();
|
2022-02-06 22:07:18 +03:00
|
|
|
|
2022-11-26 11:11:46 +03:00
|
|
|
const filtering = useMemo(
|
2021-12-25 21:51:25 +03:00
|
|
|
pipe(
|
2022-11-26 11:11:46 +03:00
|
|
|
() => parseQuery<ShortUrlsQuery>(search),
|
2022-03-13 13:14:30 +03:00
|
|
|
({ orderBy, tags, ...rest }: ShortUrlsQuery): ShortUrlsFiltering => {
|
|
|
|
const parsedOrderBy = orderBy ? stringToOrder<ShortUrlsOrderableFields>(orderBy) : undefined;
|
|
|
|
const parsedTags = tags?.split(',') ?? [];
|
|
|
|
return { ...rest, orderBy: parsedOrderBy, tags: parsedTags };
|
2021-12-25 21:51:25 +03:00
|
|
|
},
|
|
|
|
),
|
2022-11-26 11:11:46 +03:00
|
|
|
[search],
|
2021-12-25 21:51:25 +03:00
|
|
|
);
|
|
|
|
const toFirstPageWithExtra = (extra: Partial<ShortUrlsFiltering>) => {
|
2022-11-26 11:11:46 +03:00
|
|
|
const { orderBy, tags, ...mergedFiltering } = { ...filtering, ...extra };
|
|
|
|
const query: ShortUrlsQuery = {
|
|
|
|
...mergedFiltering,
|
2022-03-13 13:14:30 +03:00
|
|
|
orderBy: orderBy && orderToString(orderBy),
|
|
|
|
tags: tags.length > 0 ? tags.join(',') : undefined,
|
|
|
|
};
|
2022-11-26 11:11:46 +03:00
|
|
|
const stringifiedQuery = stringifyQuery(query);
|
|
|
|
const queryString = isEmpty(stringifiedQuery) ? '' : `?${stringifiedQuery}`;
|
2021-11-09 01:23:45 +03:00
|
|
|
|
2022-11-26 11:11:46 +03:00
|
|
|
navigate(`/server/${serverId}/list-short-urls/1${queryString}`);
|
2021-11-09 01:23:45 +03:00
|
|
|
};
|
|
|
|
|
2022-11-26 11:11:46 +03:00
|
|
|
return [filtering, toFirstPageWithExtra];
|
2021-11-09 01:23:45 +03:00
|
|
|
};
|