mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
rewrite get_all routes to use a pagination pattern to allow for better implementations of search, filter, and sorting on the frontend or by any client without fetching all the data. Additionally we added a CI check for running the Nuxt built to confirm that no TS errors were present. Finally, I had to remove the header support for the Shopping lists as the browser caching based off last_updated header was not allowing it to read recent updates due to how we're handling the updated_at property in the database with nested fields. This will have to be looked at in the future to reimplement. I'm unsure how many other routes have a similar issue. Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
24 lines
658 B
TypeScript
24 lines
658 B
TypeScript
import { AxiosResponse } from "axios";
|
|
|
|
export interface RequestResponse<T> {
|
|
response: AxiosResponse<T> | null;
|
|
data: T | null;
|
|
error: any;
|
|
}
|
|
|
|
export interface ApiRequestInstance {
|
|
get<T>(url: string, data?: unknown): Promise<RequestResponse<T>>;
|
|
post<T>(url: string, data: unknown): Promise<RequestResponse<T>>;
|
|
put<T, U = T>(url: string, data: U): Promise<RequestResponse<T>>;
|
|
patch<T, U = Partial<T>>(url: string, data: U): Promise<RequestResponse<T>>;
|
|
delete<T>(url: string): Promise<RequestResponse<T>>;
|
|
}
|
|
|
|
export interface PaginationData<T> {
|
|
page: number;
|
|
per_page: number;
|
|
total: number;
|
|
total_pages: number;
|
|
items: T[];
|
|
}
|