scratch – Rev 80
?pathlinks?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="quick asset upload">
<meta name="author" content="Wizardry and Steamworks">
<link rel="icon" href="favicon.ico">
<title>scratch</title>
<!-- Bootstrap core CSS -->
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!-- DropZone -->
<link href="bower_components/dropzone/dist/min/dropzone.min.css" rel="stylesheet">
<!-- Site-wide style CCS -->
<link href="css/style.css" rel="stylesheet">
<!-- Local style -->
<link href="css/files/style.css" rel="stylesheet">
</head>
<body>
<!-- Main component for a primary marketing message or call to action -->
<div class="paralax-background"></div>
<div class="jumbotron">
<h1>scratch copy</h1>
<p class="quote">the asset sharer</p>
</div>
<div class="container">
<ul class="nav nav-tabs">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="#">File</a></li>
<li><a href="text.html">Text</a></li>
</ul>
<div class="panel panel-default">
<div class="panel-heading">
<div id="actions" class="row">
<div class="col-lg-5">
<div class="btn-group btn-group-justified" role="group">
<!-- The fileinput-button span is used to style the file input field as button -->
<div class="btn-group" role="group">
<button id="uploadbutton" type="button" class="btn btn-default">
<i class="glyphicon glyphicon-plus"></i>
<span>Add...</span>
</button>
</div>
<div class="btn-group" role="group">
<button type="submit" class="btn btn-default start">
<i class="glyphicon glyphicon-upload"></i>
<span>Upload All</span>
</button>
</div>
<div class="btn-group" role="group">
<button type="reset" class="btn btn-default cancel">
<i class="glyphicon glyphicon-ban-circle"></i>
<span>Cancel All</span>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="panel-body" id="uploadpanel">
<div class="table table-striped files" id="previews">
<div id="template" class="file-row">
<!-- This is used as the file preview template -->
<div>
<span class="preview"><img src="img/fileholder.svg" width="58" alt="Upload file thumbnail" data-dz-thumbnail></span>
</div>
<div>
<p id="name" class="name" data-dz-name></p>
<div class="input-group">
<input id="URL" type="text" class="form-control" readonly>
<span class="input-group-btn">
<button id="btn-mailto" class="btn btn-default" type="button"><i class="glyphicon glyphicon-envelope"></i></button>
</span>
<span class="input-group-btn">
<button id="btn-clipboard" class="btn btn-default" type="button"><i class="glyphicon glyphicon-paperclip"></i></button>
</span>
</div>
<div class="input-group">
<input id="deleteURL" type="text" class="form-control" readonly>
<span class="input-group-btn">
<button id="btn-clipboard-delete" class="btn btn-default" type="button"><i class="glyphicon glyphicon-paperclip"></i></button>
</span>
</div>
<strong class="error text-danger" data-dz-errormessage></strong>
</div>
<div>
<p class="size" data-dz-size></p>
<div id="progress" class="progress active" role="progressbar">
<div class="progress-bar progress-bar-custom" style="width:0%;" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0" data-dz-uploadprogress></div>
</div>
</div>
<div>
<button id="start" class="btn btn-default start">
<i class="glyphicon glyphicon-upload"></i>
<span>Upload</span>
</button>
<button id="cancel" data-dz-cancel class="btn btn-default cancel">
<i class="glyphicon glyphicon-ban-circle"></i>
<span>Cancel</span>
</button>
<button id="remove" data-dz-remove class="btn btn-danger remove">
<i class="glyphicon glyphicon-remove"></i>
<span>Remove</span>
</button>
</div>
</div>
</div>
</div>
<!-- The global file processing state -->
<div class="fileupload-process">
<div id="total-progress" class="progress active" role="progressbar">
<div class="progress-bar progress-bar-custom" style="width:0%;" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0" data-dz-uploadprogress></div>
</div>
</div>
</div>
</div> <!-- /container -->
<div id="footer">
<div class="container">
<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>
</div>
</div>
<!-- jQuery -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<!-- BootStrap -->
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- DropZone -->
<script src="bower_components/dropzone/dist/min/dropzone.min.js"></script>
<!-- Clipboard -->
<script src="bower_components/clipboard/dist/clipboard.min.js"></script>
<script>
$(document).ready(() => {
// Get the template HTML and remove it from the doument
var previewNode = document
.querySelector("#template");
previewNode.id = "";
var previewTemplate = previewNode
.parentNode
.innerHTML;
previewNode
.parentNode
.removeChild(previewNode);
var myDropzone = new Dropzone('.panel-body', { // Make the whole body a dropzone
url: "file.php", // Set the url
paramName: "file",
thumbnailWidth: 80,
thumbnailHeight: 80,
//parallelUploads: 20,
previewTemplate: previewTemplate,
autoQueue: false, // Make sure the files aren't queued until manually added
previewsContainer: "#previews", // Container to display the previews
clickable: [
"#uploadbutton",
"#uploadpanel"
],
//clickable: "#uploadbutton" // Element that should be used as click trigger to select files.
}).on("addedfile", (file) => {
// Hookup the start button
file.previewElement.querySelector(".start").onclick = () => {
myDropzone.enqueueFile(file);
};
}).on("totaluploadprogress", (progress) => {
document
.querySelector("#total-progress .progress-bar")
.style
.width = progress + "%";
}).on("sending", (file) => {
// Show the total progress bar when upload starts
document.querySelector("#total-progress")
.style
.opacity = 1;
// And disable the start button.
file
.previewElement
.querySelector(".start")
.setAttribute("disabled", "disabled");
}).on("queuecomplete", (progress) => {
document.querySelector("#total-progress")
.style
.opacity = "0";
}).on("success", (file, data) => {
// Set the ID of the URL box.
const boxURLID = '_' + Math
.random()
.toString(36)
.substr(2, 9);
file
.previewElement
.querySelector("#URL")
.value = location.protocol
.concat("//")
.concat(window.location.hostname)
.concat("/")
.concat(data);
file
.previewElement
.querySelector("#URL")
.setAttribute('id', boxURLID)
// Set the ID of the delete URL box.
const deleteBoxURLID = '_' + Math
.random()
.toString(36)
.substr(2, 9);
file
.previewElement
.querySelector("#deleteURL")
.value = location.protocol.concat("//")
.concat(window.location.hostname)
.concat("/")
.concat("delete")
.concat("/")
.concat(data);
file
.previewElement
.querySelector("#deleteURL")
.setAttribute('id', deleteBoxURLID)
// Set the ID of the URL clipboard button.
const clipButtonID = '_' + Math
.random()
.toString(36)
.substr(2, 9);
file
.previewElement
.querySelector("#btn-clipboard")
.setAttribute('data-clipboard-target', '#' + boxURLID)
file
.previewElement
.querySelector("#btn-clipboard")
.setAttribute('id', clipButtonID);
new Clipboard('#' + clipButtonID);
// Set the ID of the delete URL clipboard button.
const clipButtonDeleteID = '_' + Math
.random()
.toString(36)
.substr(2, 9);
file
.previewElement
.querySelector("#btn-clipboard-delete")
.setAttribute('data-clipboard-target', '#' + deleteBoxURLID)
file
.previewElement
.querySelector("#btn-clipboard-delete")
.setAttribute('id', clipButtonDeleteID);
new Clipboard('#' + clipButtonDeleteID);
// Set the ID of the mailto button.
const mailToButtonID = '_' + Math
.random()
.toString(36)
.substr(2, 9);
file
.previewElement
.querySelector("#btn-mailto")
.setAttribute('id', mailToButtonID);
file
.previewElement
.querySelector(".start")
.setAttribute("disabled", "disabled");
file
.previewElement
.querySelector(".cancel")
.setAttribute("disabled", "disabled");
$('#' + mailToButtonID).on('click', () => {
window.location.href = "mailto:?subject="+
encodeURIComponent("Can't scratch this!") + "&body=" +
encodeURIComponent($('#' + boxURLID).val());
});
});
document.querySelector("#actions .start").onclick = () => {
myDropzone.enqueueFiles(
myDropzone
.getFilesWithStatus(Dropzone.ADDED));
};
document.querySelector("#actions .cancel").onclick = () => {
myDropzone.removeAllFiles(true);
};
});
</script>
<!-- Jumbotron parallax effect -->
<script>
const jumboHeight = $('.jumbotron').outerHeight();
function parallax(){
var scrolled = $(window).scrollTop();
$('.paralax-background').css('height', (jumboHeight-scrolled) + 'px');
}
$(window).scroll(function(e){
parallax();
});
</script>
</body>
</html>