A Pen by Safraz Razik on CodePen.
Created
April 3, 2021 10:50
-
-
Save dandavison/3466d3c4cddecbabaa03d1308c7c2c18 to your computer and use it in GitHub Desktop.
vue-file-agent: Preloading Exising Files Demo
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 type="text/x-template" id="vue-file-agent-demo"> | |
<div> | |
<VueFileAgent | |
:uploadUrl="'https://www.mocky.io/v2/5d4fb20b3000005c111099e3'" | |
:uploadHeaders="{}" | |
:multiple="true" | |
:deletable="true" | |
:editable="true" | |
:meta="true" | |
:accept="'image/*,video/*,.pdf,.zip'" | |
:maxSize="'14MB'" | |
:maxFiles="8" | |
:helpText="'Select files'" | |
:errorText="{ | |
type: 'Please select images, videos, pdf or zip files', | |
size: 'You selected a larger file!', | |
}" | |
:thumbnailSize="120" | |
:theme="'list'" | |
v-model="fileRecords" | |
></VueFileAgent> | |
</div> | |
</script> | |
<!-- ----------------------------- --> | |
<div class="container py-3"> | |
<div id="app"> | |
<h5><a target="_blank" href="https://safrazik.github.io/vue-file-agent">Vue File Agent</a> Playground</h5> | |
<hr> | |
<ul class="nav nav-pills mb-2"> | |
<li class="nav-item"> | |
<a target="_blank" class="nav-link active" href="https://codepen.io/safrazik/pen/BaBVNEE">1. Preloading Exising Demo</a> | |
</li> | |
<li class="nav-item"> | |
<a target="_blank" class="nav-link" href="https://codepen.io/safrazik/pen/BaBpYme">2. Profile Picture Demo</a> | |
</li> | |
<li class="nav-item"> | |
<a target="_blank" class="nav-link" href="https://codepen.io/safrazik/pen/OJLgvya">3. Gmail Inspired Demo</a> | |
</li> | |
</ul> | |
<hr> | |
<vue-file-agent-demo></vue-file-agent-demo> | |
</div> | |
</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
var component = { | |
// ... | |
data: function(){ | |
return { | |
fileRecords: [ | |
{ | |
"name":"Some Invalid.exe", | |
"size": 8165824, | |
"type": "application/vnd.microsoft.portable-executable", | |
"ext":"exe", | |
}, | |
{ | |
"name": "Golf.mp4", | |
"lastModified": 1576563996233, | |
"sizeText": "549 KB", | |
"size": 561813, | |
"type": "video/mp4", | |
"ext": "mp4", | |
"dimensions": { | |
"width": 640, | |
"height": 360 | |
}, | |
"url": "https://safrazik.com/vue-file-agent/website/assets/files/Golf.mp4", | |
"videoThumbnail": "https://safrazik.com/vue-file-agent/website/assets/files/Golf-thumb.jpg", | |
"imageColor": [66, 62, 45] | |
}, | |
{ | |
"name":"Some Large File.zip", | |
"size": 25165824, // 24 MB | |
"type": "application/zip", | |
"ext":"zip", | |
}, | |
] | |
}; | |
}, | |
// ... | |
} | |
component.template = '#vue-file-agent-demo'; | |
Vue.component('vue-file-agent-demo', component); | |
new Vue({ | |
el: '#app' | |
}); |
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://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue-file-agent.umd.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
#profile-pic-demo .drop-help-text { | |
display: none; | |
} | |
#profile-pic-demo .is-drag-over .drop-help-text { | |
display: block; | |
} | |
#profile-pic-demo .profile-pic-upload-block { | |
border: 2px dashed transparent; | |
padding: 20px; | |
padding-top: 0; | |
} | |
#profile-pic-demo .is-drag-over.profile-pic-upload-block { | |
border-color: #AAA; | |
} | |
#profile-pic-demo .vue-file-agent { | |
width: 180px; | |
float: left; | |
margin: 0 15px 5px 0; | |
border: 0; | |
box-shadow: none; | |
} |
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://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" /> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue-file-agent.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment