32
packages/api/src/router/icons.ts
Normal file
32
packages/api/src/router/icons.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
import { count, like } from "@homarr/db";
|
||||
import { icons } from "@homarr/db/schema/sqlite";
|
||||
import { validation } from "@homarr/validation";
|
||||
|
||||
import { createTRPCRouter, publicProcedure } from "../trpc";
|
||||
|
||||
export const iconsRouter = createTRPCRouter({
|
||||
findIcons: publicProcedure
|
||||
.input(validation.icons.findIcons)
|
||||
.query(async ({ ctx, input }) => {
|
||||
return {
|
||||
icons: await ctx.db.query.iconRepositories.findMany({
|
||||
with: {
|
||||
icons: {
|
||||
columns: {
|
||||
id: true,
|
||||
name: true,
|
||||
url: true,
|
||||
},
|
||||
where:
|
||||
input.searchText?.length ?? 0 > 0
|
||||
? like(icons.name, `%${input.searchText}%`)
|
||||
: undefined,
|
||||
limit: 5,
|
||||
},
|
||||
},
|
||||
}),
|
||||
countIcons:
|
||||
(await ctx.db.select({ count: count() }).from(icons))[0]?.count ?? 0,
|
||||
};
|
||||
}),
|
||||
});
|
||||
Reference in New Issue
Block a user