summaryrefslogtreecommitdiff
path: root/client/client.js
blob: a48b53eb722737dc0cebc03e1521d54735f5a723 (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
function get() {
  return {
    method: 'GET',
    headers: {
      'Accept': 'application/json',
      'Content-Type': 'application/json'
    },
  }
}
function post(data) {
  return {
    method: 'POST',
    body: JSON.stringify(data),
    headers: {
      'Accept': 'application/json',
      'Content-Type': 'application/json'
    },
  }
}
function postBody(data) {
  return {
    method: 'POST',
    headers: {
      'Accept': 'application/json',
    },
    body: data,
  }
}
function put(data) {
  return {
    method: 'PUT',
    body: data,
    headers: {
      'Accept': 'application/json',
      'Content-Type': 'application/json'
    },
  }
}
function error(err) {
  console.warn(err)
}

export default {
  folder: {
    index: () => {
      return fetch('/folders/')
        .then(req => req.json())
        .catch(error)
    },
    
    show: (id) => {
      return fetch('/folders/' + id)
        .then(req => req.json())
        .catch(error)
    },
    
    create: (data) => {
      return fetch('/folders/new', post(data))
        .then(req => req.json())
        .catch(error)
    },

    update: (data) => {
      return fetch('/folders/' + data.id, put(data))
        .then(req => req.json())
        .catch(error)
    },
  },
  
  file: {
    upload: (folder_id, files) => {
      var data = new FormData()
      for (var i = 0; i < files.length; i++) {
        data.append('file', files[i])
      }
      return fetch('/folders/' + folder_id, postBody(files))
        .then(req => req.json())
        .catch(error)
    },
  },
  
}