about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/actions/custom_emojis.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-04-07 22:05:21 +0200
committerThibaut Girka <thib@sitedethib.com>2018-04-19 11:12:52 +0200
commit1822ce89f9d64e30edeea671acb2d1ca79359219 (patch)
treecfad24599f626f384624652352404858be40ec08 /app/javascript/flavours/glitch/actions/custom_emojis.js
parentd55ab8e3e83d4a19005784f9cdbc1fa920cd2f96 (diff)
[Glitch] retrieve custom emoji list via API instead of before page load
Port b08ab329f4d149fd414e0539574f49062c571a8a to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch/actions/custom_emojis.js')
-rw-r--r--app/javascript/flavours/glitch/actions/custom_emojis.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/actions/custom_emojis.js b/app/javascript/flavours/glitch/actions/custom_emojis.js
new file mode 100644
index 000000000..0595a6da7
--- /dev/null
+++ b/app/javascript/flavours/glitch/actions/custom_emojis.js
@@ -0,0 +1,37 @@
+import api from 'flavours/glitch/util/api';
+
+export const CUSTOM_EMOJIS_FETCH_REQUEST = 'CUSTOM_EMOJIS_FETCH_REQUEST';
+export const CUSTOM_EMOJIS_FETCH_SUCCESS = 'CUSTOM_EMOJIS_FETCH_SUCCESS';
+export const CUSTOM_EMOJIS_FETCH_FAIL = 'CUSTOM_EMOJIS_FETCH_FAIL';
+
+export function fetchCustomEmojis() {
+  return (dispatch, getState) => {
+    dispatch(fetchCustomEmojisRequest());
+
+    api(getState).get('/api/v1/custom_emojis').then(response => {
+      dispatch(fetchCustomEmojisSuccess(response.data));
+    }).catch(error => {
+      dispatch(fetchCustomEmojisFail(error));
+    });
+  };
+};
+
+export function fetchCustomEmojisRequest() {
+  return {
+    type: CUSTOM_EMOJIS_FETCH_REQUEST,
+  };
+};
+
+export function fetchCustomEmojisSuccess(custom_emojis) {
+  return {
+    type: CUSTOM_EMOJIS_FETCH_SUCCESS,
+    custom_emojis,
+  };
+};
+
+export function fetchCustomEmojisFail(error) {
+  return {
+    type: CUSTOM_EMOJIS_FETCH_FAIL,
+    error,
+  };
+};