logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

custom_emojis.js (923B)


  1. import api from '../api';
  2. export const CUSTOM_EMOJIS_FETCH_REQUEST = 'CUSTOM_EMOJIS_FETCH_REQUEST';
  3. export const CUSTOM_EMOJIS_FETCH_SUCCESS = 'CUSTOM_EMOJIS_FETCH_SUCCESS';
  4. export const CUSTOM_EMOJIS_FETCH_FAIL = 'CUSTOM_EMOJIS_FETCH_FAIL';
  5. export function fetchCustomEmojis() {
  6. return (dispatch, getState) => {
  7. dispatch(fetchCustomEmojisRequest());
  8. api(getState).get('/api/v1/custom_emojis').then(response => {
  9. dispatch(fetchCustomEmojisSuccess(response.data));
  10. }).catch(error => {
  11. dispatch(fetchCustomEmojisFail(error));
  12. });
  13. };
  14. };
  15. export function fetchCustomEmojisRequest() {
  16. return {
  17. type: CUSTOM_EMOJIS_FETCH_REQUEST,
  18. };
  19. };
  20. export function fetchCustomEmojisSuccess(custom_emojis) {
  21. return {
  22. type: CUSTOM_EMOJIS_FETCH_SUCCESS,
  23. custom_emojis,
  24. };
  25. };
  26. export function fetchCustomEmojisFail(error) {
  27. return {
  28. type: CUSTOM_EMOJIS_FETCH_FAIL,
  29. error,
  30. };
  31. };