Page MenuHomeSealhub

sortable.page.tsx
No OneTemporary

sortable.page.tsx

import type { Context } from "koa";
import { TempstreamJSX } from "tempstream";
import { Page } from "@sealcode/sealgen";
import html from "../../html.js";
import { sortable } from "../common/sortable/sortable.js";
export const actionName = "SortableDemo";
export default new (class SortableDemoPage extends Page {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
async canAccess(_: Context) {
return { canAccess: true, message: "" };
}
async render(ctx: Context) {
return html({
ctx,
title: "SortableDemo",
description: "",
body: (
<div>
<h2>Short list</h2>
{sortable({
items: ["One", "Two", "Three", "Four", "Five"].map((e) => (
<div>{e}</div>
)),
})}
<h2>Long list</h2>
{sortable({
items: "a"
.repeat(100)
.split("")
.map((_, index) => <div>{index}</div>),
})}
</div>
),
});
}
})();

File Metadata

Mime Type
text/x-java
Expires
Thu, Jul 3, 21:30 (9 h, 1 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
799721
Default Alt Text
sortable.page.tsx (913 B)

Event Timeline