diff --git a/index.html b/index.html index e5af892..25d68d2 100644 --- a/index.html +++ b/index.html @@ -102,6 +102,7 @@
+ Open Notes Workspace Open Legacy Notes Open Tasks View
diff --git a/notes-workspace.html b/notes-workspace.html new file mode 100644 index 0000000..0a57277 --- /dev/null +++ b/notes-workspace.html @@ -0,0 +1,599 @@ + + + + + + Prism Notes Workspace + + + + + +
+
+
+
+ Prism Notes +
+

Prism Notes

+

Notes Workspace

+
+
+ +
+

Modern workspace for core old app note functions: create, list, filter, edit, hide/unhide, share, and soft delete.

+
+ +
+
+

Server

+

Checking...

+
+
+

PocketBase User

+

Not logged in

+
+
+

Visible Notes

+

0

+
+
+ +
+
+

1) Prism Notes Login

+
+ + + +
+
+ +
+

2) Filters

+
+ + + + + + +
+
+ + +
+
+
+ +
+
+

3) New / Edit Note

+
+ +
+ + +
+ + +
+
+ + + + + +
+
+ +
+
+

4) Notes

+ No selection +
+
+
+
+ +
+

Output

+

+    
+
+ + + + diff --git a/notes.html b/notes.html index da12dc8..5a90270 100644 --- a/notes.html +++ b/notes.html @@ -369,6 +369,7 @@
Testing Harness Tasks + Notes Workspace Legacy Notes Workspace
diff --git a/server.ts b/server.ts index 96220b9..c1d4368 100644 --- a/server.ts +++ b/server.ts @@ -1090,6 +1090,11 @@ app.get('/notes', async (c) => { return c.html(html); }); +app.get('/notes-workspace', async (c) => { + const html = await Bun.file(new URL('./notes-workspace.html', import.meta.url)).text(); + return c.html(html); +}); + app.get('/tasks', async (c) => { const html = await Bun.file(new URL('./tasks.html', import.meta.url)).text(); return c.html(html); diff --git a/tasks.html b/tasks.html index 74921e3..4ecb0c9 100644 --- a/tasks.html +++ b/tasks.html @@ -99,6 +99,7 @@
+ Open Notes Workspace Open Legacy Notes Back to Testing View