-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
101 lines (94 loc) · 3.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<style>
html {
font-family: "Roboto", sans-serif;
}
body {
background: #fafafa;
}
html,
body {
height: 100%;
width: 100%;
margin: 0;
display: flex;
}
</style>
</head>
<body>
<file-storage-demo style="display: flex; flex: 1"></file-storage-demo>
<script type="module">
import "@shoelace-style/shoelace/dist/themes/light.css";
import { FileStorageClient, fileStorageClientContext } from "../src";
import "../src/elements/upload-files.ts";
import "../src/elements/show-image.ts";
import { css, html, LitElement } from "lit";
import { ContextProvider } from "@lit/context";
import { AppAgentWebsocket } from "@holochain/client";
import { onSubmit } from "@holochain-open-dev/elements";
customElements.define(
"file-storage-demo",
class extends LitElement {
static properties = {
hash: { type: Object },
loaded: { type: Boolean },
};
async firstUpdated() {
const hcclient = await AppAgentWebsocket.connect("", "");
const client = new FileStorageClient(
hcclient,
"file_storage_provider"
);
new ContextProvider(this, fileStorageClientContext, client);
this.loaded = true;
this.requestUpdate();
}
render() {
if (!this.loaded) return html`Loading...`;
return html`
<form ${onSubmit((data) => {
console.log(data);
this.shadowRoot.querySelector("form").reset();
})} style="display: flex; flex-direction: column; flex: 1">
<upload-files
id="uf"
.oneFile=${true}
required
name="file_hash"
style="max-width: 20px; max-height:20px"
@file-uploaded=${(e) => {
this.hash = e.detail.file.hash;
}}
></upload-files>
${
this.hash
? html`
<div
style="display: flex; flex-direction: row; flex: 1"
>
<show-image
.imageHash=${this.hash}
style="width: 500px; height: 500px"
></show-image>
<upload-files
.defaultValue=${this.hash}
style="flex: 1"
.oneFile=${true}
name="file_hash"
></upload-files>
</div>
`
: html``
}
<input type="submit"></input>
</form>
`;
}
}
);
</script>
</body>
</html>