-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsrpcclient.html
288 lines (161 loc) · 6.99 KB
/
jsrpcclient.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>IPFS API</title>
<style type="text/css">
.grid {
display : grid;
grid-gap: 10px;
grid-template-columns: 1fr;
grid-template-rows: 4fr 1fr 1fr;
grid-template-areas:
"load"
"result"
"source";
min-height: 680px;
max-height: 680px;
background-color: white;
}
header {
background-color: #e6ecef;
grid-area : haut;
border-radius: 5px;
padding: 10px;
}
nav {
background-color: #e6ecef;
grid-area : navi;
border-radius: 5px;
padding: 10px;
overflow: scroll;
}
.load {
background-color: grey;
grid-area: load;
border-radius: 5px;
padding: 10px;
font-size: 1.3em;
}
.result {
background-color: grey;
grid-area: result;
border-radius: 5px;
padding: 10px;
overflow: scroll;
height: 300px;
}
.source {
background-color: grey;
grid-area: source;
border-radius: 5px;
padding: 10px;
height: 50px;
padding-top:25px;
}
textarea {
position: relative;
width: 97%;
margin-left: 1%;
margin-right: 2%;
margin-top: 0%;
}
.thumb {
height: 75px;
border: 1px solid #000;
margin: 10px 5px 0 0;
}
</style>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/remarkable/1.7.1/remarkable.min.js"></script>
<script>
// Check for the various File API support.
if (window.File && window.FileReader && window.FileList && window.Blob) {
function rec_str() {
var result= document.fff.ttt.value;
var data = new FormData();
data.append('arg', result);
var xhr = new XMLHttpRequest();
xhr.open('POST', 'https://ipfs.oversas.org/api/v0/add', true);
xhr.onload = function () {
var json = JSON.parse(this.responseText);
var hash = json.Hash;
var text = "<div class='cadre'><p style='text-align:center;'>" + hash + "</p><p style='text-align:center;'><a href='https://oversas.org/ipfs/"+ hash + "'>Lien</a></p></div>"
document.getElementById('hash').innerHTML += text;
};
xhr.send(data);
};
function rec_md() {
var result= document.fff.ttt.value;
var md = new Remarkable();
md.set({
html: true,
breaks: true
});
var result = md.render(result)
var result = "<!doctype html><html><head><meta charset='utf-8'><title>Title</title><style> ol {list-style: outside decimal;} ul {list-style: outside disc;}li > p {margin-bottom: 12px;} li > ol, li > ul {margin-top: 12px !important; padding-left: 12px;} ol:last-child, ul:last-child {margin-bottom: 12px;} pre {white-space: pre-wrap; margin-bottom: 24px; overflow: hidden; padding: 3px; border-radius: 6px; background-color: #5a5a5a; border-color: #d9d9d9;} code {font-family: Arial, monospace; font-size: 1em; white-space: nowrap; padding: 1px; border-radius: 2px; background-color: #5a5a5a; color: #FAF0E6; font-weight: bold;} pre code {font-size: 10px; white-space: pre-wrap;} blockquote {border-left: 5px solid #5a5a5a; font-size: 90%; margin-left: 0; margin-right: auto; width: 97%; padding: 0 10px; background-color: rgba(51, 37, 15, 0.05); font-family: Times;} table {margin-left: auto; margin-right: auto; margin-bottom: 24px; border-bottom: 1px solid #ddd; border-right: 1px solid #ddd; border-spacing: 0;} table th {padding: 3px 10px; border-top: 1px solid #ddd; border-left: 1px solid #ddd;} table td {padding: 3px 10px; border-top: 1px solid #ddd; border-left: 1px solid #ddd;} img {border: none; display: block; margin: 0 auto; max-width: 100%;}</style></head><body>"+result+"</body></html>"
var data = new FormData();
data.append('arg', result);
var xhr = new XMLHttpRequest();
xhr.open('POST', 'https://ipfs.oversas.org/api/v0/add', true);
xhr.onload = function () {
var json = JSON.parse(this.responseText);
var hash = json.Hash;
var text = "<div class='cadre'><p style='text-align:center;'>" + hash + "</p><p style='text-align:center;'><a href='https://oversas.org/ipfs/"+ hash + "'>Lien</a></p></div>"
document.getElementById('hash').innerHTML += text;
};
xhr.send(data);
};
} else {
alert('The File APIs are not fully supported in this browser.');
}
</script>
</head>
<body>
<div class="grid">
<div class="load">
<h6 style= "text-align:center;">IPFS API</h6>
<form name='fff' accept-charset="ISO-8859-1">
<p><textarea name="ttt" id="ttt" rows="25" cols="150" wrap="virtual" placeholder="Écrivez ici."></textarea></p>
<div align=center><input type='button' onClick='rec_str()' value='Send txt'>
<span><input type='button' onClick='rec_md()' value='Send md'></span>
<span><input type="file" id="files" name="files[]" multiple /></span></div>
</form>
</div>
<div class="result" id='hash'></div>
<div class="source" align=center><a href="https://github.com/YannBouyeron/IPFS-API">Github</a></div>
<script>
function handleFileSelect(evt) {
var files = evt.target.files; // FileList object
// Loop through the FileList and render image files as thumbnails.
for (var i = 0, f; f = files[i]; i++) {
var reader = new FileReader();
// Closure to capture the file information.
reader.onload = (function(theFile) {
return function(e) {
// On ajoute la photo dans ipfs
var data = new FormData();
data.append('arg', theFile);
var xhr = new XMLHttpRequest();
xhr.open('POST', 'https://ipfs.oversas.org/api/v0/add', true);
xhr.onload = function () {
var json = JSON.parse(this.responseText);
var hash = json.Hash;
var text = '<p style= "text-align:center;">' + theFile.name + '</p><p style= "text-align:center;">' + hash + '</p><p style= "text-align:center;"><a href= "https://oversas.org/ipfs/'+ hash + '">Lien</a></p>' ;
var span = document.createElement('span');
span.innerHTML = ['<div class = "cadre"><p style= "text-align:center;" ><img class="thumb" src="', e.target.result,
'" title="', escape(theFile.name), '"/>', text, '</p></div>' ].join('');
document.getElementById('hash').insertBefore(span, null);
};
xhr.send(data);
};
})(f);
// Read in the image file as a data URL.
reader.readAsDataURL(f);
}
}
document.getElementById('files').addEventListener('change', handleFileSelect, false);
</script>
</div>
</body>
</html>