Files
pihkaal-me/app/components/Settings/BottomScreen/Menus/User/Menu.vue

69 lines
1.7 KiB
Vue

<script setup lang="ts">
const props = defineProps<{
x: number;
y: number;
}>();
const { onRender } = useScreen();
const settingsStore = useSettingsStore();
const menusContext = inject<{
isSubmenuSelected: ComputedRef<boolean>;
selectedSubmenuParent: ComputedRef<string | null>;
}>("menusContext")!;
const { assets } = useAssets();
const isOpen = computed(
() => settingsStore.currentMenu === "user" && settingsStore.menuExpanded,
);
const isAnyOtherMenuOpen = computed(() => {
if (settingsStore.currentSubMenu) {
return !settingsStore.currentSubMenu.startsWith("user");
}
if (menusContext.isSubmenuSelected.value) {
return menusContext.selectedSubmenuParent.value !== "user";
}
return false;
});
const animation = useMenuAnimation("user", isOpen);
onRender((ctx) => {
ctx.translate(props.x, props.y);
if (isOpen.value || animation.playing) {
assets.images.settings.topScreen.user.birthday.draw(
ctx,
-48 + animation.stage2Offset,
-48 + animation.stage1Offset,
);
assets.images.settings.topScreen.user.snake.draw(
ctx,
48 - animation.stage2Offset,
-48 + animation.stage1Offset,
);
assets.images.settings.topScreen.user.color.draw(
ctx,
0,
-96 + animation.stage2Offset + animation.stage1Offset,
);
assets.images.settings.topScreen.user.userName.draw(
ctx,
0,
-48 + animation.stage1Offset,
);
assets.images.settings.topScreen.user.userActive.draw(ctx, 0, 0);
} else if (isAnyOtherMenuOpen.value) {
assets.images.settings.topScreen.user.userDisabled.draw(ctx, 0, 0);
} else {
assets.images.settings.topScreen.user.user.draw(ctx, 0, 0);
}
});
defineOptions({
render: () => null,
});
</script>