mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-23 15:19:41 +02:00
feat: Migrate to Nuxt 3 framework (#5184)
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
This commit is contained in:
parent
89ab7fac25
commit
c24d532608
403 changed files with 23959 additions and 19557 deletions
|
@ -1,6 +1,6 @@
|
|||
import { Recipe } from "../types/recipe";
|
||||
import { ApiRequestInstance, PaginationData } from "~/lib/api/types/non-generated";
|
||||
import { QueryValue, route } from "~/lib/api/base/route";
|
||||
import type { Recipe } from "../types/recipe";
|
||||
import type { ApiRequestInstance, PaginationData } from "~/lib/api/types/non-generated";
|
||||
import { type QueryValue, route } from "~/lib/api/base/route";
|
||||
|
||||
export interface CrudAPIInterface {
|
||||
requests: ApiRequestInstance;
|
||||
|
@ -23,8 +23,26 @@ export abstract class BaseAPI {
|
|||
export abstract class BaseCRUDAPIReadOnly<ReadType>
|
||||
extends BaseAPI
|
||||
implements CrudAPIInterface {
|
||||
abstract baseRoute: (string);
|
||||
abstract itemRoute(itemId: string | number): string;
|
||||
public baseRoute: string;
|
||||
public itemRouteFn: (itemId: string | number) => string;
|
||||
|
||||
constructor(
|
||||
requests: ApiRequestInstance,
|
||||
baseRoute: string,
|
||||
itemRoute: (itemId: string | number) => string,
|
||||
) {
|
||||
super(requests);
|
||||
this.baseRoute = baseRoute;
|
||||
this.itemRouteFn = itemRoute;
|
||||
}
|
||||
|
||||
get baseRouteValue() {
|
||||
return this.baseRoute;
|
||||
}
|
||||
|
||||
itemRoute(itemId: string | number): string {
|
||||
return this.itemRouteFn(itemId);
|
||||
}
|
||||
|
||||
async getAll(page = 1, perPage = -1, params = {} as Record<string, QueryValue>) {
|
||||
params = Object.fromEntries(Object.entries(params).filter(([_, v]) => v !== null && v !== undefined));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue