diff --git a/src/TheDahboard.vue b/src/TheDahboard.vue index 83b7082..54d7962 100644 --- a/src/TheDahboard.vue +++ b/src/TheDahboard.vue @@ -3,6 +3,7 @@ import { onMounted, watch } from 'vue' import TheLiveLogs from './components/TheLiveLogs.vue' import TheScores from './components/TheScores.vue' import { resetState, fullReload, socketConnected } from "@/socket"; +import { fullscreenModeOn } from "@/settings.js" watch(socketConnected, (isConnected) => { @@ -21,6 +22,6 @@ onMounted(() => { diff --git a/src/components/LiveLogsUserActivityGraph.vue b/src/components/LiveLogsUserActivityGraph.vue index aeaddd5..746d3cd 100644 --- a/src/components/LiveLogsUserActivityGraph.vue +++ b/src/components/LiveLogsUserActivityGraph.vue @@ -54,14 +54,14 @@ \ No newline at end of file diff --git a/src/components/TheLiveLogs.vue b/src/components/TheLiveLogs.vue index 6134b54..5912932 100644 --- a/src/components/TheLiveLogs.vue +++ b/src/components/TheLiveLogs.vue @@ -30,6 +30,7 @@ + \ No newline at end of file diff --git a/src/components/TheLiveLogsActivityGraph.vue b/src/components/TheLiveLogsActivityGraph.vue index 9868b40..dd416a5 100644 --- a/src/components/TheLiveLogsActivityGraph.vue +++ b/src/components/TheLiveLogsActivityGraph.vue @@ -62,7 +62,7 @@ + diff --git a/src/components/scoreViews/TheFullScreenScoreGrid.vue b/src/components/scoreViews/TheFullScreenScoreGrid.vue new file mode 100644 index 0000000..b8668f9 --- /dev/null +++ b/src/components/scoreViews/TheFullScreenScoreGrid.vue @@ -0,0 +1,244 @@ + + + \ No newline at end of file diff --git a/src/components/scoreViews/TheScoreTable.vue b/src/components/scoreViews/TheScoreTable.vue new file mode 100644 index 0000000..699d8b6 --- /dev/null +++ b/src/components/scoreViews/TheScoreTable.vue @@ -0,0 +1,151 @@ + + + \ No newline at end of file diff --git a/src/settings.js b/src/settings.js index 567cfa7..32c2866 100644 --- a/src/settings.js +++ b/src/settings.js @@ -1,4 +1,6 @@ import { ref, computed } from 'vue' export const darkModeOn = ref(true) -export const darkModeEnabled = computed(() => darkModeOn.value) \ No newline at end of file +export const darkModeEnabled = computed(() => darkModeOn.value) + +export const fullscreenModeOn = ref(false) \ No newline at end of file