aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/js/app.js
diff options
context:
space:
mode:
authorJohannes Zellner <johannes@nebulon.de>2016-03-01 15:54:16 +0100
committerJohannes Zellner <johannes@nebulon.de>2016-03-01 15:54:16 +0100
commit537bfb042b9f97e3a0ab8d6391b3519111073067 (patch)
treeea1ded91feacb1ef2d5662713599b3ebe6ccff66 /app/js/app.js
parentee9d1ada964d9e9ce7d9c020ab105aa7ded8147e (diff)
downloadSurfer-537bfb042b9f97e3a0ab8d6391b3519111073067.tar.gz
Surfer-537bfb042b9f97e3a0ab8d6391b3519111073067.tar.zst
Surfer-537bfb042b9f97e3a0ab8d6391b3519111073067.zip
Implement file upload
Diffstat (limited to 'app/js/app.js')
-rw-r--r--app/js/app.js34
1 files changed, 33 insertions, 1 deletions
diff --git a/app/js/app.js b/app/js/app.js
index b71a7ed..e2fe621 100644
--- a/app/js/app.js
+++ b/app/js/app.js
@@ -39,6 +39,14 @@ function sanitize(filePath) {
39 return filePath.replace(/\/+/g, '/'); 39 return filePath.replace(/\/+/g, '/');
40} 40}
41 41
42function encode(filePath) {
43 return filePath.split('/').map(encodeURIComponent).join('/');
44}
45
46function refresh() {
47 loadDirectory(app.path);
48}
49
42function loadDirectory(filePath) { 50function loadDirectory(filePath) {
43 app.busy = true; 51 app.busy = true;
44 52
@@ -70,6 +78,29 @@ function up() {
70 loadDirectory(app.path.split('/').slice(0, -1).filter(function (p) { return !!p; }).join('/')); 78 loadDirectory(app.path.split('/').slice(0, -1).filter(function (p) { return !!p; }).join('/'));
71} 79}
72 80
81function upload() {
82 $(app.$els.upload).change(function () {
83 app.busy = true;
84
85 var file = app.$els.upload.files[0];
86 var path = encode(sanitize(app.path + '/' + file.name));
87
88 var formData = new FormData();
89 formData.append('file', file);
90
91 superagent.put('/api/files' + path).query({ username: app.session.username, password: app.session.password }).send(formData).end(function (error, result) {
92 app.busy = false;
93
94 if (error) return console.error(error);
95 if (result.statusCode !== 201) return console.error('Error uploading file: ', result.statusCode);
96
97 refresh();
98 });
99 });
100
101 app.$els.upload.click();
102}
103
73var app = new Vue({ 104var app = new Vue({
74 el: '#app', 105 el: '#app',
75 data: { 106 data: {
@@ -87,7 +118,8 @@ var app = new Vue({
87 logout: logout, 118 logout: logout,
88 loadDirectory: loadDirectory, 119 loadDirectory: loadDirectory,
89 open: open, 120 open: open,
90 up: up 121 up: up,
122 upload: upload
91 } 123 }
92}); 124});
93 125