refac: utilGame/getNPCColor

This commit is contained in:
2022-08-26 01:06:43 +09:00
parent 63771da876
commit 8a5a3b67f7
17 changed files with 52 additions and 30 deletions
+3 -3
View File
@@ -5,7 +5,7 @@
<div
class="col-7 align-self-center"
:style="{
color: getNpcColor(officer.npcType ?? 0),
color: getNPCColor(officer.npcType ?? 0),
}"
>
{{ officer.name }}
@@ -16,7 +16,7 @@
<div class="d-grid mb-1 py-1 only500px bg1 center">
<div
:style="{
color: getNpcColor(officer.npcType ?? 0),
color: getNPCColor(officer.npcType ?? 0),
fontSize: '1.2em',
}"
>
@@ -271,7 +271,7 @@ import type { CommandItem, TurnObj } from "@/defs";
import { QueryActionHelper, type TurnObjWithTime } from "@/util/QueryActionHelper";
import type { Args } from "@/processing/args";
import type { StoredActionsHelper } from "@/util/StoredActionsHelper";
import { getNpcColor } from "@/common_legacy";
import { getNPCColor } from "@/utilGame";
import { BButton, BDropdownItem, BDropdownText, BButtonGroup, BDropdownDivider, BDropdown } from "bootstrap-vue-3";
import CommandSelectForm from "@/components/CommandSelectForm.vue";
import SimpleClock from "@/components/SimpleClock.vue";
+2 -2
View File
@@ -94,7 +94,7 @@ import type {
CellClickedEvent,
} from "ag-grid-community";
import { ProvidedColumnGroup } from "ag-grid-community";
import { getNpcColor } from "@/common_legacy";
import { getNPCColor } from "@/utilGame";
import type {
ValueGetterParams,
ValueFormatterFunc,
@@ -523,7 +523,7 @@ const columnRawDefs = ref<Partial<Record<headerType, GenColDef | GenColGroupDef>
cellStyle: (val: CellClassParams<GeneralListItem>) => {
const gen = unwrap(val.data);
const style: StyleValue = {
color: getNpcColor(gen.npc),
color: getNPCColor(gen.npc),
};
return style as CellStyle;
},