router.ts 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import { t, publicProcedure, router } from "./trpc";
  2. import { z } from "zod";
  3. export const appRouter = router({
  4. ping: publicProcedure.query(async () => {
  5. return { hello: "world" };
  6. }),
  7. org: {
  8. bySlug: publicProcedure
  9. .input(z.object({ mode: z.string() }))
  10. .query(async ({ input: { mode } }) => {
  11. if (!mode) return {mail: '', name: ''};
  12. const res = await fetch(
  13. "https://api.edu.cocorobo.cn/edu/admin/selectorganize",
  14. {
  15. method: "POST",
  16. body: JSON.stringify({ mode }),
  17. headers: {
  18. "Content-Type": "application/json",
  19. },
  20. }
  21. );
  22. const resJson = await res.json();
  23. const { mail, name } = resJson?.[0]?.[0];
  24. return { mail, name };
  25. }),
  26. },
  27. flowModel: {
  28. list: publicProcedure
  29. .input(
  30. z.object({
  31. userId: z.string(),
  32. })
  33. )
  34. .query(async (opts) => {
  35. return {
  36. greeting: `hello ${opts.input.userId}`,
  37. };
  38. }),
  39. },
  40. // ...
  41. });
  42. // Export type router type signature,
  43. // NOT the router itself.
  44. export type AppRouter = typeof appRouter;