wasp/waspc/examples/todoApp/todoApp.wasp

160 lines
3.6 KiB
JavaScript
Raw Normal View History

app todoApp {
wasp: {
version: "^0.6.0"
},
title: "ToDo App",
// head: [],
dependencies: [
("@tailwindcss/forms", "^0.5.3"),
("@tailwindcss/typography", "^0.5.7")
],
auth: {
2020-10-19 15:45:54 +03:00
userEntity: User,
// externalAuthEntity: SocialLogin,
methods: {
usernameAndPassword: {},
// google: {
// configFn: import { config } from "@ext/auth/google.js",
// getUserFieldsFn: import { getUserFields } from "@ext/auth/google.js"
// }
},
onAuthFailedRedirectTo: "/login",
onAuthSucceededRedirectTo: "/profile"
},
server: {
setupFn: import setup from "@ext/serverSetup.js"
},
client: {
setupFn: import setup from "@ext/clientSetup.js"
},
db: {
system: PostgreSQL
}
2020-10-19 15:45:54 +03:00
}
2020-10-21 17:37:20 +03:00
entity User {=psl
id Int @id @default(autoincrement())
username String @unique
password String
tasks Task[]
externalAuthAssociations SocialLogin[]
psl=}
entity SocialLogin {=psl
id Int @id @default(autoincrement())
provider String
providerId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
userId Int
createdAt DateTime @default(now())
@@unique([provider, providerId, userId])
psl=}
2020-10-21 17:37:20 +03:00
entity Task {=psl
id Int @id @default(autoincrement())
description String
isDone Boolean @default(false)
user User @relation(fields: [userId], references: [id])
userId Int
psl=}
route SignupRoute { path: "/signup", to: SignupPage }
page SignupPage {
component: import Signup from "@ext/pages/auth/Signup"
}
route LoginRoute { path: "/login", to: LoginPage }
page LoginPage {
component: import Login from "@ext/pages/auth/Login"
}
route HomeRoute { path: "/", to: MainPage }
page MainPage {
authRequired: true,
component: import Main from "@ext/pages/Main"
}
route AboutRoute { path: "/about", to: AboutPage }
page AboutPage {
component: import About from "@ext/pages/About"
}
route ProfileRoute { path: "/profile", to: ProfilePage }
page ProfilePage {
authRequired: true,
component: import { ProfilePage } from "@ext/pages/ProfilePage"
}
// Page for viewing a specific task
//
route TaskRoute { path: "/task/:id", to: TaskPage }
page TaskPage {
authRequired: true,
component: import Task from "@ext/pages/Task"
}
// --------- Queries --------- //
query getTasks {
fn: import { getTasks } from "@ext/queries.js",
entities: [Task]
}
2021-07-18 20:34:21 +03:00
query getNumTasks {
fn: import { getNumTasks } from "@ext/queries.js",
entities: [Task],
2021-07-18 20:34:21 +03:00
auth: false
}
query getTask {
2020-10-19 15:45:54 +03:00
fn: import { getTask } from "@ext/queries.js",
entities: [Task]
}
// --------- Actions --------- //
action createTask {
fn: import { createTask } from "@ext/actions.js",
entities: [Task]
}
action updateTaskIsDone {
fn: import { updateTaskIsDone } from "@ext/actions.js",
entities: [Task]
}
action deleteCompletedTasks {
fn: import { deleteCompletedTasks } from "@ext/actions.js",
entities: [Task]
}
action toggleAllTasks {
fn: import { toggleAllTasks } from "@ext/actions.js",
entities: [Task]
}
job mySpecialJob {
executor: PgBoss,
perform: {
fn: import { foo } from "@ext/jobs/bar.js",
executorOptions: {
pgBoss: {=json { "retryLimit": 1 } json=}
}
2022-08-17 20:53:05 +03:00
},
entities: [Task]
}
job mySpecialScheduledJob {
executor: PgBoss,
perform: {
fn: import { foo } from "@ext/jobs/bar.js"
},
schedule: {
cron: "0 * * * *",
args: {=json { "foo": "bar" } json=},
executorOptions: {
pgBoss: {=json { "retryLimit": 2 } json=}
}
}
}