mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 06:32:34 +01:00
57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
import http from 'axios';
|
|
|
|
export function loadItems({commit}, response) {
|
|
commit('SET_LOADING', true);
|
|
http(`${config.api}/items/${response.name}/${response.filter}`).then(value => {
|
|
const {data, next_page_url} = value.data;
|
|
|
|
commit('SET_ITEMS', data);
|
|
commit('SET_PAGINATOR', next_page_url);
|
|
|
|
setTimeout(() => {
|
|
commit('SET_LOADING', false);
|
|
}, 500);
|
|
}, error => {
|
|
if(error.status == 404) {
|
|
window.location.href = config.url;
|
|
}
|
|
});
|
|
}
|
|
|
|
export function loadMoreItems({commit}, next_page_url) {
|
|
commit('SET_CLICKED_LOADING', true);
|
|
http(next_page_url).then(value => {
|
|
const {data, next_page_url} = value.data;
|
|
|
|
commit('SET_PAGINATOR', next_page_url);
|
|
|
|
setTimeout(() => {
|
|
commit('PUSH_TO_ITEMS', data);
|
|
commit('SET_CLICKED_LOADING', false);
|
|
}, 500);
|
|
});
|
|
}
|
|
|
|
export function setSearchTitle({commit}, title) {
|
|
commit('SET_SEARCH_TITLE', title);
|
|
}
|
|
|
|
export function setColorScheme({commit}, color) {
|
|
localStorage.setItem('color', color);
|
|
commit('SET_COLOR_SCHEME', color);
|
|
}
|
|
|
|
export function fetchEpisodes({commit}, data) {
|
|
commit('SET_LOADING_MODAL_DATA', true);
|
|
http(`${config.api}/episodes/${data.tmdb_id}`).then(response => {
|
|
commit('SET_MODAL_DATA', {
|
|
title: data.title,
|
|
episodes: response.data.episodes,
|
|
spoiler: response.data.spoiler
|
|
});
|
|
|
|
setTimeout(() => {
|
|
commit('SET_LOADING_MODAL_DATA', false);
|
|
}, 300);
|
|
});
|
|
} |