-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpage.htm
201 lines (189 loc) · 5.57 KB
/
page.htm
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
<h1>S3 Bulk Uploader</h1>
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script src="s3upload.js"></script>
<style>
.fileinput-button {
position: relative;
overflow: hidden;
display: inline-block;
}
.fileinput-button input {
position: absolute;
top: 0;
right: 0;
margin: 0;
opacity: 0;
-ms-filter: 'alpha(opacity=0)';
font-size: 200px !important;
direction: ltr;
cursor: pointer;
}
.progress {
position:relative;
height: 20px;
margin-bottom: 20px;
overflow: hidden;
background-color: #f5f5f5;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
.progress-number {
position:absolute;
left:50%;
z-index:5;
}
.progress-bar {
float: left;
width: 0;
height: 100%;
font-size: 12px;
line-height: 20px;
color: #fff;
text-align: center;
background-color: #337ab7;
-webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
-webkit-transition: width .6s ease;
-o-transition: width .6s ease;
transition: width .6s ease;
}
#uploadForm.is-dragover {
background-color: #F7F7F7;
}
.button:focus{color:#fff;background-color:#449d44;border-color:#255625}
.button:hover{color:#fff;background-color:#449d44;border-color:#398439}
.button {
color: #fff;
background-color: #5cb85c;
border-color: #4cae4c;
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
/* Fixes for IE < 8 */
@media screen\9 {
.fileinput-button input {
filter: alpha(opacity=0);
font-size: 100%;
height: 100%;
}
}
#result {
border:1px solid gray;
margin:5px;
padding:10px;
}
</style>
<p>You can upload files to S3 here.</p>
<fieldset id='uploadForm' style='padding:20px;'>
<form>
<label for="fileInput" style='padding:15px;position:relative;top:-10px;color:gray;float:right;'>Drop file here to upload</label>
<span class="button fileinput-button">
<i class="fas fa-plus"></i>
<span>Select File...</span>
<input id="fileInput" type="file" name="file" />
</span>
<span class="button cancel-button" style='display:none;'>
<i class="fas fa-minus"></i>
<a href='#' id='cancel' style="color:inherit;text-decoration: none;">Cancel</a>
</span>
</form>
<div id="progress" class="progress">
<div class="progress-bar progress-bar-success"></div>
<div class="progress-number"></div>
</div>
</fieldset>
<div id='result'>
</div>
<script>
var s3upload=null;
function upload(file) {
if (!(window.File && window.FileReader && window.FileList && window.Blob && window.Blob.prototype.slice)) {
alert("You are using an unsupported browser. Please update your browser.");
return;
}
$(".fileinput-button").toggle();
$(".cancel-button").toggle();
$("#result").text("");
$('#progress .progress-bar').css('width',"0px");
$('#progress .progress-number').text("");
s3upload = new S3MultiUpload(file);
s3upload.onServerError = function(command, jqXHR, textStatus, errorThrown) {
$("#result").text("Upload failed with server error.");
};
s3upload.onS3UploadError = function(xhr) {
$("#result").text("Upload to S3 failed.");
};
s3upload.onProgressChanged = function(uploadedSize, totalSize, speed) {
var progress = parseInt(uploadedSize / totalSize * 100, 10);
$('#progress .progress-bar').css(
'width',
progress + '%'
);
$(".progress-number").html(getReadableFileSizeString(uploadedSize)+" / "+getReadableFileSizeString(totalSize)
+ " <span style='font-size:smaller;color:gray;'>("
+uploadedSize+" / "+totalSize
+" at "
+getReadableFileSizeString(speed)+"ps"
+")</span>").css({'margin-left' : -$('.progress-number').width()/2});
};
s3upload.onPrepareCompleted = function() {
$("#result").text("Uploading...");
}
s3upload.onUploadCompleted = function() {
$("#result").text("Upload successful.");
$(".fileinput-button").toggle();
$(".cancel-button").toggle();
};
$("#result").text("Preparing upload...");
s3upload.start();
}
function getReadableFileSizeString(fileSizeInBytes) {
var i = -1;
var byteUnits = [' KB', ' MB', ' GB', ' TB', 'PB', 'EB', 'ZB', 'YB'];
do {
fileSizeInBytes = fileSizeInBytes / 1024;
i++;
} while (fileSizeInBytes > 1024);
return Math.max(fileSizeInBytes, 0.1).toFixed(1) + byteUnits[i];
}
$(function(){
$("#fileInput").change(function() {
upload($('#fileInput')[0].files[0]);
});
// Drag & drop support.
$("#uploadForm").on('drag dragstart dragend dragover dragenter dragleave drop', function(e) {
e.preventDefault();
e.stopPropagation();
}).on('dragover dragenter', function() {
$(this).addClass('is-dragover');
}).on('dragleave dragend drop', function() {
$(this).removeClass('is-dragover');
}).on('drop', function(e) {
droppedFiles = e.originalEvent.dataTransfer.files;
upload(droppedFiles[0]);
});
$("#cancel").click(function() {
s3upload.cancel();
$(".fileinput-button").toggle();
$(".cancel-button").toggle();
});
})
</script>