mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
feat: Shopping list UI overhaul - add wakelock (#4236)
Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
This commit is contained in:
parent
8fe1b0c123
commit
28b0190648
@ -62,15 +62,7 @@
|
|||||||
<RecipePageFooter :recipe="recipe" />
|
<RecipePageFooter :recipe="recipe" />
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
</v-card>
|
</v-card>
|
||||||
|
<WakelockSwitch/>
|
||||||
<div
|
|
||||||
v-if="recipe && wakeIsSupported"
|
|
||||||
class="d-print-none d-flex px-2"
|
|
||||||
:class="$vuetify.breakpoint.smAndDown ? 'justify-center' : 'justify-end'"
|
|
||||||
>
|
|
||||||
<v-switch v-model="wakeLock" small :label="$t('recipe.screen-awake')" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<RecipePageComments
|
<RecipePageComments
|
||||||
v-if="!recipe.settings.disableComments && !isEditForm && !isCookMode"
|
v-if="!recipe.settings.disableComments && !isEditForm && !isCookMode"
|
||||||
:recipe="recipe"
|
:recipe="recipe"
|
||||||
@ -91,7 +83,7 @@ import {
|
|||||||
onUnmounted,
|
onUnmounted,
|
||||||
useRoute,
|
useRoute,
|
||||||
} from "@nuxtjs/composition-api";
|
} from "@nuxtjs/composition-api";
|
||||||
import { invoke, until, useWakeLock } from "@vueuse/core";
|
import { invoke, until } from "@vueuse/core";
|
||||||
import RecipePageEditorToolbar from "./RecipePageParts/RecipePageEditorToolbar.vue";
|
import RecipePageEditorToolbar from "./RecipePageParts/RecipePageEditorToolbar.vue";
|
||||||
import RecipePageFooter from "./RecipePageParts/RecipePageFooter.vue";
|
import RecipePageFooter from "./RecipePageParts/RecipePageFooter.vue";
|
||||||
import RecipePageHeader from "./RecipePageParts/RecipePageHeader.vue";
|
import RecipePageHeader from "./RecipePageParts/RecipePageHeader.vue";
|
||||||
@ -194,40 +186,6 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
/** =============================================================
|
|
||||||
* Wake Lock
|
|
||||||
*/
|
|
||||||
|
|
||||||
const { isSupported: wakeIsSupported, isActive, request, release } = useWakeLock();
|
|
||||||
|
|
||||||
const wakeLock = computed({
|
|
||||||
get: () => isActive,
|
|
||||||
set: () => {
|
|
||||||
if (isActive.value) {
|
|
||||||
unlockScreen();
|
|
||||||
} else {
|
|
||||||
lockScreen();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
async function lockScreen() {
|
|
||||||
if (wakeIsSupported) {
|
|
||||||
console.log("Wake Lock Requested");
|
|
||||||
await request("screen");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function unlockScreen() {
|
|
||||||
if (wakeIsSupported || isActive) {
|
|
||||||
console.log("Wake Lock Released");
|
|
||||||
await release();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
onMounted(() => lockScreen());
|
|
||||||
onUnmounted(() => unlockScreen());
|
|
||||||
|
|
||||||
/** =============================================================
|
/** =============================================================
|
||||||
* Recipe Save Delete
|
* Recipe Save Delete
|
||||||
*/
|
*/
|
||||||
@ -308,9 +266,6 @@ export default defineComponent({
|
|||||||
isEditJSON,
|
isEditJSON,
|
||||||
isCookMode,
|
isCookMode,
|
||||||
toggleCookMode,
|
toggleCookMode,
|
||||||
|
|
||||||
wakeLock,
|
|
||||||
wakeIsSupported,
|
|
||||||
saveRecipe,
|
saveRecipe,
|
||||||
deleteRecipe,
|
deleteRecipe,
|
||||||
addStep,
|
addStep,
|
||||||
|
49
frontend/components/global/WakelockSwitch.vue
Normal file
49
frontend/components/global/WakelockSwitch.vue
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<template>
|
||||||
|
<div
|
||||||
|
v-if="wakeIsSupported"
|
||||||
|
class="d-print-none d-flex px-2"
|
||||||
|
:class="$vuetify.breakpoint.smAndDown ? 'justify-center' : 'justify-end'"
|
||||||
|
>
|
||||||
|
<v-switch v-model="wakeLock" small :label="$t('recipe.screen-awake')" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { defineComponent, computed, onMounted, onUnmounted } from "@nuxtjs/composition-api";
|
||||||
|
import { useWakeLock } from "@vueuse/core";
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
setup() {
|
||||||
|
const { isSupported: wakeIsSupported, isActive, request, release } = useWakeLock();
|
||||||
|
const wakeLock = computed({
|
||||||
|
get: () => isActive,
|
||||||
|
set: () => {
|
||||||
|
if (isActive.value) {
|
||||||
|
unlockScreen();
|
||||||
|
} else {
|
||||||
|
lockScreen();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
async function lockScreen() {
|
||||||
|
if (wakeIsSupported) {
|
||||||
|
console.log("Wake Lock Requested");
|
||||||
|
await request("screen");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function unlockScreen() {
|
||||||
|
if (wakeIsSupported || isActive) {
|
||||||
|
console.log("Wake Lock Released");
|
||||||
|
await release();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
onMounted(() => lockScreen());
|
||||||
|
onUnmounted(() => unlockScreen());
|
||||||
|
|
||||||
|
return {
|
||||||
|
wakeLock,
|
||||||
|
wakeIsSupported,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
@ -278,6 +278,7 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</v-lazy>
|
</v-lazy>
|
||||||
|
<WakelockSwitch/>
|
||||||
</v-container>
|
</v-container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user