Patching some bugs.

This commit is contained in:
charles-gauthereau
2025-01-03 15:55:16 +01:00
parent be47e9e93d
commit b59a010425
6 changed files with 24 additions and 10 deletions
@@ -27,6 +27,7 @@ export default async function RoutePage(props: PageParams<{ slug:string, project
const project = await prisma.project.findUnique({
where: {
id: projectId,
isArchived: {not: true}
},
include:{
databases: {}
@@ -25,6 +25,8 @@ export default async function RoutePage(props: PageParams<{slug: string}>) {
const projects = await prisma.project.findMany({
where: {
isArchived: {not: true},
organization: {
slug: organizationSlug,
// users: {
+3 -1
View File
@@ -74,11 +74,13 @@ RUN adduser --system --uid 1001 nextjs
COPY --from=builder /app/public ./public
RUN mkdir .next
RUN mkdir -p /app/private/uploads
RUN chown -R nextjs:nodejs /app/private
RUN chown nextjs:nodejs .next
COPY --from=builder /app/next.config.mjs ./
COPY --from=builder /app/schema.zmodel ./
#COPY --from=builder /app/src/lib/hooks ./src/lib/hooks
COPY --from=builder /app/src/openapi.yaml ./src/
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
+7 -2
View File
@@ -1,9 +1,14 @@
#!/bin/bash
npx install --save-dev @zenstackhq/openapi
echo " ____ __ __ "
echo " / __ \____ _____/ /_____ _/ /_ ____ _________ "
echo " / /_/ / __ \/ ___/ __/ __ / __ \/ __ / ___/ _ \ "
echo " / ____/ /_/ / / / /_/ /_/ / /_/ / /_/ (__ ) __/ "
echo " /_/ \____/_/ \__/\__,_/_.___/\__,_/____/\___/ "
echo " "
echo " Community Edition "
npx zenstack generate
npx prisma migrate deploy
node server.js
@@ -16,10 +16,14 @@ export const ButtonDeleteProject = (props: ButtonDeleteProjectProps) => {
const router = useRouter()
const mutation = useMutation({
mutationFn: () => deleteProjectAction(props.projectId),
onSuccess: async (result) => {
router.push("/dashboard")
if(result.data.success) {
onSuccess: async (result: any) => {
console.log(result)
if(result.data?.success) {
toast.success(result.data.actionSuccess.message);
router.push("/")
}else{
toast.error(result.data.actionError.message || "Unknown error occurred.");
}
},
})
+4 -4
View File
@@ -6,11 +6,11 @@
//
// export const db = enhance(prisma, {user: user});
import { enhance } from "@zenstackhq/runtime";
import { prisma } from "@/prisma";
import {enhance} from "@zenstackhq/runtime";
import {prisma} from "@/prisma";
export const getDb = async () => {
const { currentUser } = await import("@/auth/current-user");
const {currentUser} = await import("@/auth/current-user");
const user = await currentUser();
return enhance(prisma, { user });
return enhance(prisma, {user});
};