summaryrefslogtreecommitdiff
path: root/client/faceSearch/faceSearch.actions.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-12-16 20:01:23 +0100
committerJules Laplace <julescarbon@gmail.com>2018-12-16 20:01:23 +0100
commit76f36c6c5dafe754b066903b1ee8ecdd1b92dcab (patch)
tree374deb919344611e642c83926dd36a12f31f709a /client/faceSearch/faceSearch.actions.js
parent6431d06048791763f3644b3a0457cc9c4f1df6d3 (diff)
faceSearch client
Diffstat (limited to 'client/faceSearch/faceSearch.actions.js')
-rw-r--r--client/faceSearch/faceSearch.actions.js57
1 files changed, 57 insertions, 0 deletions
diff --git a/client/faceSearch/faceSearch.actions.js b/client/faceSearch/faceSearch.actions.js
new file mode 100644
index 00000000..ccd51201
--- /dev/null
+++ b/client/faceSearch/faceSearch.actions.js
@@ -0,0 +1,57 @@
+// import fetchJsonp from 'fetch-jsonp'
+import * as types from '../types'
+// import { hashPath } from '../util'
+import { store } from '../store'
+import { post, preloadImage } from '../util'
+// import querystring from 'query-string'
+
+// urls
+
+const url = {
+ upload: (dataset) => process.env.API_HOST + '/api/dataset/' + dataset + '/face/',
+}
+export const publicUrl = {
+}
+
+// standard loading events
+
+const loading = (tag, offset) => ({
+ type: types.faceSearch.loading,
+ tag,
+ offset
+})
+const loaded = (tag, data, offset = 0) => ({
+ type: types.faceSearch.loaded,
+ tag,
+ data,
+ offset
+})
+const error = (tag, err) => ({
+ type: types.faceSearch.error,
+ tag,
+ err
+})
+
+// search UI functions
+
+export const updateOptions = opt => dispatch => {
+ dispatch({ type: types.faceSearch.update_options, opt })
+}
+
+// API functions
+
+export const upload = (file, query) => dispatch => {
+ // const { options } = store.getState().faceSearch
+ const tag = 'result'
+ const fd = new FormData()
+ fd.append('query_img', file)
+ // fd.append('limit', options.perPage)
+ if (!query) {
+ dispatch(loading(tag))
+ }
+ post(url.upload(), fd)
+ .then(data => {
+ dispatch(loaded(tag, data))
+ })
+ .catch(err => dispatch(error(tag, err)))
+}