-
🌐 admin_panel.phpWeb, 1.54 kB⬇
-
🌐 api.jsWeb, 5.89 kB⬇
-
🌐 api.phpWeb, 6.54 kB⬇
-
🌐 app.jsWeb, 84.72 kB⬇
-
🌐 base.cssWeb, 2.23 kB⬇
-
🌐 context.jsWeb, 9.37 kB⬇
-
🌐 conversation-index.jsWeb, 10.19 kB⬇
-
🌐 conversation.jsWeb, 16.61 kB⬇
-
🌐 conversations.jsWeb, 15.16 kB⬇
-
🌐 diction.jsWeb, 935 B⬇
-
🌐 document.jsWeb, 947 B⬇
-
🌐 dynamic.phpWeb, 430 B⬇
-
📷 favicon-lg.pngImage, 9.11 kB⬇
-
📷 favicon.pngImage, 3.12 kB⬇
-
🌐 index.phpWeb, 17.38 kB⬇
-
🌐 indexjs.jsWeb, 572 B⬇
-
🌐 login.phpWeb, 767 B⬇
-
❓ manifest.webmanifestUnknown, 262 B⬇
-
🌐 memory.jsWeb, 407 B⬇
-
🌐 models.jsonWeb, 4.27 kB⬇
-
🌐 notebook-index.jsWeb, 721 B⬇
-
⚠️ php.iniOS File, 356 B⬇
-
🌐 scratchpad-conversation.jsWeb, 2.09 kB⬇
-
🌐 scratchpad-index.jsWeb, 10.19 kB⬇
-
🌐 storage.jsWeb, 15.25 kB⬇
-
🌐 style.cssWeb, 20.81 kB⬇
-
🌐 theme_dark.jsonWeb, 266 B⬇
-
🌐 theme_light.jsonWeb, 267 B⬇
-
🌐 users.jsWeb, 18.18 kB⬇
/**
* Class NotebookIndex
* Represents the view for a notebook, displaying a placeholder message.
*/
class NotebookIndex {
#storage;
#app_callbacks;
/**
* Initializes the NotebookIndex manager instance.
* @param {Storage|null} [storage=null] - Storage manager instance.
* @param {object|null} [app_callbacks=null] - Application callback methods.
*/
constructor(storage = null, app_callbacks = null) {
this.#storage = storage;
this.#app_callbacks = app_callbacks;
}
/**
* Renders the notebook index view.
* @param {HTMLElement|null} div_main - The main container element.
*/
render(div_main) {
if (div_main) {
div_main.innerHTML = 'documents...';
}
}
}
export default NotebookIndex;
notebook-index.js
×
Type: Web, text/plain
721 Bytes
Last Modified 2026-09-04 14:24:03
⬇ Download File
Type: Web, text/plain
721 Bytes
Last Modified 2026-09-04 14:24:03
⬇ Download File