- {{ snackbarMsg }}
+ {{ GET_SNACKBAR_MESSAGE }}
@@ -174,7 +171,9 @@
// Custom css
import './assets/css/style.css';
-import { mapActions, mapGetters, mapState } from 'vuex';
+import {
+ mapActions, mapGetters, mapMutations, mapState,
+} from 'vuex';
import fscreen from 'fscreen';
export default {
@@ -189,12 +188,8 @@ export default {
data() {
return {
- fixed: false,
- initialized: false,
donateDialog: false,
-
- snackbar: false,
- snackbarMsg: false,
+ appIsFullscreen: false,
items: [
{
@@ -204,6 +199,7 @@ export default {
title: 'Signout',
},
],
+
links: [
{
title: 'Github',
@@ -216,7 +212,6 @@ export default {
href: 'https://discord.gg/fKQB3yt',
},
],
- appIsFullscreen: false,
};
},
@@ -228,6 +223,8 @@ export default {
'GET_CONFIGURATION_FETCHED',
'GET_CONFIGURATION_FETCHED_ERROR',
'GET_ACTIVE_METADATA',
+ 'GET_SNACKBAR_MESSAGE',
+ 'GET_SNACKBAR_OPEN',
]),
...mapGetters('plex', [
@@ -238,6 +235,7 @@ export default {
...mapGetters('plexclients', [
'GET_CHOSEN_CLIENT_ID',
'GET_ACTIVE_SERVER_ID',
+ 'GET_PLEX_CLIENT_TIMELINE',
]),
...mapGetters('synclounge', [
@@ -304,14 +302,14 @@ export default {
this.SET_RIGHT_SIDEBAR_OPEN(true);
}
},
+
+ GET_PLEX_CLIENT_TIMELINE() {
+ // This handles regular plex clients (nonslplayer) playback changes
+
+ },
},
mounted() {
- window.EventBus.$on('notification', (msg) => {
- this.snackbarMsg = msg;
- this.snackbar = true;
- });
-
fscreen.addEventListener('fullscreenchange', () => {
const isFullscreen = fscreen.fullscreenElement !== null;
this.appIsFullscreen = isFullscreen;
@@ -337,6 +335,7 @@ export default {
'SET_RIGHT_SIDEBAR_OPEN',
'TOGGLE_RIGHT_SIDEBAR_OPEN',
'FETCH_CONFIG',
+ 'DISPLAY_NOTIFICATION',
]),
...mapActions('plex', [
@@ -344,8 +343,12 @@ export default {
'FETCH_PLEX_USER',
]),
- sendNotification() {
- window.EventBus.$emit('notification', 'Copied to clipboard');
+ ...mapMutations([
+ 'SET_SNACKBAR_OPEN',
+ ]),
+
+ onInviteCopied() {
+ return this.DISPLAY_NOTIFICATION('Copied to clipboard');
},
goFullscreen() {
diff --git a/src/store/actions.js b/src/store/actions.js
index 17ea1099..fe5a6e9c 100644
--- a/src/store/actions.js
+++ b/src/store/actions.js
@@ -112,7 +112,8 @@ export default {
}
},
- DISPLAY_NOTIFICATION: (context, message) => {
- window.EventBus.$emit('notification', message);
+ DISPLAY_NOTIFICATION: ({ commit }, message) => {
+ commit('SET_SNACKBAR_MESSAGE', message);
+ commit('SET_SNACKBAR_OPEN', true);
},
};
diff --git a/src/store/getters.js b/src/store/getters.js
index 3df46514..1e3957f8 100644
--- a/src/store/getters.js
+++ b/src/store/getters.js
@@ -24,4 +24,6 @@ export default {
GET_CONFIGURATION_FETCHED: (state) => state.configurationFectched,
GET_CONFIGURATION_FETCHED_ERROR: (state) => state.configurationFetchedError,
GET_ACTIVE_METADATA: (state) => state.activeMetadata,
+ GET_SNACKBAR_MESSAGE: (state) => state.snackbarMessage,
+ GET_SNACKBAR_OPEN: (state) => state.snackbarOpen,
};
diff --git a/src/store/mutations.js b/src/store/mutations.js
index 1701ad6e..42674e2f 100644
--- a/src/store/mutations.js
+++ b/src/store/mutations.js
@@ -34,4 +34,12 @@ export default {
SET_ACTIVE_METADATA: (state, metadata) => {
state.activeMetadata = metadata;
},
+
+ SET_SNACKBAR_MESSAGE: (state, message) => {
+ state.snackbarMessage = message;
+ },
+
+ SET_SNACKBAR_OPEN: (state, open) => {
+ state.snackbarOpen = open;
+ },
};
diff --git a/src/store/state.js b/src/store/state.js
index 8907be15..9386aaaf 100644
--- a/src/store/state.js
+++ b/src/store/state.js
@@ -20,6 +20,9 @@ const state = () => ({
// Used to help with the crumbs
activeMetadata: null,
+
+ snackbarMessage: null,
+ snackbarOpen: false,
});
export default state;