Reorder files
This commit is contained in:
parent
6e261b147d
commit
91f8150bf7
@ -21,6 +21,7 @@
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@hotwired/turbo": "^7.0.0-beta.3",
|
||||
"@koa/router": "^10.0.0",
|
||||
"nodemon": "^2.0.7",
|
||||
"sealious": "^0.13.4",
|
||||
"stimulus": "^2.0.0"
|
||||
|
@ -1,8 +1,10 @@
|
||||
export default function html(body: string): string {
|
||||
return /* HTML */ `<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script src="/dist/bundle.js"></script>
|
||||
</head>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
${body}
|
||||
<script src="/dist/bundle.js"></script>
|
||||
</html>`;
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
import _locreq from "locreq";
|
||||
import Sealious, { CollectionItem, Context, Middlewares } from "sealious";
|
||||
import Sealious from "sealious";
|
||||
import TheApp from "./app";
|
||||
import frame from "./frame";
|
||||
import html from "./html";
|
||||
import homepage from "./routes/homepage";
|
||||
import tasks from "./routes/tasks";
|
||||
const locreq = _locreq(__dirname);
|
||||
|
||||
declare module "koa" {
|
||||
@ -17,95 +17,7 @@ const app = new TheApp();
|
||||
app.start();
|
||||
|
||||
const router = app.HTTPServer.router;
|
||||
|
||||
function Task(task: CollectionItem<any>) {
|
||||
return frame(
|
||||
`task-${task.id}`,
|
||||
/* HTML */ `<li class="task">
|
||||
<input
|
||||
type="checkbox"
|
||||
data-controller="task"
|
||||
data-action="task#toggle"
|
||||
data-id="${task.id}"
|
||||
${task.get("done") ? "checked" : ""}
|
||||
/>
|
||||
${task.get("title")}
|
||||
<form
|
||||
method="DELETE"
|
||||
action="/task/${task.id}"
|
||||
data-turbo-frame="task-list"
|
||||
>
|
||||
<input class="delete-button" type="submit" value="🗑" />
|
||||
</form>
|
||||
</li>`
|
||||
);
|
||||
}
|
||||
|
||||
async function TaskList(context: Context) {
|
||||
const { items: tasks } = await app.collections.tasks.list(context).fetch();
|
||||
return frame(
|
||||
"task-list",
|
||||
/* HTML */ `
|
||||
<ul>
|
||||
${tasks.map(Task).join("\n")}
|
||||
</ul>
|
||||
`
|
||||
);
|
||||
}
|
||||
|
||||
function NewTask() {
|
||||
return frame(
|
||||
"new-task",
|
||||
/* HTML */ `<form
|
||||
method="POST"
|
||||
action="/new-task"
|
||||
data-turbo-frame="task-list"
|
||||
>
|
||||
<input
|
||||
id="new-task-title"
|
||||
type="text"
|
||||
placeholder="write an app"
|
||||
name="title"
|
||||
/>
|
||||
<input type="submit" value="Add" />
|
||||
</form>`
|
||||
);
|
||||
}
|
||||
|
||||
async function MainView(context: Context) {
|
||||
return html(/* HTML */ `<title>My ToDo App</title>
|
||||
<body>
|
||||
<h1>My ToDo App</h1>
|
||||
${await TaskList(context)} ${NewTask()}
|
||||
</body>`);
|
||||
}
|
||||
|
||||
router.get("/", Middlewares.extractContext(), async (ctx) => {
|
||||
ctx.body = await MainView(ctx.$context);
|
||||
});
|
||||
|
||||
router.post(
|
||||
"/new-task",
|
||||
Middlewares.extractContext(),
|
||||
Middlewares.parseBody(),
|
||||
async (ctx) => {
|
||||
await app.collections.tasks
|
||||
.make({
|
||||
title: ctx.$body.title as string,
|
||||
done: false,
|
||||
})
|
||||
.save(ctx.$context);
|
||||
ctx.body = await MainView(ctx.$context);
|
||||
}
|
||||
);
|
||||
|
||||
router.delete("/task/:task_id", Middlewares.extractContext(), async (ctx) => {
|
||||
const task = await app.collections.tasks.getByID(
|
||||
ctx.$context,
|
||||
ctx.params.task_id
|
||||
);
|
||||
await task.remove(ctx.$context);
|
||||
ctx.body = await MainView(ctx.$context);
|
||||
});
|
||||
router.use("/", homepage.routes());
|
||||
router.use("/tasks", tasks.routes());
|
||||
|
||||
app.HTTPServer.addStaticRoute("/", locreq.resolve("public"));
|
||||
|
20
src/back/routes/homepage.ts
Normal file
20
src/back/routes/homepage.ts
Normal file
@ -0,0 +1,20 @@
|
||||
import Router from "@koa/router";
|
||||
import { Context, Middlewares } from "sealious";
|
||||
import html from "../html";
|
||||
import { NewTask, TaskList } from "../views/tasks";
|
||||
|
||||
const router = new Router();
|
||||
|
||||
export async function MainView(context: Context) {
|
||||
return html(/* HTML */ `<title>My ToDo App</title>
|
||||
<body>
|
||||
<h1>My ToDo App</h1>
|
||||
${await TaskList(context)} ${NewTask()}
|
||||
</body>`);
|
||||
}
|
||||
|
||||
router.get("/", Middlewares.extractContext(), async (ctx) => {
|
||||
ctx.body = await MainView(ctx.$context);
|
||||
});
|
||||
|
||||
export default router;
|
31
src/back/routes/tasks.ts
Normal file
31
src/back/routes/tasks.ts
Normal file
@ -0,0 +1,31 @@
|
||||
import Router from "@koa/router";
|
||||
import { Middlewares } from "sealious";
|
||||
import { MainView } from "./homepage";
|
||||
|
||||
const router = new Router();
|
||||
|
||||
router.post(
|
||||
"/",
|
||||
Middlewares.extractContext(),
|
||||
Middlewares.parseBody(),
|
||||
async (ctx) => {
|
||||
await ctx.$app.collections.tasks
|
||||
.make({
|
||||
title: ctx.$body.title as string,
|
||||
done: false,
|
||||
})
|
||||
.save(ctx.$context);
|
||||
ctx.body = await MainView(ctx.$context);
|
||||
}
|
||||
);
|
||||
|
||||
router.delete("/:task_id", Middlewares.extractContext(), async (ctx) => {
|
||||
const task = await ctx.$app.collections.tasks.getByID(
|
||||
ctx.$context,
|
||||
ctx.params.task_id
|
||||
);
|
||||
await task.remove(ctx.$context);
|
||||
ctx.body = await MainView(ctx.$context);
|
||||
});
|
||||
|
||||
export default router;
|
58
src/back/views/tasks.ts
Normal file
58
src/back/views/tasks.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { CollectionItem, Context } from "sealious";
|
||||
import frame from "../frame";
|
||||
|
||||
export function Task(task: CollectionItem<any>) {
|
||||
return frame(
|
||||
`task-${task.id}`,
|
||||
/* HTML */ `<li class="task">
|
||||
<input
|
||||
type="checkbox"
|
||||
data-controller="task"
|
||||
data-action="task#toggle"
|
||||
data-id="${task.id}"
|
||||
${task.get("done") ? "checked" : ""}
|
||||
/>
|
||||
${task.get("title")}
|
||||
<form
|
||||
method="DELETE"
|
||||
action="/tasks/${task.id}"
|
||||
data-turbo-frame="task-list"
|
||||
>
|
||||
<input class="delete-button" type="submit" value="🗑" />
|
||||
</form>
|
||||
</li>`
|
||||
);
|
||||
}
|
||||
|
||||
export async function TaskList(context: Context) {
|
||||
const { items: tasks } = await context.app.collections.tasks
|
||||
.list(context)
|
||||
.fetch();
|
||||
return frame(
|
||||
"task-list",
|
||||
/* HTML */ `
|
||||
<ul>
|
||||
${tasks.map(Task).join("\n")}
|
||||
</ul>
|
||||
`
|
||||
);
|
||||
}
|
||||
|
||||
export function NewTask() {
|
||||
return frame(
|
||||
"new-task",
|
||||
/* HTML */ `<form
|
||||
method="POST"
|
||||
action="/tasks"
|
||||
data-turbo-frame="task-list"
|
||||
>
|
||||
<input
|
||||
id="new-task-title"
|
||||
type="text"
|
||||
placeholder="write an app"
|
||||
name="title"
|
||||
/>
|
||||
<input type="submit" value="Add" />
|
||||
</form>`
|
||||
);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user