summaryrefslogtreecommitdiff
path: root/dir.html
blob: 592f8f5a56438fe37b376a3b598fe9c1c39745a9 (plain)
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
<!DOCTYPE html>
<html>
  <head>
    {{if .Name}}<title>{{ .Name }}</title>{{end}}
  </head>
  <body>
<h1>πŸ¦„ Index of {{ .Name }} 🌈</h1><br>
<section id="main">
<table>
  <tbody>
    {{range .ListFiles}}
      <tr><td><a href="{{ .Path | formatURL }}">{{ .Name }}</a></td><td>{{ .Size | formatSize }}</td></tr>
    {{end}}
  </tbody>
</table>
</section>
<section id="nav">
  <h2>List of directories</h2>
<table>
  <tbody>
  {{range .ListCols}}
    <tr><td><a href="{{ .Path }}">{{ .Name }}</a></td></tr>
  {{end}}
</table>
</section>
<section id="dav">
  <div class="uploadDiv">
    <label for="fileinput">SΓ©lectionner un fichier : </label><br/>
    <input id="fileinput" type="file">
  </div>
  <div class="mkdirDiv">
  </div>
</section>
<div id="footer">Create with love πŸ’Ÿ</div>
<script language="javascript">
const input = document.getElementById('fileinput');

const upload = (file) => {
  const l = window.location;

  let uri = l.protocol + '//' + l.hostname;
  if( l.port !== '80' ) {
    uri += ':' + l.port
  }
  uri += l.pathname

  console.log(uri)

  if( uri[uri.length - 1] !== '/' ) {
    uri += '/'
  }

  uri += file.name

  console.log(uri)

  fetch( encodeURI(uri) , {
    method: 'PUT',
    headers: {
      "Content-Type": file.type
    },
    body: file // This is your file object
  }).then(
    response => {
      console.log(response);
    }
  ).then(
    success => {
      console.log(success);
    }
  ).catch(
    error => {
      console.log(error);
    }
  );
};

const onSelectFile = () => {
  let i = 0;
  for( ; i < input.files.length ; i++) {
    upload(input.files[i]);
  }
};

const deleteMethode = (url, th) => {
  fetch( url , {
    method: 'DELETE',
  }).then(
    response => {
      console.log(response);
    }
  ).then(
    success => {
      if( th ) th.parentNode.removeChild(th)
      console.log(success);
    }
  ).catch(
    error => {
      console.log(error);
    }
  );
};

const onPageLoad = () => {
  const as = Array.from(document.getElementsByTagName('a'));

  as.forEach( e => {
    const a = document.createElement('a');
    const td = document.createElement('td');
    a.appendChild(document.createTextNode('πŸ—™'));
    a.classList.add('delete');
    a.href = "#";
    a.onclick = () => false;
    td.appendChild(a);
    a.addEventListener('click', () => {
      deleteMethode('/' + e.href.split('/').slice(3).join('/'), e.parentNode.parentNode)
      return false;
    }, false);
    e.parentNode.parentNode.appendChild(td);
  });
}

input.addEventListener('change', onSelectFile, false);
window.addEventListener('load', onPageLoad, false);
</script>
<style>
body {
  display: grid;
  grid-template-columns: calc(100% / 5) calc(100% / 2.5 + 100% / 5 ) calc(100%/5);
  grid-template-areas: "h h h"
                       "nav  main dav"
                       "nav  f f";
}

h1 {
  grid-area: h;
}
#nav {
  grid-area: nav;
  background-color: #ffa0fc;
  margin: 1%;
}
#nav table {
  margin: 20px;
}

#main {
  grid-area: main;
  background-color: #00ff64;
  margin: 1%;
}
#main table {
  margin: 20px;
}
#dav {
  grid-area: dav;
  background-color: #ff0f64;
  margin: 1%;
}
#dav .uploadDiv {
  margin: 20px;
}

#footer {
  grid-area: f;
  background-color: #fcffa0;
}
.delete {
  color: red;
}
.delete:hover {
  color: #3b4045;
  text-decoration: none;
}
</style>
</body>
</html>