codelilac
codelilac
Explore posts from servers
CC#
Created by codelilac on 3/19/2025 in #help
What blazor template do I start from...
I templated out Blazor Server - and noticed after updating to .net 9 that MS no longer even offers that template anymore when spinning up projects in VS2022... Is going the signalR route for intranet apps (These are purely just CRUD apps for our internal databases) a bad call if it seems like MS moving to kill it already? If so, wtf do I use? Selecting the Blazor Webapp starter I am greeted with the option to do Server, Client or Auto interactive rendering. I don't want to sell my team on something if it's look obsolete already, basically.
2 replies
TTCTheo's Typesafe Cult
Created by codelilac on 2/26/2025 in #questions
Better auth for a swift app with a hono backend - pain & suffering or a good idea?
Hi everyone, I'm not going to feign expertise - I am building my first real full application for iOS and MacOS in Swift - I am doing this in Swift with Swift UI. I have aspirations to eventually get the app to be fully cross platform, so I have opted to create the backend for the application in Hono/TS rather than lock in with with a backend as a service. After a lot of agony I think I am leaning towards better auth but do want to maybe get some feedback from the community... Is this a good call over rolling something like Supabase that has a dedicated iOS/MacOS SDK for Auth? How hard of a time will I have? Admittedly, we use Entra ID at work for sign-in and our apps just redirect to microsoft for the privilege. My auth experience is very limited, so I know for a fact I don't want to roll my own, and this seems like a better option. I just wonder how much extra work I'm signing up for by not having a dedicated Swift client.
4 replies
DTDrizzle Team
Created by codelilac on 6/24/2024 in #help
Struggling to use Zod with Drizzle... Type errors around |undefined
import { serial, text, timestamp, pgTable } from "drizzle-orm/pg-core";
import { createInsertSchema, createSelectSchema } from "drizzle-zod";
import { z } from "zod";

export const users = pgTable("users", {
id: serial("id"),
name: text("name"),
email: text("email"),
password: text("password"),
role: text("role").$type<"admin" | "user">(),
createdAt: timestamp("created_at"),
updatedAt: timestamp("updated_at"),
});

export const insertUserSchema = createInsertSchema(users, {
role: z.enum(["admin", "user"])
});
//This is supposed to be what we get from the POST request, it omits ID and createdAt/updatedAt fields
export const apiInsertUserSchema = insertUserSchema.omit({ id: true, createdAt: true, updatedAt: true });

export const selectUserSchema = createSelectSchema(users);
import { serial, text, timestamp, pgTable } from "drizzle-orm/pg-core";
import { createInsertSchema, createSelectSchema } from "drizzle-zod";
import { z } from "zod";

export const users = pgTable("users", {
id: serial("id"),
name: text("name"),
email: text("email"),
password: text("password"),
role: text("role").$type<"admin" | "user">(),
createdAt: timestamp("created_at"),
updatedAt: timestamp("updated_at"),
});

export const insertUserSchema = createInsertSchema(users, {
role: z.enum(["admin", "user"])
});
//This is supposed to be what we get from the POST request, it omits ID and createdAt/updatedAt fields
export const apiInsertUserSchema = insertUserSchema.omit({ id: true, createdAt: true, updatedAt: true });

export const selectUserSchema = createSelectSchema(users);
import type { FastifyInstance } from "fastify";
// Import drizzle schema
import { users, insertUserSchema, apiInsertUserSchema } from "@api/db/schemas";
import { db } from "@api/db";
import { Logger } from "@api/utils";



export const testRoutes = (fastify: FastifyInstance, _: unknown, done: () => void) => {
fastify.get("/", async (request, response) => {
const vists = 0;
console.log(request);
response.send({
hello: "world",
vists,
});
});

fastify.get("/users", async (request, response) => {
const allUsers = await db.select().from(users);
console.log(users);
response.send(allUsers);
});

fastify.post("/users", async (request, response) => {
console.log(request);
try {
let parsedRequest = apiInsertUserSchema.parse(request.body);
console.log("request body: ", request.body);
console.log("parsed request: ", parsedRequest);
await db.insert(users).values(parsedRequest);
} catch (error) {
console.log(error);
Logger.error("POST /users", `${error}`);
response.status(400).send({ error: "Invalid request body" });
}

});
import type { FastifyInstance } from "fastify";
// Import drizzle schema
import { users, insertUserSchema, apiInsertUserSchema } from "@api/db/schemas";
import { db } from "@api/db";
import { Logger } from "@api/utils";



export const testRoutes = (fastify: FastifyInstance, _: unknown, done: () => void) => {
fastify.get("/", async (request, response) => {
const vists = 0;
console.log(request);
response.send({
hello: "world",
vists,
});
});

fastify.get("/users", async (request, response) => {
const allUsers = await db.select().from(users);
console.log(users);
response.send(allUsers);
});

fastify.post("/users", async (request, response) => {
console.log(request);
try {
let parsedRequest = apiInsertUserSchema.parse(request.body);
console.log("request body: ", request.body);
console.log("parsed request: ", parsedRequest);
await db.insert(users).values(parsedRequest);
} catch (error) {
console.log(error);
Logger.error("POST /users", `${error}`);
response.status(400).send({ error: "Invalid request body" });
}

});
I'm attemping to perform validation and inserting with Zod... however, I'm getting errors around the fact the generated schema includes |undefined in each of the rows... Is there a way around this? Sorry for the noob question.
8 replies