1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 21:20:45 +00:00
falk-werner_webfuse-provider/example/daemon/www/js/startup.js
2019-03-26 23:04:53 +01:00

26 lines
814 B
JavaScript

import { Client } from "./webfuse/client.js";
import { ConnectionView } from "./connection_view.js";
import { FileSystemProvider } from "./filesystem_provider.js";
function mode(value) {
return parseInt(value, 8);
}
function startup() {
const provider = new FileSystemProvider({
inode: 1,
mode: mode("0755"),
type: "dir",
entries: {
"hello.txt" : { inode: 2, mode: mode("0444"), type: "file", contents: "Hello, World!"},
"say_hello.sh": { inode: 3, mode: mode("0555"), type: "file", contents: "#!/bin/sh\necho hello\n"}
}
});
const client = new Client(provider);
const connectionView = new ConnectionView(client);
document.getElementById('connection').appendChild(connectionView.element);
}
window.onload = startup;