blob: 3376b4fa2485cb54ec2775fb1be7f848d08601ce (
plain) (
blame)
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
102
103
104
|
<!-- from https://cristobal.space/note -->
<head>
<meta charset="UTF-8">
<style>
body {
font-family: monospace;
width: 400px;
}
img {
max-width: 600px;
width: 100%;
margin: 12px 0px;
}
#drop {
width: 400px;
height: 100px;
border: 1px dashed black;
border-radius: 4px;
margin-bottom: 12px;
display: flex;
justify-content: center;
align-items: center;
}
#text {
width: 400px;
height: 100px;
border-radius: 4px;
resize: none;
margin-bottom: 12px;
padding: 6px;
}
#content {
margin-top: 12px;
}
</style>
</head>
<body><textarea id="text">Write HTML...</textarea>
<div id="drop"><i>DROP IMAGES</i></div>
<button onclick="append()"><i>APPEND</i></button>
<button onclick="fork()"><i>FORK</i></button>
<button onclick="publish()"><i>PUBLISH</i></button>
<div id="content">
</div>
<script>
const noop = e => {
e.preventDefault();
e.stopPropagation();
}
const toBase64 = blob => new Promise(resolve => {
const reader = new FileReader();
reader.onloadend = () => resolve(reader.result);
reader.readAsDataURL(blob);
})
const content = document.getElementById("content");
const textArea = document.getElementById("text");
const dropArea = document.getElementById("drop");
dropArea.addEventListener("dragenter", e => {
noop(e);
dropArea.style.border = "1px dotted black";
})
dropArea.addEventListener("drop", async e => {
noop(e);
dropArea.style.border = "1px dashed black";
const img = document.createElement("img");
const f = e.dataTransfer.files[0];
const b64 = await toBase64(f);
img.src = b64;
content.appendChild(img);
})
dropArea.addEventListener("dragover", noop);
dropArea.addEventListener("dragexit", noop);
const append = () => {
content.innerHTML += textArea.value;
}
const download = (html) => {
// Write data into self-contained html file
const data = new Blob([html], {type: 'text/plain'});
// Download the file
const url = window.URL.createObjectURL(data);
const a = document.createElement("a");
a.href = url;
a.download = "note.html";
a.click();
}
const fork = () => download(document.documentElement.innerHTML);
const publish = () => download(content.innerHTML);
</script>
</body>
|