30 lines
826 B
JavaScript
30 lines
826 B
JavaScript
import api from '../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 const fetchCustomEmojis = () => (dispatch, getState) => {
|
|
dispatch(fetchCustomEmojisRequest())
|
|
|
|
api(getState).get('/api/v1/custom_emojis').then((response) => {
|
|
dispatch(fetchCustomEmojisSuccess(response.data))
|
|
}).catch((error) => {
|
|
dispatch(fetchCustomEmojisFail(error))
|
|
})
|
|
}
|
|
|
|
const fetchCustomEmojisRequest = () => ({
|
|
type: CUSTOM_EMOJIS_FETCH_REQUEST,
|
|
})
|
|
|
|
const fetchCustomEmojisSuccess = (custom_emojis) => ({
|
|
type: CUSTOM_EMOJIS_FETCH_SUCCESS,
|
|
custom_emojis,
|
|
})
|
|
|
|
const fetchCustomEmojisFail = (error) => ({
|
|
type: CUSTOM_EMOJIS_FETCH_FAIL,
|
|
error,
|
|
})
|