mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-19 07:02:00 +03:00
62 lines
1.5 KiB
JavaScript
62 lines
1.5 KiB
JavaScript
import HttpError from '@wasp/core/HttpError.js'
|
|
import { createNewUser } from '@wasp/core/auth.js'
|
|
|
|
export const signUp = async (args, context) => {
|
|
await createNewUser({ email: args.email, password: args.password })
|
|
}
|
|
|
|
export const createTask = async (task, context) => {
|
|
if (!context.user) {
|
|
throw new HttpError(403)
|
|
}
|
|
|
|
const Task = context.entities.Task
|
|
return Task.create({
|
|
data: {
|
|
description: task.description,
|
|
user: {
|
|
connect: { id: context.user.id }
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
export const updateTaskIsDone = async ({ taskId, newIsDoneVal }, context) => {
|
|
if (!context.user) {
|
|
throw new HttpError(403)
|
|
}
|
|
|
|
const Task = context.entities.Task
|
|
return Task.updateMany({
|
|
where: { id: taskId, user: { id: context.user.id } },
|
|
data: { isDone: newIsDoneVal }
|
|
})
|
|
}
|
|
|
|
export const deleteCompletedTasks = async (args, context) => {
|
|
if (!context.user) {
|
|
throw new HttpError(403)
|
|
}
|
|
|
|
const Task = context.entities.Task
|
|
await Task.deleteMany({
|
|
where: { isDone: true, user: { id: context.user.id } }
|
|
})
|
|
}
|
|
|
|
export const toggleAllTasks = async (args, context) => {
|
|
if (!context.user) {
|
|
throw new HttpError(403)
|
|
}
|
|
|
|
const whereIsDone = isDone => ({ isDone, user: { id: context.user.id } })
|
|
const Task = context.entities.Task
|
|
const notDoneTasksCount = await Task.count({ where: whereIsDone(false) })
|
|
|
|
if (notDoneTasksCount > 0) {
|
|
await Task.updateMany({ where: whereIsDone(false), data: { isDone: true } })
|
|
} else {
|
|
await Task.updateMany({ where: whereIsDone(true), data: { isDone: false } })
|
|
}
|
|
}
|