Moved snackbars to their own store and component
This commit is contained in:
41
app/imports/ui/components/snackbars/Snackbars.vue
Normal file
41
app/imports/ui/components/snackbars/Snackbars.vue
Normal file
@@ -0,0 +1,41 @@
|
||||
<template lang="html">
|
||||
<v-snackbar
|
||||
v-if="snackbar"
|
||||
:key="snackbar.text"
|
||||
auto-height
|
||||
bottom
|
||||
:value="true"
|
||||
:timeout="0"
|
||||
>
|
||||
{{ snackbar.text }}
|
||||
<v-btn
|
||||
v-if="snackbar.callback"
|
||||
flat
|
||||
icon
|
||||
@click="snackbar.callback"
|
||||
>
|
||||
<v-icon>{{ snackbar.callbackName }}</v-icon>
|
||||
</v-btn>
|
||||
<v-btn
|
||||
v-if="snackbar.showCloseButton"
|
||||
flat
|
||||
icon
|
||||
@click="$store.dispatch('closeSnackbar')"
|
||||
>
|
||||
<v-icon>close</v-icon>
|
||||
</v-btn>
|
||||
</v-snackbar>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
computed: {
|
||||
snackbar(){
|
||||
return this.$store.state.snackbars.snackbars[0];
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="css" scoped>
|
||||
</style>
|
||||
47
app/imports/ui/components/snackbars/snackboxStore.js
Normal file
47
app/imports/ui/components/snackbars/snackboxStore.js
Normal file
@@ -0,0 +1,47 @@
|
||||
const snackbarStore = {
|
||||
state: {
|
||||
snackbars: [],
|
||||
snackbarTimout: undefined,
|
||||
},
|
||||
mutations: {
|
||||
addSnackbar(state, value){
|
||||
state.snackbars.push(value)
|
||||
},
|
||||
closeCurrentSnackbar (state){
|
||||
state.snackbars.shift();
|
||||
},
|
||||
cancelSnackbarTimeout (state){
|
||||
if(state.snackbarTimout){
|
||||
clearTimeout(state.snackbarTimout);
|
||||
}
|
||||
},
|
||||
setSnackbarTimout(state, value){
|
||||
state.snackbarTimout = value;
|
||||
},
|
||||
},
|
||||
actions: {
|
||||
snackbar({dispatch, commit}, value){
|
||||
// value = {
|
||||
// text,
|
||||
// showCloseButton,
|
||||
// callback,
|
||||
// callbackName
|
||||
// }
|
||||
commit('addSnackbar', value);
|
||||
commit('setSnackbarTimout', setTimeout(() => {
|
||||
dispatch('closeSnackbar');
|
||||
}, 5000));
|
||||
},
|
||||
closeSnackbar({dispatch, commit, state}){
|
||||
commit('closeCurrentSnackbar');
|
||||
commit('cancelSnackbarTimeout');
|
||||
if (state.snackbars.length){
|
||||
commit('setSnackbarTimout', setTimeout(() => {
|
||||
dispatch('closeSnackbar');
|
||||
}, 5000));
|
||||
}
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
export default snackbarStore;
|
||||
Reference in New Issue
Block a user