scratch – Blame information for rev 91

Subversion Repositories:
Rev:
Rev Author Line No. Line
24 office 1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <meta name="viewport" content="width=device-width, initial-scale=1">
7 <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
8 <meta name="description" content="quick asset upload">
9 <meta name="author" content="Wizardry and Steamworks">
10 <link rel="icon" href="favicon.ico">
11  
64 office 12 <title>scratch</title>
24 office 13  
14 <!-- Bootstrap core CSS -->
58 office 15 <link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
65 office 16 <!-- Font Awesome -->
17 <link href="bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet">
24 office 18  
19 <!-- DropZone -->
58 office 20 <link href="bower_components/dropzone/dist/min/dropzone.min.css" rel="stylesheet">
71 office 21  
22 <!-- Site-wide style CCS -->
23 <link href="css/style.css" rel="stylesheet">
24  
24 office 25 <!-- Local style -->
26 <link href="css/files/style.css" rel="stylesheet">
27 </head>
28  
29 <body>
30  
71 office 31 <!-- Main component for a primary marketing message or call to action -->
32 <div class="paralax-background"></div>
33 <div class="jumbotron">
34 <h1>scratch copy</h1>
35 <p class="quote">the asset sharer</p>
36 </div>
37  
24 office 38 <div class="container">
39  
40 <ul class="nav nav-tabs">
41 <li><a href="index.html">Home</a></li>
56 office 42 <li class="active"><a href="#">File</a></li>
24 office 43 <li><a href="text.html">Text</a></li>
84 office 44 <li><a href="draw.html">Draw</a></li>
91 office 45 <li><a href="link.html">Link</a></li>
24 office 46 </ul>
47  
84 office 48 <div id="main-panel" class="panel panel-default">
24 office 49 <div class="panel-heading">
50 <div id="actions" class="row">
51 <div class="col-lg-5">
52 <div class="btn-group btn-group-justified" role="group">
53 <!-- The fileinput-button span is used to style the file input field as button -->
54 <div class="btn-group" role="group">
55 <button id="uploadbutton" type="button" class="btn btn-default">
56 <i class="glyphicon glyphicon-plus"></i>
57 <span>Add...</span>
58 </button>
59 </div>
60 <div class="btn-group" role="group">
61 <button type="submit" class="btn btn-default start">
62 <i class="glyphicon glyphicon-upload"></i>
57 office 63 <span>Upload All</span>
24 office 64 </button>
65 </div>
66 <div class="btn-group" role="group">
67 <button type="reset" class="btn btn-default cancel">
68 <i class="glyphicon glyphicon-ban-circle"></i>
57 office 69 <span>Cancel All</span>
24 office 70 </button>
71 </div>
72 </div>
73 </div>
74 </div>
75 </div>
76 <div class="panel-body" id="uploadpanel">
77 <div class="table table-striped files" id="previews">
78 <div id="template" class="file-row">
79 <!-- This is used as the file preview template -->
80 <div>
81 <span class="preview"><img src="img/fileholder.svg" width="58" alt="Upload file thumbnail" data-dz-thumbnail></span>
82 </div>
83 <div>
84 <p id="name" class="name" data-dz-name></p>
85 <div class="input-group">
86 <input id="URL" type="text" class="form-control" readonly>
87 <span class="input-group-btn">
74 office 88 <button id="btn-mailto" class="btn btn-default" type="button"><i class="glyphicon glyphicon-envelope"></i></button>
24 office 89 </span>
72 office 90 <span class="input-group-btn">
91 office 91 <button id="btn-facebook" class="btn btn-default" type="button" disabled><i class="fa fa-facebook"></i></button>
90 office 92 </span>
93 <span class="input-group-btn">
74 office 94 <button id="btn-clipboard" class="btn btn-default" type="button"><i class="glyphicon glyphicon-paperclip"></i></button>
72 office 95 </span>
24 office 96 </div>
73 office 97 <div class="input-group">
98 <input id="deleteURL" type="text" class="form-control" readonly>
99 <span class="input-group-btn">
100 <button id="btn-clipboard-delete" class="btn btn-default" type="button"><i class="glyphicon glyphicon-paperclip"></i></button>
101 </span>
102 </div>
24 office 103 <strong class="error text-danger" data-dz-errormessage></strong>
104 </div>
105 <div>
106 <p class="size" data-dz-size></p>
76 office 107 <div id="progress" class="progress active" role="progressbar">
108 <div class="progress-bar progress-bar-custom" style="width:0%;" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0" data-dz-uploadprogress></div>
24 office 109 </div>
110 </div>
111 <div>
112 <button id="start" class="btn btn-default start">
113 <i class="glyphicon glyphicon-upload"></i>
114 <span>Upload</span>
115 </button>
75 office 116 <button id="cancel" data-dz-cancel class="btn btn-default cancel">
24 office 117 <i class="glyphicon glyphicon-ban-circle"></i>
118 <span>Cancel</span>
119 </button>
120 <button id="remove" data-dz-remove class="btn btn-danger remove">
121 <i class="glyphicon glyphicon-remove"></i>
122 <span>Remove</span>
123 </button>
124 </div>
125 </div>
126  
127 </div>
128 </div>
129 <!-- The global file processing state -->
130 <div class="fileupload-process">
76 office 131 <div id="total-progress" class="progress active" role="progressbar">
132 <div class="progress-bar progress-bar-custom" style="width:0%;" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0" data-dz-uploadprogress></div>
133 </div>
24 office 134 </div>
135 </div>
136  
137 </div> <!-- /container -->
138  
139 <div id="footer">
140 <div class="container">
71 office 141 <p class="text-muted credit text-center">Copyright <i class="glyphicon glyphicon-copyright-mark"></i> 2017 <a href="http://grimore.org">Wizardry and Steamworks</a>.</p>
24 office 142 </div>
143 </div>
144  
58 office 145 <!-- jQuery -->
146 <script src="bower_components/jquery/dist/jquery.min.js"></script>
147 <!-- BootStrap -->
148 <script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
24 office 149 <!-- DropZone -->
58 office 150 <script src="bower_components/dropzone/dist/min/dropzone.min.js"></script>
24 office 151 <!-- Clipboard -->
58 office 152 <script src="bower_components/clipboard/dist/clipboard.min.js"></script>
24 office 153 <script>
26 office 154 $(document).ready(() => {
24 office 155 // Get the template HTML and remove it from the doument
156 var previewNode = document
157 .querySelector("#template");
158 previewNode.id = "";
159 var previewTemplate = previewNode
160 .parentNode
161 .innerHTML;
162 previewNode
163 .parentNode
164 .removeChild(previewNode);
165  
166 var myDropzone = new Dropzone('.panel-body', { // Make the whole body a dropzone
49 office 167 url: "file.php", // Set the url
24 office 168 paramName: "file",
169 thumbnailWidth: 80,
170 thumbnailHeight: 80,
171 //parallelUploads: 20,
172 previewTemplate: previewTemplate,
173 autoQueue: false, // Make sure the files aren't queued until manually added
174 previewsContainer: "#previews", // Container to display the previews
175 clickable: [
176 "#uploadbutton",
177 "#uploadpanel"
178 ],
179 //clickable: "#uploadbutton" // Element that should be used as click trigger to select files.
180 }).on("addedfile", (file) => {
181 // Hookup the start button
182 file.previewElement.querySelector(".start").onclick = () => {
183 myDropzone.enqueueFile(file);
184 };
185 }).on("totaluploadprogress", (progress) => {
186 document
187 .querySelector("#total-progress .progress-bar")
188 .style
189 .width = progress + "%";
190 }).on("sending", (file) => {
191 // Show the total progress bar when upload starts
192 document.querySelector("#total-progress")
193 .style
194 .opacity = 1;
195  
196 // And disable the start button.
197 file
198 .previewElement
199 .querySelector(".start")
200 .setAttribute("disabled", "disabled");
201 }).on("queuecomplete", (progress) => {
202 document.querySelector("#total-progress")
203 .style
204 .opacity = "0";
205 }).on("success", (file, data) => {
81 office 206 // Serialize JSON to object.
207 data = JSON.parse(data);
208  
73 office 209 // Set the ID of the URL box.
72 office 210 const boxURLID = '_' + Math
24 office 211 .random()
212 .toString(36)
213 .substr(2, 9);
214 file
215 .previewElement
216 .querySelector("#URL")
73 office 217 .value = location.protocol
218 .concat("//")
219 .concat(window.location.hostname)
220 .concat("/")
81 office 221 .concat(data.hash);
24 office 222  
223 file
224 .previewElement
225 .querySelector("#URL")
226 .setAttribute('id', boxURLID)
73 office 227  
228 // Set the ID of the delete URL box.
229 const deleteBoxURLID = '_' + Math
230 .random()
231 .toString(36)
232 .substr(2, 9);
233 file
234 .previewElement
235 .querySelector("#deleteURL")
236 .value = location.protocol.concat("//")
237 .concat(window.location.hostname)
238 .concat("/")
81 office 239 .concat(data.timestamp)
73 office 240 .concat("/")
81 office 241 .concat(data.hash);
73 office 242  
243 file
244 .previewElement
245 .querySelector("#deleteURL")
246 .setAttribute('id', deleteBoxURLID)
247  
248 // Set the ID of the URL clipboard button.
72 office 249 const clipButtonID = '_' + Math
24 office 250 .random()
251 .toString(36)
252 .substr(2, 9);
253 file
254 .previewElement
255 .querySelector("#btn-clipboard")
256 .setAttribute('data-clipboard-target', '#' + boxURLID)
257  
258 file
259 .previewElement
260 .querySelector("#btn-clipboard")
261 .setAttribute('id', clipButtonID);
73 office 262  
263 new Clipboard('#' + clipButtonID);
72 office 264  
73 office 265 // Set the ID of the delete URL clipboard button.
266 const clipButtonDeleteID = '_' + Math
267 .random()
268 .toString(36)
269 .substr(2, 9);
270 file
271 .previewElement
272 .querySelector("#btn-clipboard-delete")
273 .setAttribute('data-clipboard-target', '#' + deleteBoxURLID)
274  
275 file
276 .previewElement
277 .querySelector("#btn-clipboard-delete")
278 .setAttribute('id', clipButtonDeleteID);
279  
280 new Clipboard('#' + clipButtonDeleteID);
281  
282 // Set the ID of the mailto button.
72 office 283 const mailToButtonID = '_' + Math
284 .random()
285 .toString(36)
286 .substr(2, 9);
287  
288 file
289 .previewElement
290 .querySelector("#btn-mailto")
291 .setAttribute('id', mailToButtonID);
24 office 292  
293 file
294 .previewElement
295 .querySelector(".start")
296 .setAttribute("disabled", "disabled");
297 file
298 .previewElement
299 .querySelector(".cancel")
300 .setAttribute("disabled", "disabled");
72 office 301  
302 $('#' + mailToButtonID).on('click', () => {
74 office 303 window.location.href = "mailto:?subject="+
304 encodeURIComponent("Can't scratch this!") + "&body=" +
72 office 305 encodeURIComponent($('#' + boxURLID).val());
306 });
90 office 307  
308 // Set the ID of the facebook button.
309 const faceBookButtonID = '_' + Math
310 .random()
311 .toString(36)
312 .substr(2, 9);
313  
314 file
315 .previewElement
316 .querySelector("#btn-facebook")
317 .setAttribute('id', faceBookButtonID);
318  
319 switch(data.opengraph) {
320 case true:
321 // Enable the facebook button.
322 file
323 .previewElement
324 .querySelector('#' + faceBookButtonID)
325 .removeAttribute("disabled");
326  
327 // Change the URL when the user clicks the button.
328 $('#' + faceBookButtonID).on('click', () => {
329 $('#' + boxURLID)
330 .val(
331 location.protocol.concat("//")
332 .concat(window.location.hostname)
333 .concat("/")
334 .concat("og")
335 .concat("/")
336 .concat(data.hash)
337 );
338 });
339 break;
340 default:
341 // Disable the facebook button.
342 file
343 .previewElement
344 .querySelector('#' + faceBookButtonID)
345 .setAttribute("disabled", "disabled");
346 break;
347 }
24 office 348 });
349  
350 document.querySelector("#actions .start").onclick = () => {
351 myDropzone.enqueueFiles(
352 myDropzone
353 .getFilesWithStatus(Dropzone.ADDED));
354 };
355  
356 document.querySelector("#actions .cancel").onclick = () => {
357 myDropzone.removeAllFiles(true);
358 };
84 office 359  
360 // Scroll to the panel.
361 $('html, body').animate({
362 scrollTop: $('#main-panel').offset().top
363 }, 'slow');
24 office 364 });
365 </script>
71 office 366 <!-- Jumbotron parallax effect -->
70 office 367 <script>
71 office 368 const jumboHeight = $('.jumbotron').outerHeight();
70 office 369 function parallax(){
370 var scrolled = $(window).scrollTop();
371 $('.paralax-background').css('height', (jumboHeight-scrolled) + 'px');
372 }
373  
374 $(window).scroll(function(e){
375 parallax();
376 });
377 </script>
24 office 378 </body>
379 </html>