Update up_page.html
Browse files- up_page.html +25 -58
up_page.html
CHANGED
@@ -86,11 +86,8 @@
|
|
86 |
<button type="submit">Загрузить</button>
|
87 |
</form>
|
88 |
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
|
89 |
-
|
90 |
-
|
91 |
-
const uploadForm = document.getElementById('uploadForm');
|
92 |
-
if (uploadForm) {
|
93 |
-
uploadForm.addEventListener('submit', function(event) {
|
94 |
event.preventDefault();
|
95 |
var formData = new FormData(this);
|
96 |
var request = new XMLHttpRequest();
|
@@ -98,66 +95,36 @@
|
|
98 |
request.upload.addEventListener('progress', function(event) {
|
99 |
if (event.lengthComputable) {
|
100 |
var percentComplete = (event.loaded / event.total) * 100;
|
101 |
-
|
102 |
-
|
103 |
-
progressBar.style.width = percentComplete + '%';
|
104 |
-
progressBar.innerText = Math.round(percentComplete) + '%';
|
105 |
-
}
|
106 |
}
|
107 |
}, false);
|
108 |
request.addEventListener('load', function(event) {
|
109 |
var response = event.target.responseText;
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
}
|
117 |
-
Toastify({
|
118 |
-
text: "File uploaded successfully",
|
119 |
-
duration: 3000,
|
120 |
-
gravity: "top",
|
121 |
-
position: "center",
|
122 |
-
backgroundColor: "#4CAF50",
|
123 |
-
}).showToast();
|
124 |
-
} else if (event.target.status === 409) {
|
125 |
-
Toastify({
|
126 |
-
text: "File with this name already exists",
|
127 |
-
duration: 3000,
|
128 |
-
gravity: "top",
|
129 |
-
position: "center",
|
130 |
-
backgroundColor: "#FF5733",
|
131 |
-
}).showToast();
|
132 |
-
}
|
133 |
-
const progressBar = document.getElementById('progressBar');
|
134 |
-
if (progressBar) {
|
135 |
-
progressBar.style.width = '0%';
|
136 |
-
progressBar.innerText = '0%';
|
137 |
-
}
|
138 |
}, false);
|
139 |
request.send(formData);
|
140 |
});
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
position: "center",
|
157 |
-
backgroundColor: "#4CAF50",
|
158 |
-
}).showToast();
|
159 |
-
}
|
160 |
-
});
|
161 |
</script>
|
162 |
</body>
|
163 |
</html>
|
|
|
86 |
<button type="submit">Загрузить</button>
|
87 |
</form>
|
88 |
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
|
89 |
+
<script>
|
90 |
+
document.getElementById('uploadForm').addEventListener('submit', function(event) {
|
|
|
|
|
|
|
91 |
event.preventDefault();
|
92 |
var formData = new FormData(this);
|
93 |
var request = new XMLHttpRequest();
|
|
|
95 |
request.upload.addEventListener('progress', function(event) {
|
96 |
if (event.lengthComputable) {
|
97 |
var percentComplete = (event.loaded / event.total) * 100;
|
98 |
+
document.getElementById('progressBar').style.width = percentComplete + '%';
|
99 |
+
document.getElementById('progressBar').innerText = Math.round(percentComplete) + '%';
|
|
|
|
|
|
|
100 |
}
|
101 |
}, false);
|
102 |
request.addEventListener('load', function(event) {
|
103 |
var response = event.target.responseText;
|
104 |
+
var fullUrl = response.split('saved to ')[1];
|
105 |
+
document.getElementById('imageUrl').innerText = fullUrl;
|
106 |
+
document.getElementById('progressBar').style.width = '0%';
|
107 |
+
document.getElementById('progressBar').innerText = '0%';
|
108 |
+
// Сохранение ссылки в локальное хранилище
|
109 |
+
localStorage.setItem('fileUrl', fullUrl);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
}, false);
|
111 |
request.send(formData);
|
112 |
});
|
113 |
+
function copyToClipboard(element) {
|
114 |
+
var tempInput = document.createElement("input");
|
115 |
+
tempInput.value = element.innerText;
|
116 |
+
document.body.appendChild(tempInput);
|
117 |
+
tempInput.select();
|
118 |
+
document.execCommand("copy");
|
119 |
+
document.body.removeChild(tempInput);
|
120 |
+
Toastify({
|
121 |
+
text: "Ссылка скопирована в буфер обмена",
|
122 |
+
duration: 3000,
|
123 |
+
gravity: "top",
|
124 |
+
position: "center",
|
125 |
+
backgroundColor: "#4CAF50",
|
126 |
+
}).showToast();
|
127 |
+
}
|
|
|
|
|
|
|
|
|
|
|
128 |
</script>
|
129 |
</body>
|
130 |
</html>
|