Last active
February 11, 2020 07:47
-
-
Save praveen-vishnu/de6ea4656871dbd398fc3dde906ae35f to your computer and use it in GitHub Desktop.
HTML5 File Bindings with upload preview and drag and drop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="well" data-bind="fileDrag: fileData"> | |
<div class="form-group row"> | |
<div class="col-md-6"> | |
<img style="height: 125px;" class="img-rounded thumb" data-bind="attr: { src: fileData().dataURL }, visible: fileData().dataURL"> | |
<div data-bind="ifnot: fileData().dataURL"> | |
<label class="drag-label">Drag file here</label> | |
</div> | |
</div> | |
<div class="col-md-6"> | |
<input type="file" data-bind="fileInput: fileData, customFileInput: { | |
buttonClass: 'btn btn-success', | |
fileNameClass: 'disabled form-control', | |
onClear: onClear, | |
}" accept="image/*"> | |
</div> | |
</div> | |
</div> | |
<h3>Multiple File Uploads</h3> | |
<div class="well" data-bind="fileDrag: multiFileData"> | |
<div class="form-group row"> | |
<div class="col-md-6"> | |
<!-- ko foreach: {data: multiFileData().dataURLArray, as: 'dataURL'} --> | |
<img style="height: 100px; margin: 5px;" class="img-rounded thumb" data-bind="attr: { src: dataURL }, visible: dataURL"> | |
<!-- /ko --> | |
<div data-bind="ifnot: fileData().dataURL"> | |
<label class="drag-label">Drag files here</label> | |
</div> | |
</div> | |
<div class="col-md-6"> | |
<input type="file" multiple data-bind="fileInput: multiFileData, customFileInput: { | |
buttonClass: 'btn btn-success', | |
fileNameClass: 'disabled form-control', | |
onClear: onClear, | |
}" accept="image/*"> | |
</div> | |
</div> | |
</div> | |
<button class="btn btn-default" data-bind="click: debug">Debug</button> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
var viewModel = {}; | |
viewModel.fileData = ko.observable({ | |
dataURL: ko.observable(), | |
// base64String: ko.observable(), | |
}); | |
viewModel.multiFileData = ko.observable({ | |
dataURLArray: ko.observableArray(), | |
}); | |
viewModel.onClear = function(fileData){ | |
if(confirm('Are you sure?')){ | |
fileData.clear && fileData.clear(); | |
} | |
}; | |
viewModel.debug = function(){ | |
window.viewModel = viewModel; | |
console.log(ko.toJSON(viewModel)); | |
debugger; | |
}; | |
ko.applyBindings(viewModel); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.1.0/knockout-min.js"></script> | |
<script src="https://rawgit.com/adrotec/knockout-file-bindings/master/knockout-file-bindings.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container { | |
max-width: 750px; | |
padding: 15px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" /> | |
<link href="https://rawgit.com/adrotec/knockout-file-bindings/master/knockout-file-bindings.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment