gamebrary/src/store/actions.js

180 lines
4.8 KiB
JavaScript
Raw Normal View History

2018-10-19 05:15:28 +00:00
import axios from 'axios';
2019-10-01 22:27:34 +00:00
import firebase from 'firebase/app';
import 'firebase/firestore';
2018-10-19 05:15:28 +00:00
2019-11-04 18:25:17 +00:00
const API_BASE = 'https://us-central1-gamebrary-8c736.cloudfunctions.net';
// const API_BASE = 'http://localhost:5000/gamebrary-8c736/us-central1';
2018-10-19 05:15:28 +00:00
export default {
2019-11-08 19:56:03 +00:00
LOAD_GAMES({ commit }, gameList) {
return new Promise((resolve, reject) => {
axios.get(`${API_BASE}/games?games=${gameList}`)
.then(({ data }) => {
commit('CACHE_GAME_DATA', data);
resolve();
}).catch(reject);
});
},
2018-10-19 05:15:28 +00:00
2019-11-08 19:56:03 +00:00
SAVE_LIST({ commit, state }, payload) {
const db = firebase.firestore();
2019-10-01 22:27:34 +00:00
2019-11-08 19:56:03 +00:00
db.collection('lists').doc(state.user.uid).set(payload, { merge: true })
.then(() => {
commit('SAVE_LISTS', payload);
});
},
2019-10-01 22:27:34 +00:00
SAVE_PROGRESSES({ state }) {
return new Promise((resolve, reject) => {
const db = firebase.firestore();
db.collection('progresses').doc(state.user.uid).set(state.progresses, { merge: true })
.then(() => resolve())
.catch(reject);
});
},
SAVE_PROGRESSES_NO_MERGE({ state }) {
return new Promise((resolve, reject) => {
const db = firebase.firestore();
db.collection('progresses').doc(state.user.uid).set(state.progresses, { merge: false })
.then(() => resolve())
.catch(reject);
});
},
2019-12-03 18:26:19 +00:00
SAVE_TAGS({ state }, tags) {
const db = firebase.firestore();
return new Promise((resolve, reject) => {
db.collection('tags').doc(state.user.uid).set(tags, { merge: true })
.then(() => resolve())
.catch(reject);
});
},
SAVE_TAGS_NO_MERGE({ state }, tags) {
const db = firebase.firestore();
return new Promise((resolve, reject) => {
db.collection('tags').doc(state.user.uid).set(tags, { merge: false })
.then(() => resolve())
.catch(reject);
});
},
SAVE_NOTES({ state }) {
return new Promise((resolve, reject) => {
const db = firebase.firestore();
db.collection('notes').doc(state.user.uid).set(state.notes, { merge: true })
.then(() => resolve())
.catch(reject);
});
},
SAVE_NOTES_NO_MERGE({ state }) {
return new Promise((resolve, reject) => {
const db = firebase.firestore();
db.collection('notes').doc(state.user.uid).set(state.notes, { merge: false })
.then(() => resolve())
.catch(reject);
});
},
2019-11-08 19:56:03 +00:00
SAVE_LIST_NO_MERGE({ commit, state }, payload) {
const db = firebase.firestore();
2019-11-04 22:08:30 +00:00
2019-11-08 19:56:03 +00:00
db.collection('lists').doc(state.user.uid).set(payload, { merge: false })
.then(() => {
commit('SAVE_LISTS', payload);
});
},
2019-11-04 22:08:30 +00:00
2019-11-08 19:56:03 +00:00
SAVE_SETTINGS({ commit, state }, settings) {
const db = firebase.firestore();
2019-10-18 18:15:09 +00:00
2019-11-08 19:56:03 +00:00
return new Promise((resolve, reject) => {
db.collection('settings').doc(state.user.uid).set(settings, { merge: true })
.then(() => {
commit('SET_SETTINGS', settings);
resolve();
})
.catch(reject);
});
},
2019-10-18 18:15:09 +00:00
2020-08-15 00:02:34 +00:00
LOAD_RELEASES() {
2019-11-08 19:56:03 +00:00
return new Promise((resolve, reject) => {
axios.get('https://api.github.com/repos/romancm/gamebrary/releases')
.then(({ data }) => {
2020-08-15 00:02:34 +00:00
resolve(data);
}).catch(reject);
});
},
LOAD_GITHUB_REPOSITORY() {
return new Promise((resolve, reject) => {
axios.get('https://api.github.com/repos/romancm/gamebrary')
.then(({ data }) => {
resolve(data);
}).catch(reject);
});
},
LOAD_GITHUB_README() {
2020-08-15 00:02:34 +00:00
return new Promise((resolve, reject) => {
axios.get('https://raw.githubusercontent.com/romancm/gamebrary/master/README.md')
.then(({ data }) => {
resolve(data);
2019-11-08 19:56:03 +00:00
}).catch(reject);
});
},
2019-02-08 05:46:29 +00:00
2019-11-08 19:56:03 +00:00
LOAD_PUBLIC_GAMES({ commit }, gameList) {
return new Promise((resolve, reject) => {
axios.get(`${API_BASE}/games?games=${gameList}`)
.then(({ data }) => {
commit('SET_PUBLIC_GAME_DATA', data);
resolve();
}).catch(reject);
});
},
2018-11-21 02:43:10 +00:00
2020-08-15 00:02:34 +00:00
LOAD_GAME(context, gameId) {
2019-11-08 19:56:03 +00:00
return new Promise((resolve, reject) => {
axios.get(`${API_BASE}/game?gameId=${gameId}`)
.then(({ data }) => {
2020-08-15 00:02:34 +00:00
const [game] = data;
resolve(game);
2019-11-08 19:56:03 +00:00
}).catch(reject);
});
},
2018-11-17 22:21:29 +00:00
2019-11-08 19:56:03 +00:00
SEARCH({ commit, state }, searchText) {
return new Promise((resolve, reject) => {
axios.get(`${API_BASE}/search?search=${searchText}&platform=${state.platform.id}`)
.then(({ data }) => {
commit('SET_SEARCH_RESULTS', data);
commit('CACHE_GAME_DATA', data);
resolve();
}).catch(reject);
});
},
2018-11-27 06:46:01 +00:00
2019-11-08 19:56:03 +00:00
SEND_WELCOME_EMAIL(context, additionalUserInfo) {
return new Promise((resolve, reject) => {
if (additionalUserInfo && additionalUserInfo.profile) {
axios.get(`${API_BASE}/email?address=${additionalUserInfo.profile.email}&template_id=welcome`)
.catch(reject);
} else {
reject();
}
});
},
2018-10-19 05:15:28 +00:00
};