catalog editor: load catalog, region, season data

This commit is contained in:
Seth Ladygo
2019-04-28 02:46:37 -07:00
parent 6fc247c426
commit 28651477e3
7 changed files with 140 additions and 42 deletions

View File

@ -1,33 +1,12 @@
import Vue from 'vue'
import Vuex from 'vuex'
import axios from 'axios'
Vue.use(Vuex)
export const store = new Vuex.Store({
state: {
catalog: {
name: 'my catalog',
owner: 12,
created: '2019-04-04T22:00:14Z',
sections: [
{ id: 1,
name: 'Trailhead (Men)',
pages: [
[{ name: 'model name override', size: 2, ids: ['1001001', '1001002'] },
{ size: 1, ids: ['1001011', '1001012'] }], // one page, two blocks
[{ size: 1,
ids: ['1001021', '1001022', '1001023', '1001024', '1001025',
'1001026', '1001027', '1001028', '1001029'] }],
],
},
{ id: 2,
name: 'Waterfront (Men)',
pages: [
[{ size: 1, ids: ['1001021'] }],
],
},
],
},
catalog: null,
materials: {
'1001001': { id: '1001001', // call them sap maybe?
model: 'AW123',
@ -99,6 +78,7 @@ export const store = new Vuex.Store({
selectedFamilyID: null,
selectedModelID: null,
selectedMaterial: null,
loadingCatalog: true,
},
getters: {
//
@ -113,6 +93,23 @@ export const store = new Vuex.Store({
CAT_SECTION: (state) => (id) => {
return state.catalog.sections.find(s => s.id === id)
},
catalogSeason(state) {
if (state.catalog != null) {
return state.catalog.season
} else {
return null
}
},
catalogRegion(state) {
if (state.catalog != null) {
return state.catalog.region
} else {
return null
}
},
//
// selection info
//
@ -137,6 +134,10 @@ export const store = new Vuex.Store({
MATERIAL: (state) => (id) => {
return state.materials[id]
},
getLoadingCatalog(state) {
return state.loadingCatalog
},
},
mutations: {
SET_CAT_SECTIONS: (state, payload) => {
@ -165,6 +166,14 @@ export const store = new Vuex.Store({
SET_SELECTED_MATERIAL_ID: (state, payload) => {
state.selectedMaterial = payload
},
setCatalog(state, cat) {
state.catalog = cat
},
setLoadingCatalog(state, value) {
state.loadingCatalog = value
},
},
actions: {
SET_CAT_SECTIONS: (context, payload) => {
@ -189,5 +198,25 @@ export const store = new Vuex.Store({
// let { data } = await Axios.post('http://yourwebsite.com/api/todo')
// context.commit('ADD_TODO',payload)
// },
async loadCatalog({ commit }, id) {
try {
commit('setLoadingCatalog', true)
const response = await axios.get('/api/v1/catalogs/id/' + id)
if ('catalog' in response.data) {
console.log('recieved catalog:', response.data.catalog)
commit('setCatalog', response.data.catalog)
} else {
console.log('no catalog')
commit('setCatalog', null)
}
commit('setLoadingCatalog', false)
} catch (error) {
// TODO set loading error property
console.error('error loading catalog: ', error)
commit('setCatalog', null)
commit('setLoadingCatalog', false)
}
},
}
})