80 lines
2.8 KiB
Vue
80 lines
2.8 KiB
Vue
<template>
|
|
<f7-sheet swipe-to-close swipe-handler=".swipe-handler"
|
|
:opened="show"
|
|
@sheet:open="onSheetOpen" @sheet:closed="onSheetClosed">
|
|
<f7-toolbar>
|
|
<div class="swipe-handler"></div>
|
|
<div class="left"></div>
|
|
<div class="right">
|
|
<f7-link sheet-close :text="tt('Done')"></f7-link>
|
|
</div>
|
|
</f7-toolbar>
|
|
<f7-page-content>
|
|
<f7-block class="margin-vertical no-padding">
|
|
<div class="grid padding-vertical-half padding-horizontal-half"
|
|
:class="{ 'row-has-selected-item': hasSelectedIcon(row) }"
|
|
:style="`grid-template-columns: repeat(${itemPerRow}, minmax(0, 1fr));`"
|
|
:key="idx" v-for="(row, idx) in allColorRows">
|
|
<div class="text-align-center" :key="colorInfo.color" v-for="colorInfo in row">
|
|
<ItemIcon icon-type="fixed-f7" icon-id="app_fill" :color="colorInfo.color" @click="onColorClicked(colorInfo)">
|
|
<f7-badge color="default" class="right-bottom-icon" v-if="currentValue && currentValue === colorInfo.color">
|
|
<f7-icon f7="checkmark_alt"></f7-icon>
|
|
</f7-badge>
|
|
</ItemIcon>
|
|
</div>
|
|
</div>
|
|
</f7-block>
|
|
</f7-page-content>
|
|
</f7-sheet>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, computed } from 'vue';
|
|
|
|
import { useI18n } from '@/locales/helpers.ts';
|
|
|
|
import type { ColorValue, ColorInfo } from '@/core/color.ts';
|
|
import { arrayContainsFieldValue } from '@/lib/common.ts';
|
|
import { getColorsInRows } from '@/lib/color.ts';
|
|
import { type Framework7Dom, scrollToSelectedItem } from '@/lib/ui/mobile.ts';
|
|
|
|
const props = defineProps<{
|
|
modelValue: ColorValue;
|
|
show: boolean;
|
|
columnCount?: number;
|
|
allColorInfos: ColorValue[];
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'update:modelValue', value: ColorValue): void;
|
|
(e: 'update:show', value: boolean): void;
|
|
}>();
|
|
|
|
const { tt } = useI18n();
|
|
|
|
const currentValue = ref<ColorValue>(props.modelValue);
|
|
const itemPerRow = ref<number>(props.columnCount || 7);
|
|
|
|
const allColorRows = computed<ColorInfo[][]>(() => {
|
|
return getColorsInRows(props.allColorInfos, itemPerRow.value);
|
|
});
|
|
|
|
function onColorClicked(colorInfo: ColorInfo): void {
|
|
currentValue.value = colorInfo.color;
|
|
emit('update:modelValue', currentValue.value);
|
|
}
|
|
|
|
function hasSelectedIcon(row: ColorInfo[]): boolean {
|
|
return arrayContainsFieldValue(row, 'id', currentValue.value);
|
|
}
|
|
|
|
function onSheetOpen(event: { $el: Framework7Dom }): void {
|
|
currentValue.value = props.modelValue;
|
|
scrollToSelectedItem(event.$el, '.page-content', '.row-has-selected-item');
|
|
}
|
|
|
|
function onSheetClosed(): void {
|
|
emit('update:show', false);
|
|
}
|
|
</script>
|