12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import { t, publicProcedure, router } from "./trpc";
- import { z } from "zod";
- export const appRouter = router({
- ping: publicProcedure.query(async () => {
- return { hello: "world" };
- }),
- org: {
- bySlug: publicProcedure
- .input(z.object({ mode: z.string() }))
- .query(async ({ input: { mode } }) => {
- if (!mode) return {mail: '', name: ''};
- const res = await fetch(
- "https://api.edu.cocorobo.cn/edu/admin/selectorganize",
- {
- method: "POST",
- body: JSON.stringify({ mode }),
- headers: {
- "Content-Type": "application/json",
- },
- }
- );
- const resJson = await res.json();
- const { mail, name } = resJson?.[0]?.[0];
- return { mail, name };
- }),
- },
- flowModel: {
- list: publicProcedure
- .input(
- z.object({
- userId: z.string(),
- })
- )
- .query(async (opts) => {
- return {
- greeting: `hello ${opts.input.userId}`,
- };
- }),
- },
- // ...
- });
- // Export type router type signature,
- // NOT the router itself.
- export type AppRouter = typeof appRouter;
|