- eslint에 prettier 조합 - prettierrc에 width 120, tabWidth 2 - gameStor->map_theme 제거 - map_theme, mapTheme를 GameConst::$mapName으로 대체 - eslint에서 vue/vue3-essential 대신 vue3-recommended 적용 - vue/max-attributes-per-line 완화 - vue/v-on-event-hyphenation 해제 - vue/attribute-hyphenation 해제 - 일부 tsc import type warning 해결 - 일부 vue template type warning 해결 - 일부 vue SFC를 script setup으로 변경 - TipTap - TopBackBar - BottomBackBar - BoardArticle - ProcessCity
178 lines
4.9 KiB
Vue
178 lines
4.9 KiB
Vue
<template>
|
|
<v-multiselect
|
|
v-model="selectedGeneral"
|
|
class="selectedGeneral"
|
|
:allow-empty="false"
|
|
:options="forFind"
|
|
:group-select="false"
|
|
:group-values="groupByNation ? 'values' : undefined"
|
|
group-label="nationID"
|
|
label="searchText"
|
|
track-by="value"
|
|
:show-labels="false"
|
|
selectLabel="선택(엔터)"
|
|
selectGroupLabel=""
|
|
selectedLabel="선택됨"
|
|
deselectLabel="해제(엔터)"
|
|
deselectGroupLabel=""
|
|
placeholder="장수 선택"
|
|
:maxHeight="400"
|
|
:searchable="searchable"
|
|
>
|
|
<template #option="props">
|
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
|
<div v-if="props.option.title" v-html="props.option.title" />
|
|
<div
|
|
v-if="props.option.$groupLabel !== undefined"
|
|
class="margin-filler"
|
|
:style="{
|
|
backgroundColor: groupByNation?.get(props.option.$groupLabel)?.color,
|
|
color: isBrightColor(groupByNation?.get(props.option.$groupLabel)?.color ?? '#ffffff') ? 'black' : 'white',
|
|
}"
|
|
>
|
|
{{ groupByNation?.get(props.option.$groupLabel)?.name }}
|
|
</div>
|
|
</template>
|
|
<template #singleLabel="props">
|
|
{{ props.option.simpleName }}
|
|
{{ groupByNation ? `[${groupByNation.get(props.option.obj.nationID)?.name}]` : undefined }}
|
|
</template>
|
|
</v-multiselect>
|
|
</template>
|
|
<script lang="ts">
|
|
import { getNpcColor } from "@/common_legacy";
|
|
import { convertSearch초성 } from "@/util/convertSearch초성";
|
|
import { isBrightColor } from "@/util/isBrightColor";
|
|
import { unwrap } from "@/util/unwrap";
|
|
import { defineComponent, type PropType } from "vue";
|
|
import VueTypes from "vue-types";
|
|
import type { procGeneralItem, procGeneralList, procNationItem } from "./processingRes";
|
|
|
|
type SelectedGeneral = {
|
|
value: number;
|
|
searchText: string;
|
|
title: string;
|
|
simpleName: string;
|
|
obj: procGeneralItem;
|
|
};
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
modelValue: VueTypes.number.isRequired,
|
|
generals: {
|
|
type: Array as PropType<procGeneralList>,
|
|
required: true,
|
|
},
|
|
textHelper: {
|
|
type: Function as PropType<(item: procGeneralItem) => string>,
|
|
required: false,
|
|
default: undefined,
|
|
},
|
|
groupByNation: {
|
|
type: Map as PropType<Map<number, procNationItem>>,
|
|
required: false,
|
|
default: undefined,
|
|
},
|
|
searchable: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: true,
|
|
},
|
|
},
|
|
emits: ["update:modelValue"],
|
|
data() {
|
|
const forFind: (
|
|
| SelectedGeneral
|
|
| {
|
|
values: SelectedGeneral[];
|
|
nationID: number;
|
|
}
|
|
)[] = [];
|
|
const forFindGroup = new Map<number, SelectedGeneral[]>();
|
|
const targets = new Map<number, SelectedGeneral>();
|
|
|
|
let selectedGeneral;
|
|
|
|
for (const gen of this.generals) {
|
|
let groupArray = forFind;
|
|
if (this.groupByNation) {
|
|
const nationID = gen.nationID ?? 0;
|
|
if (!forFindGroup.has(nationID)) {
|
|
const nationItem = unwrap(this.groupByNation.get(nationID));
|
|
let tmpArr: SelectedGeneral[] = [];
|
|
forFindGroup.set(nationID, tmpArr);
|
|
groupArray = tmpArr;
|
|
|
|
forFind.push({
|
|
nationID: nationItem.id,
|
|
values: tmpArr,
|
|
});
|
|
} else {
|
|
groupArray = unwrap(forFindGroup.get(nationID));
|
|
}
|
|
}
|
|
|
|
const nameColor = getNpcColor(gen.npc);
|
|
const name = nameColor ? `<span style="color:${nameColor}">${gen.name}</span>` : gen.name;
|
|
|
|
const obj: SelectedGeneral = {
|
|
value: gen.no,
|
|
title: this.textHelper ? this.textHelper(gen) : `${name} (${gen.leadership}/${gen.strength}/${gen.intel})`,
|
|
simpleName: gen.name,
|
|
searchText: convertSearch초성(gen.name).join("|"),
|
|
obj: gen,
|
|
};
|
|
if (gen.no == this.modelValue) {
|
|
selectedGeneral = obj;
|
|
}
|
|
groupArray.push(obj);
|
|
targets.set(gen.no, obj);
|
|
}
|
|
return {
|
|
selectedGeneral,
|
|
forFind,
|
|
targets,
|
|
isBrightColor,
|
|
};
|
|
},
|
|
watch: {
|
|
modelValue(val: number) {
|
|
const target = this.targets.get(val);
|
|
this.selectedGeneral = target;
|
|
},
|
|
selectedGeneral(val: SelectedGeneral) {
|
|
this.$emit("update:modelValue", val.value);
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
<style lang="scss">
|
|
@import "@scss/common/break_500px.scss";
|
|
@import "@scss/common/variables.scss";
|
|
@import "@scss/common/bootswatch_custom_variables.scss";
|
|
@import "bootstrap/scss/bootstrap-utilities.scss";
|
|
|
|
.selectedGeneral {
|
|
$vue-multiselect-bg: $gray-700;
|
|
$vue-multiselect-color: $gray-100;
|
|
$form-select-color: $gray-100;
|
|
$text-muted: $gray-400;
|
|
$dark: $gray-100;
|
|
$light: $gray-700;
|
|
$vue-multiselect-option-selected-bg: $gray-600;
|
|
@import "@scss/common/vue-multiselect.scss";
|
|
color: $vue-multiselect-color;
|
|
|
|
input {
|
|
color: $vue-multiselect-color;
|
|
}
|
|
|
|
.multiselect__option--group {
|
|
padding: 0;
|
|
}
|
|
.margin-filler {
|
|
padding: calc($vue-multiselect-padding-y + 0.17em) $vue-multiselect-padding-x;
|
|
}
|
|
}
|
|
</style>
|