97 lines
2.9 KiB
Vue
97 lines
2.9 KiB
Vue
<template>
|
|
<f7-sheet :class="{ 'icon-selection-huge-sheet': hugeIconRows }" :opened="show" @sheet:open="onSheetOpen" @sheet:closed="onSheetClosed">
|
|
<f7-toolbar>
|
|
<div class="left"></div>
|
|
<div class="right">
|
|
<f7-link sheet-close :text="$t('Done')"></f7-link>
|
|
</div>
|
|
</f7-toolbar>
|
|
<f7-page-content>
|
|
<f7-block class="margin-vertical">
|
|
<f7-row class="padding-vertical-half padding-horizontal-half" v-for="(row, idx) in allIconRows" :key="idx">
|
|
<f7-col class="text-align-center" v-for="iconInfo in row" :key="iconInfo.id">
|
|
<f7-icon :icon="iconInfo.icon" :style="{ color: '#' + (color || '000000') }" @click.native="onIconClicked(iconInfo)">
|
|
<f7-badge color="default" class="right-bottom-icon" v-if="currentValue && currentValue === iconInfo.id">
|
|
<f7-icon f7="checkmark_alt"></f7-icon>
|
|
</f7-badge>
|
|
</f7-icon>
|
|
</f7-col>
|
|
<f7-col v-for="idx in (itemPerRow - row.length)" :key="idx"></f7-col>
|
|
</f7-row>
|
|
</f7-block>
|
|
</f7-page-content>
|
|
</f7-sheet>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: [
|
|
'value',
|
|
'color',
|
|
'columnCount',
|
|
'show',
|
|
'allIconInfos'
|
|
],
|
|
data() {
|
|
const self = this;
|
|
|
|
return {
|
|
currentValue: self.value,
|
|
itemPerRow: self.columnCount || 7
|
|
}
|
|
},
|
|
computed: {
|
|
allIconRows() {
|
|
const ret = [];
|
|
let rowCount = 0;
|
|
|
|
for (let iconInfoId in this.allIconInfos) {
|
|
if (!Object.prototype.hasOwnProperty.call(this.allIconInfos, iconInfoId)) {
|
|
continue;
|
|
}
|
|
|
|
const iconInfo = this.allIconInfos[iconInfoId];
|
|
|
|
if (!ret[rowCount]) {
|
|
ret[rowCount] = [];
|
|
} else if (ret[rowCount] && ret[rowCount].length >= this.itemPerRow) {
|
|
rowCount++;
|
|
ret[rowCount] = [];
|
|
}
|
|
|
|
ret[rowCount].push({
|
|
id: iconInfoId,
|
|
icon: iconInfo.icon
|
|
});
|
|
}
|
|
|
|
return ret;
|
|
},
|
|
hugeIconRows() {
|
|
return this.allIconRows.length > 10;
|
|
}
|
|
},
|
|
methods: {
|
|
onIconClicked(iconInfo) {
|
|
this.currentValue = iconInfo.id;
|
|
this.$emit('input', this.currentValue);
|
|
this.$emit('update:show', false);
|
|
},
|
|
onSheetOpen() {
|
|
this.currentValue = this.value;
|
|
},
|
|
onSheetClosed() {
|
|
this.$emit('update:show', false);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@media (min-height: 630px) {
|
|
.icon-selection-huge-sheet {
|
|
height: 400px;
|
|
}
|
|
}
|
|
</style>
|