refac: defineComponent => vue3 setup

This commit is contained in:
2022-07-12 00:28:08 +09:00
parent 87e063e03e
commit b31ee022af
7 changed files with 565 additions and 643 deletions
+17 -16
View File
@@ -1,9 +1,5 @@
<template> <template>
<div <div :class="[`chiefBox${chiefLevel}`, 'subRows']" :style="style" @click="onClick">
:class="[`chiefBox${chiefLevel}`, 'subRows']"
:style="style"
@click="$emit('click', this)"
>
<div <div
class="bg1 nameHeader" class="bg1 nameHeader"
:style="{ :style="{
@@ -33,15 +29,14 @@
</div> </div>
</div> </div>
</template> </template>
<script lang="ts"> <script setup lang="ts">
import { getNpcColor } from "@/common_legacy"; import { getNpcColor } from "@/common_legacy";
import type { ChiefResponse } from "@/defs/API/NationCommand"; import type { ChiefResponse } from "@/defs/API/NationCommand";
import { mb_strwidth } from "@/util/mb_strwidth"; import { mb_strwidth } from "@/util/mb_strwidth";
import { defineComponent, type PropType } from "vue"; import type { PropType } from "vue";
import VueTypes from "vue-types"; import VueTypes from "vue-types";
export default defineComponent({ defineProps({
props: {
chiefLevel: VueTypes.integer.isRequired, chiefLevel: VueTypes.integer.isRequired,
style: VueTypes.object.isRequired, style: VueTypes.object.isRequired,
officer: { officer: {
@@ -49,11 +44,17 @@ export default defineComponent({
default: undefined, default: undefined,
}, },
isMe: VueTypes.bool.isRequired, isMe: VueTypes.bool.isRequired,
}, });
emits: ["click"],
methods: { const emit = defineEmits<{
mb_strwidth, (event: "click", value: HTMLElement): void,
getNpcColor, }>();
},
}); function onClick(event: MouseEvent){
if(!event.target){
return;
}
const elem = event.target as HTMLElement;
emit("click", elem);
}
</script> </script>
+232 -261
View File
@@ -234,19 +234,8 @@
<BottomBar title="내무부" /> <BottomBar title="내무부" />
</BContainer> </BContainer>
</template> </template>
<script lang="ts">
import TipTap from "./components/TipTap.vue";
import TopBackBar from "@/components/TopBackBar.vue";
import BottomBar from "@/components/BottomBar.vue";
import { computed, defineComponent, reactive, ref, toRefs } from "vue";
import { isString } from "lodash";
import { type diplomacyState, diplomacyStateInfo, type NationStaticItem } from "./defs";
import { SammoAPI } from "./SammoAPI";
import { joinYearMonth } from "@/util/joinYearMonth";
import { parseYearMonth } from "@/util/parseYearMonth";
import { useToast, BContainer } from "bootstrap-vue-3";
import { unwrap } from "./util/unwrap";
<script lang="ts">
type NationItem = NationStaticItem & { type NationItem = NationStaticItem & {
cityCnt: number; cityCnt: number;
diplomacy: { diplomacy: {
@@ -292,285 +281,267 @@ declare const staticValues: {
max: number; max: number;
}; };
}; };
</script>
<script setup lang="ts">
import TipTap from "./components/TipTap.vue";
import TopBackBar from "@/components/TopBackBar.vue";
import BottomBar from "@/components/BottomBar.vue";
import { computed, reactive, ref, toRefs } from "vue";
import { isString } from "lodash";
import { type diplomacyState, diplomacyStateInfo, type NationStaticItem } from "./defs";
import { SammoAPI } from "./SammoAPI";
import { joinYearMonth } from "@/util/joinYearMonth";
import { parseYearMonth } from "@/util/parseYearMonth";
import { useToast, BContainer } from "bootstrap-vue-3";
import { unwrap } from "./util/unwrap";
export default defineComponent({ const toasts = unwrap(useToast());
components: { const self = reactive(staticValues);
TopBackBar, const {
BottomBar, editable,
TipTap, nationMsg,
BContainer, scoutMsg,
}, nationID,
setup() { year,
const toasts = unwrap(useToast()); month,
const self = reactive(staticValues); nationsList,
gold,
rice,
income,
policy,
warSettingCnt,
} = toRefs(self);
let oldNationMsg = staticValues.nationMsg; let oldNationMsg = staticValues.nationMsg;
const inEditNationMsg = ref(false); const inEditNationMsg = ref(false);
function enableEditNationMsg() { function enableEditNationMsg() {
inEditNationMsg.value = true; inEditNationMsg.value = true;
}
function rollbackNationMsg() {
inEditNationMsg.value = false;
self.nationMsg = oldNationMsg;
}
async function saveNationMsg() {
const msg = self.nationMsg;
try {
await SammoAPI.Nation.SetNotice({
msg,
});
oldNationMsg = msg;
inEditNationMsg.value = false;
toasts.info({
title: "변경",
body: "국가 방침을 변경했습니다.",
});
} catch (e) {
if (isString(e)) {
toasts.danger({
title: "에러",
body: e,
});
} }
console.error(e);
}
}
function rollbackNationMsg() { let oldScoutMsg = staticValues.scoutMsg;
inEditNationMsg.value = false; const inEditScoutMsg = ref(false);
self.nationMsg = oldNationMsg;
}
async function saveNationMsg() { function enableEditScoutMsg() {
const msg = self.nationMsg; inEditScoutMsg.value = true;
try { }
await SammoAPI.Nation.SetNotice({ function rollbackScoutMsg() {
msg, inEditScoutMsg.value = false;
}); self.scoutMsg = oldScoutMsg;
oldNationMsg = msg; }
inEditNationMsg.value = false; async function saveScoutMsg() {
toasts.info({ const msg = self.scoutMsg;
title: "변경", try {
body: "국가 방침을 변경했습니다.", await SammoAPI.Nation.SetScoutMsg({
}); msg,
} catch (e) { });
if (isString(e)) { oldScoutMsg = msg;
toasts.danger({ inEditScoutMsg.value = false;
title: "에러", toasts.info({
body: e, title: "변경",
}); body: "임관 권유문을 변경했습니다.",
} });
console.error(e); } catch (e) {
} if (isString(e)) {
toasts.danger({
title: "에러",
body: e,
});
} }
console.error(e);
}
}
let oldScoutMsg = staticValues.scoutMsg; const trackTiptapFormHeight = (target: string) => {
const inEditScoutMsg = ref(false); let form: HTMLElement | null = null;
let outerForm: HTMLElement | null = null;
function enableEditScoutMsg() { function handler() {
inEditScoutMsg.value = true; if (!form) {
form = document.querySelector(`${target} .ProseMirror`);
} }
function rollbackScoutMsg() { if (!outerForm) {
inEditScoutMsg.value = false; outerForm = document.querySelector(`${target} .tiptap-editor`);
self.scoutMsg = oldScoutMsg;
} }
async function saveScoutMsg() { if (!form || !outerForm) {
const msg = self.scoutMsg; return;
try {
await SammoAPI.Nation.SetScoutMsg({
msg,
});
oldScoutMsg = msg;
inEditScoutMsg.value = false;
toasts.info({
title: "변경",
body: "임관 권유문을 변경했습니다.",
});
} catch (e) {
if (isString(e)) {
toasts.danger({
title: "에러",
body: e,
});
}
console.error(e);
}
} }
const trackTiptapFormHeight = (target: string) => { const { height: clientHeight } = form.getBoundingClientRect();
let form: HTMLElement | null = null; const { height: parentHeight } = outerForm.getBoundingClientRect();
let outerForm: HTMLElement | null = null;
function handler() {
if (!form) {
form = document.querySelector(`${target} .ProseMirror`);
}
if (!outerForm) {
outerForm = document.querySelector(`${target} .tiptap-editor`);
}
if (!form || !outerForm) {
return;
}
const { height: clientHeight } = form.getBoundingClientRect(); if (parentHeight != clientHeight) {
const { height: parentHeight } = outerForm.getBoundingClientRect(); outerForm.style.height = `${clientHeight}px`;
}
}
window.addEventListener("orientationchange", handler, true);
if (parentHeight != clientHeight) { return handler;
outerForm.style.height = `${clientHeight}px`; };
} const trackNationMsgHeight = trackTiptapFormHeight("#noticeForm");
} const trackScoutMsgHeight = trackTiptapFormHeight("#scoutMsgForm");
window.addEventListener("orientationchange", handler, true);
return handler; const incomeGoldCity = computed(() => {
}; return (self.income.gold.city * self.policy.rate) / 100;
});
const incomeGoldCity = computed(() => { const incomeGold = computed(() => {
return (self.income.gold.city * self.policy.rate) / 100; return incomeGoldCity.value + self.income.gold.war;
}); });
const incomeGold = computed(() => { const incomeRiceCity = computed(() => {
return incomeGoldCity.value + self.income.gold.war; return (self.income.rice.city * self.policy.rate) / 100;
}); });
const incomeRiceCity = computed(() => { const incomeRiceWall = computed(() => {
return (self.income.rice.city * self.policy.rate) / 100; return (self.income.rice.wall * self.policy.rate) / 100;
}); });
const incomeRiceWall = computed(() => { const incomeRice = computed(() => {
return (self.income.rice.wall * self.policy.rate) / 100; return incomeRiceCity.value + incomeRiceWall.value;
}); });
const incomeRice = computed(() => { const outcomeByBill = computed(() => {
return incomeRiceCity.value + incomeRiceWall.value; return (self.outcome * self.policy.bill) / 100;
}); });
const outcomeByBill = computed(() => { let oldRate = staticValues.policy.rate;
return (self.outcome * self.policy.bill) / 100; async function setRate() {
const rate = self.policy.rate;
try {
await SammoAPI.Nation.SetRate({ amount: rate });
oldRate = rate;
toasts.info({
title: "변경",
body: "세율을 변경했습니다.",
}); });
} catch (e) {
let oldRate = staticValues.policy.rate; if (isString(e)) {
async function setRate() { toasts.danger({
const rate = self.policy.rate; title: "에러",
try { body: e,
await SammoAPI.Nation.SetRate({ amount: rate }); });
oldRate = rate;
toasts.info({
title: "변경",
body: "세율을 변경했습니다.",
});
} catch (e) {
if (isString(e)) {
toasts.danger({
title: "에러",
body: e,
});
}
console.error(e);
}
}
function rollbackRate() {
self.policy.rate = oldRate;
} }
console.error(e);
}
}
function rollbackRate() {
self.policy.rate = oldRate;
}
let oldBill = staticValues.policy.bill; let oldBill = staticValues.policy.bill;
async function setBill() { async function setBill() {
const bill = self.policy.bill; const bill = self.policy.bill;
try { try {
await SammoAPI.Nation.SetBill({ amount: bill }); await SammoAPI.Nation.SetBill({ amount: bill });
oldBill = bill; oldBill = bill;
toasts.info({ toasts.info({
title: "변경", title: "변경",
body: "지급률을 변경했습니다.", body: "지급률을 변경했습니다.",
}); });
} catch (e) { } catch (e) {
if (isString(e)) { if (isString(e)) {
toasts.danger({ toasts.danger({
title: "에러", title: "에러",
body: e, body: e,
}); });
}
console.error(e);
}
}
function rollbackBill() {
self.policy.bill = oldBill;
} }
console.error(e);
}
}
function rollbackBill() {
self.policy.bill = oldBill;
}
let oldSecretLimit = staticValues.policy.secretLimit; let oldSecretLimit = staticValues.policy.secretLimit;
async function setSecretLimit() { async function setSecretLimit() {
const secretLimit = self.policy.secretLimit; const secretLimit = self.policy.secretLimit;
try { try {
await SammoAPI.Nation.SetSecretLimit({ amount: secretLimit }); await SammoAPI.Nation.SetSecretLimit({ amount: secretLimit });
oldSecretLimit = secretLimit; oldSecretLimit = secretLimit;
toasts.info({ toasts.info({
title: "변경", title: "변경",
body: "기밀 권한을 변경했습니다.", body: "기밀 권한을 변경했습니다.",
}); });
} catch (e) { } catch (e) {
if (isString(e)) { if (isString(e)) {
toasts.danger({ toasts.danger({
title: "에러", title: "에러",
body: e, body: e,
}); });
}
self.policy.secretLimit = oldSecretLimit;
console.error(e);
}
}
function rollbackSecretLimit() {
self.policy.secretLimit = oldSecretLimit;
} }
self.policy.secretLimit = oldSecretLimit;
console.error(e);
}
}
function rollbackSecretLimit() {
self.policy.secretLimit = oldSecretLimit;
}
async function setBlockWar() { async function setBlockWar() {
try { try {
const result = await SammoAPI.Nation.SetBlockWar({ value: self.policy.blockWar }); const result = await SammoAPI.Nation.SetBlockWar({ value: self.policy.blockWar });
self.warSettingCnt.remain = result.availableCnt; self.warSettingCnt.remain = result.availableCnt;
toasts.info({ toasts.info({
title: "변경", title: "변경",
body: "전쟁 금지 설정을 변경했습니다.", body: "전쟁 금지 설정을 변경했습니다.",
}); });
} catch (e) { } catch (e) {
if (isString(e)) { if (isString(e)) {
toasts.danger({ toasts.danger({
title: "에러", title: "에러",
body: e, body: e,
}); });
}
self.policy.blockWar = !self.policy.blockWar;
console.error(e);
}
} }
self.policy.blockWar = !self.policy.blockWar;
console.error(e);
}
}
async function setBlockScout() { async function setBlockScout() {
try { try {
await SammoAPI.Nation.SetBlockScout({ value: self.policy.blockScout }); await SammoAPI.Nation.SetBlockScout({ value: self.policy.blockScout });
toasts.info({ toasts.info({
title: "변경", title: "변경",
body: "임관 설정을 변경했습니다.", body: "임관 설정을 변경했습니다.",
}); });
} catch (e) { } catch (e) {
if (isString(e)) { if (isString(e)) {
toasts.danger({ toasts.danger({
title: "에러", title: "에러",
body: e, body: e,
}); });
}
self.policy.blockScout = !self.policy.blockScout;
console.error(e);
}
} }
self.policy.blockScout = !self.policy.blockScout;
return { console.error(e);
toasts, }
}
...toRefs(self),
inEditNationMsg,
inEditScoutMsg,
enableEditNationMsg,
rollbackNationMsg,
saveNationMsg,
enableEditScoutMsg,
rollbackScoutMsg,
saveScoutMsg,
diplomacyStateInfo,
joinYearMonth,
parseYearMonth,
trackNationMsgHeight: trackTiptapFormHeight("#noticeForm"),
trackScoutMsgHeight: trackTiptapFormHeight("#scoutMsgForm"),
incomeGoldCity,
incomeGold,
incomeRiceCity,
incomeRiceWall,
incomeRice,
outcomeByBill,
setRate,
rollbackRate,
setBill,
rollbackBill,
setSecretLimit,
rollbackSecretLimit,
setBlockWar,
setBlockScout,
};
},
methods: {},
});
</script> </script>
+162 -165
View File
@@ -13,9 +13,9 @@
</div> </div>
</template> </template>
<script lang="ts"> <script setup lang="ts">
/// https://github.com/andi23rosca/drag-select-vue/blob/master/src/DragSelect.vue /// https://github.com/andi23rosca/drag-select-vue/blob/master/src/DragSelect.vue
import { defineComponent, ref, watch, onMounted, onBeforeUnmount, type PropType } from "vue"; import { ref, watch, onMounted, onBeforeUnmount, type PropType } from "vue";
import VueTypes from "vue-types"; import VueTypes from "vue-types";
function getDimensions(p1: coord, p2: coord): rect { function getDimensions(p1: coord, p2: coord): rect {
@@ -36,186 +36,183 @@ function collisionCheck(node1: DOMRect, node2: DOMRect): boolean {
type coord = { x: number; y: number }; type coord = { x: number; y: number };
type rect = { width: number; height: number }; type rect = { width: number; height: number };
export default defineComponent({ const props = defineProps({
props: { attribute: VueTypes.string.isRequired,
attribute: VueTypes.string.isRequired, color: VueTypes.string.def("#4299E1"),
color: VueTypes.string.def("#4299E1"), opacity: VueTypes.number.def(0.7),
opacity: VueTypes.number.def(0.7), modelValue: {
modelValue: { type: Object as PropType<Set<string>>,
type: Object as PropType<Set<string>>, required: false,
required: false, default: () => ref(new Set()),
default: () => ref(new Set()),
},
disabled: {
type: Boolean,
required: false,
default: false,
},
}, },
emits: ["update:modelValue", "dragDone", "dragStart"], disabled: {
setup(props, { emit }) { type: Boolean,
const intersected = ref<Set<string>>(props.modelValue); required: false,
const container = ref<HTMLElement>(); default: false,
},
});
watch(intersected, (val) => { const emit = defineEmits<{
emit("update:modelValue", val); (event: "update:modelValue", value: Set<string>): void;
}); (event: "dragDone", value: Set<string>): void;
watch(props.modelValue, (val) => { (event: "dragStart"): void;
if (intersected.value === val) { }>();
return;
}
intersected.value = val;
});
onMounted(() => { const intersected = ref<Set<string>>(props.modelValue);
if (!container.value) { const container = ref<HTMLElement>();
console.error(`Container is not referenced.`);
return;
}
const uContainer = container.value;
let containerRect = uContainer.getBoundingClientRect();
function getCoords(e: MouseEvent | Touch): coord { watch(intersected, (val) => {
return { emit("update:modelValue", val);
x: e.clientX - containerRect.left, });
y: e.clientY - containerRect.top, watch(props.modelValue, (val) => {
}; if (intersected.value === val) {
} return;
let children: HTMLCollection; }
let box = document.createElement("div"); intersected.value = val;
box.setAttribute("data-drag-box-component", ""); });
box.style.position = "absolute";
box.style.backgroundColor = props.color;
box.style.opacity = `${props.opacity}`;
let start = { x: 0, y: 0 };
let end = { x: 0, y: 0 };
function intersection() {
const rect = box.getBoundingClientRect();
const localIntersected = new Set<string>();
for (let i = 0; i < children.length; i++) {
if (collisionCheck(rect, children[i].getBoundingClientRect())) {
const attr = children[i].getAttribute(props.attribute);
if (children[i].hasAttribute(props.attribute)) {
localIntersected.add(attr as string);
}
}
}
let dismatch = false; onMounted(() => {
for (const oldVal of intersected.value) { if (!container.value) {
if (!localIntersected.has(oldVal)) { console.error(`Container is not referenced.`);
dismatch = true; return;
break; }
} const uContainer = container.value;
} let containerRect = uContainer.getBoundingClientRect();
if (!dismatch) {
for (const newVal of localIntersected) {
if (!intersected.value.has(newVal)) {
dismatch = true;
break;
}
}
}
if (dismatch) {
intersected.value = localIntersected;
}
}
function touchStart(e: TouchEvent) {
e.preventDefault();
startDrag(e.touches[0]);
}
function touchMove(e: TouchEvent) {
e.preventDefault();
drag(e.touches[0]);
}
let isMine = false; function getCoords(e: MouseEvent | Touch): coord {
function startDrag(e: MouseEvent | Touch) { return {
if (props.disabled) { x: e.clientX - containerRect.left,
return; y: e.clientY - containerRect.top,
};
}
let children: HTMLCollection;
let box = document.createElement("div");
box.setAttribute("data-drag-box-component", "");
box.style.position = "absolute";
box.style.backgroundColor = props.color;
box.style.opacity = `${props.opacity}`;
let start = { x: 0, y: 0 };
let end = { x: 0, y: 0 };
function intersection() {
const rect = box.getBoundingClientRect();
const localIntersected = new Set<string>();
for (let i = 0; i < children.length; i++) {
if (collisionCheck(rect, children[i].getBoundingClientRect())) {
const attr = children[i].getAttribute(props.attribute);
if (children[i].hasAttribute(props.attribute)) {
localIntersected.add(attr as string);
} }
containerRect = uContainer.getBoundingClientRect();
children = uContainer.children;
start = getCoords(e);
end = start;
document.addEventListener("mousemove", drag);
document.addEventListener("touchmove", touchMove);
box.style.top = start.y + "px";
box.style.left = start.x + "px";
uContainer.append(box);
intersection();
isMine = true;
emit("dragStart");
}
function drag(e: MouseEvent | Touch) {
if (props.disabled) {
return;
}
end = getCoords(e);
const dimensions = getDimensions(start, end);
if (end.x < start.x) {
box.style.left = end.x + "px";
}
if (end.y < start.y) {
box.style.top = end.y + "px";
}
box.style.width = dimensions.width + "px";
box.style.height = dimensions.height + "px";
intersection();
}
function endDrag() {
if (props.disabled) {
return;
}
start = { x: 0, y: 0 };
end = { x: 0, y: 0 };
box.style.width = "0";
box.style.height = "0";
document.removeEventListener("mousemove", drag);
document.removeEventListener("touchmove", touchMove);
box.remove();
if (isMine) {
emit("dragDone", intersected.value);
}
isMine = false;
} }
}
watch( let dismatch = false;
() => props.disabled, for (const oldVal of intersected.value) {
(disabledNext) => { if (!localIntersected.has(oldVal)) {
if (disabledNext) { dismatch = true;
uContainer.removeEventListener("mousedown", startDrag); break;
uContainer.removeEventListener("touchstart", touchStart); }
document.removeEventListener("mouseup", endDrag); }
document.removeEventListener("touchend", endDrag); if (!dismatch) {
} else { for (const newVal of localIntersected) {
uContainer.addEventListener("mousedown", startDrag); if (!intersected.value.has(newVal)) {
uContainer.addEventListener("touchstart", touchStart); dismatch = true;
document.addEventListener("mouseup", endDrag); break;
document.addEventListener("touchend", endDrag);
}
} }
); }
}
if (dismatch) {
intersected.value = localIntersected;
}
}
function touchStart(e: TouchEvent) {
e.preventDefault();
startDrag(e.touches[0]);
}
function touchMove(e: TouchEvent) {
e.preventDefault();
drag(e.touches[0]);
}
if (!props.disabled) { let isMine = false;
function startDrag(e: MouseEvent | Touch) {
if (props.disabled) {
return;
}
containerRect = uContainer.getBoundingClientRect();
children = uContainer.children;
start = getCoords(e);
end = start;
document.addEventListener("mousemove", drag);
document.addEventListener("touchmove", touchMove);
box.style.top = start.y + "px";
box.style.left = start.x + "px";
uContainer.append(box);
intersection();
isMine = true;
emit("dragStart");
}
function drag(e: MouseEvent | Touch) {
if (props.disabled) {
return;
}
end = getCoords(e);
const dimensions = getDimensions(start, end);
if (end.x < start.x) {
box.style.left = end.x + "px";
}
if (end.y < start.y) {
box.style.top = end.y + "px";
}
box.style.width = dimensions.width + "px";
box.style.height = dimensions.height + "px";
intersection();
}
function endDrag() {
if (props.disabled) {
return;
}
start = { x: 0, y: 0 };
end = { x: 0, y: 0 };
box.style.width = "0";
box.style.height = "0";
document.removeEventListener("mousemove", drag);
document.removeEventListener("touchmove", touchMove);
box.remove();
if (isMine) {
emit("dragDone", intersected.value);
}
isMine = false;
}
watch(
() => props.disabled,
(disabledNext) => {
if (disabledNext) {
uContainer.removeEventListener("mousedown", startDrag);
uContainer.removeEventListener("touchstart", touchStart);
document.removeEventListener("mouseup", endDrag);
document.removeEventListener("touchend", endDrag);
} else {
uContainer.addEventListener("mousedown", startDrag); uContainer.addEventListener("mousedown", startDrag);
uContainer.addEventListener("touchstart", touchStart); uContainer.addEventListener("touchstart", touchStart);
document.addEventListener("mouseup", endDrag); document.addEventListener("mouseup", endDrag);
document.addEventListener("touchend", endDrag); document.addEventListener("touchend", endDrag);
} }
}
);
onBeforeUnmount(() => { if (!props.disabled) {
uContainer.removeEventListener("mousedown", startDrag); uContainer.addEventListener("mousedown", startDrag);
uContainer.removeEventListener("touchstart", touchStart); uContainer.addEventListener("touchstart", touchStart);
document.removeEventListener("mouseup", endDrag); document.addEventListener("mouseup", endDrag);
document.removeEventListener("touchend", endDrag); document.addEventListener("touchend", endDrag);
}); }
});
return { onBeforeUnmount(() => {
intersected, uContainer.removeEventListener("mousedown", startDrag);
container, uContainer.removeEventListener("touchstart", touchStart);
}; document.removeEventListener("mouseup", endDrag);
}, document.removeEventListener("touchend", endDrag);
});
}); });
</script> </script>
+20 -22
View File
@@ -5,35 +5,33 @@
<template v-if="key !== 0"> , </template> <template v-if="key !== 0"> , </template>
<a <a
:style="{ color: colorMap[distance as keyof typeof colorMap] ?? undefined, textDecoration:'underline' }" :style="{ color: colorMap[distance as keyof typeof colorMap] ?? undefined, textDecoration:'underline' }"
@click="$emit('selected', cityID)" @click="emit('selected', cityID)"
>{{ citiesMap.get(cityID)?.name }}</a >{{ citiesMap.get(cityID)?.name }}</a
> >
</template> </template>
</div> </div>
</template> </template>
<script lang="ts"> <script setup lang="ts">
import { defineComponent, type PropType } from "vue"; import type { PropType } from "vue";
export default defineComponent({ defineProps({
props: { distanceList: {
distanceList: { type: Object as PropType<Record<number, number[]>>,
type: Object as PropType<Record<number, number[]>>, required: true,
required: true,
},
citiesMap: {
type: Object as PropType<Map<number, { name: string }>>,
required: true,
},
}, },
emits: ["selected"], citiesMap: {
data() { type: Object as PropType<Map<number, { name: string }>>,
return { required: true,
colorMap: {
1: "magenta",
2: "orange",
3: "yellow",
},
};
}, },
}); });
const emit = defineEmits<{
(event: "selected", value: number): void;
}>();
const colorMap = {
1: "magenta",
2: "orange",
3: "yellow",
};
</script> </script>
+46 -50
View File
@@ -56,57 +56,53 @@
<div class="crewTypeInfo text-start" v-html="crewType.info.join('<br>')" /> <div class="crewTypeInfo text-start" v-html="crewType.info.join('<br>')" />
</div> </div>
</template> </template>
<script lang="ts"> <script setup lang="ts">
import { defineComponent, ref } from "vue"; import { onMounted, ref, watch } from "vue";
import VueTypes from "vue-types"; import VueTypes from "vue-types";
export default defineComponent({ const props = defineProps({
props: { crewType: VueTypes.object.isRequired,
crewType: VueTypes.object.isRequired, leadership: VueTypes.number.isRequired,
leadership: VueTypes.number.isRequired, commandName: VueTypes.string.isRequired,
commandName: VueTypes.string.isRequired, currentCrewType: VueTypes.number.def(-1),
currentCrewType: VueTypes.number.def(-1), crew: VueTypes.number.def(0),
crew: VueTypes.number.def(0), goldCoeff: VueTypes.number.isRequired,
goldCoeff: VueTypes.number.isRequired,
},
emits: ["submitOutput", "update:amount"],
setup(props, { emit }) {
const amount = ref(0);
function beHalf() {
amount.value = Math.ceil(props.leadership * 0.5);
}
function beFilled() {
if (props.crewType.id == props.currentCrewType) {
amount.value = Math.max(1, props.leadership - Math.floor(props.crew / 100));
} else {
amount.value = props.leadership;
}
}
function beFull() {
amount.value = Math.floor(props.leadership * 1.2);
}
function doSubmit(e: Event) {
emit("submitOutput", e, amount.value, props.crewType.id);
}
beFilled();
return {
amount,
beHalf,
beFilled,
beFull,
doSubmit,
};
},
watch: {
amount(val: number) {
this.$emit("update:amount", val);
},
},
}); });
const emit = defineEmits<{
(event: "submitOutput", e: Event, amount: number, crewtypeID: number): void;
(event: "update:amount", value: number): void;
}>();
const amount = ref(0);
function beHalf() {
amount.value = Math.ceil(props.leadership * 0.5);
}
function beFilled() {
if (props.crewType.id == props.currentCrewType) {
amount.value = Math.max(1, props.leadership - Math.floor(props.crew / 100));
} else {
amount.value = props.leadership;
}
}
function beFull() {
amount.value = Math.floor(props.leadership * 1.2);
}
function doSubmit(e: Event) {
emit("submitOutput", e, amount.value, props.crewType.id);
}
onMounted(() => {
beFilled();
});
watch(amount, (value) => {
emit("update:amount", value);
});
</script> </script>
+68 -113
View File
@@ -1,20 +1,12 @@
<template> <template>
<TopBackBar <TopBackBar v-model:searchable="searchable" :title="commandName" :type="procEntryMode" />
v-model:searchable="searchable"
:title="commandName"
:type="procEntryMode"
/>
<div class="bg0"> <div class="bg0">
<div v-if="commandName == '몰수'"> <div v-if="commandName == '몰수'">
장수의 자금이나 군량을 몰수합니다.<br> 장수의 자금이나 군량을 몰수합니다.<br />
몰수한것은 국가재산으로 귀속됩니다.<br> 몰수한것은 국가재산으로 귀속됩니다.<br />
</div>
<div v-else-if="commandName == '포상'">
국고로 장수에게 자금이나 군량을 지급합니다.<br>
</div>
<div v-else-if="commandName == '증여'">
자신의 자금이나 군량을 다른 장수에게 증여합니다.<br>
</div> </div>
<div v-else-if="commandName == '포상'">국고로 장수에게 자금이나 군량을 지급합니다.<br /></div>
<div v-else-if="commandName == '증여'">자신의 자금이나 군량을 다른 장수에게 증여합니다.<br /></div>
<div class="row"> <div class="row">
<div class="col-12 col-md-5"> <div class="col-12 col-md-5">
장수 : 장수 :
@@ -29,49 +21,44 @@
<div class="col-2 col-md-1"> <div class="col-2 col-md-1">
자원 : 자원 :
<b-button-group> <b-button-group>
<b-button <b-button :pressed="isGold" @click="isGold = true"> </b-button>
:pressed="isGold" <b-button :pressed="!isGold" @click="isGold = false"> </b-button>
@click="isGold=true"
>
</b-button>
<b-button
:pressed="!isGold"
@click="isGold=false"
>
</b-button>
</b-button-group> </b-button-group>
</div> </div>
<div class="col-7 col-md-4"> <div class="col-7 col-md-4">
금액 : 금액 :
<SelectAmount <SelectAmount v-model="amount" :amountGuide="amountGuide" :maxAmount="maxAmount" :minAmount="minAmount" />
v-model="amount"
:amountGuide="amountGuide"
:maxAmount="maxAmount"
:minAmount="minAmount"
/>
</div> </div>
<div class="col-3 col-md-2 d-grid"> <div class="col-3 col-md-2 d-grid">
<b-button <b-button variant="primary" @click="submit">
variant="primary"
@click="submit"
>
{{ commandName }} {{ commandName }}
</b-button> </b-button>
</div> </div>
</div> </div>
</div> </div>
<BottomBar <BottomBar :title="commandName" :type="procEntryMode" />
:title="commandName"
:type="procEntryMode"
/>
</template> </template>
<script lang="ts"> <script lang="ts">
declare const procRes: {
distanceList: Record<number, number[]>;
cities: [number, string][];
generals: procGeneralRawItemList;
generalsKey: procGeneralKey[];
minAmount: number;
maxAmount: number;
amountGuide: number[];
};
declare const staticValues: {
commandName: string;
entryInfo: ["General" | "Nation", unknown];
};
</script>
<script setup lang="ts">
import SelectGeneral from "@/processing/SelectGeneral.vue"; import SelectGeneral from "@/processing/SelectGeneral.vue";
import SelectAmount from "@/processing/SelectAmount.vue"; import SelectAmount from "@/processing/SelectAmount.vue";
import { defineComponent, ref } from "vue"; import { ref } from "vue";
import { unwrap } from "@/util/unwrap"; import { unwrap } from "@/util/unwrap";
import type { Args } from "@/processing/args"; import type { Args } from "@/processing/args";
import TopBackBar from "@/components/TopBackBar.vue"; import TopBackBar from "@/components/TopBackBar.vue";
@@ -84,84 +71,52 @@ import {
type procGeneralRawItemList, type procGeneralRawItemList,
} from "./processingRes"; } from "./processingRes";
import { getNpcColor } from "@/common_legacy"; import { getNpcColor } from "@/common_legacy";
declare const commandName: string;
declare const entryInfo: ['General'|'Nation', unknown];
declare const procRes: { const citiesMap = ref(new Map<
distanceList: Record<number, number[]>; number,
cities: [number, string][]; {
generals: procGeneralRawItemList; name: string;
generalsKey: procGeneralKey[]; info?: string;
minAmount: number; }
maxAmount: number; >());
amountGuide: number[]; for (const [id, name] of procRes.cities) {
}; citiesMap.value.set(id, { name });
}
export default defineComponent({ const generalList = convertGeneralList(procRes.generalsKey, procRes.generals);
components: { const amount = ref(1000);
SelectGeneral, const isGold = ref(true);
SelectAmount,
TopBackBar,
BottomBar,
},
setup() {
const citiesMap = new Map<
number,
{
name: string;
info?: string;
}
>();
for (const [id, name] of procRes.cities) {
citiesMap.set(id, { name });
}
const generalList = convertGeneralList( const selectedGeneralID = ref(generalList[0].no);
procRes.generalsKey,
procRes.generals
);
const amount = ref(1000);
const isGold = ref(true);
const selectedGeneralID = ref(generalList[0].no); function textHelpGeneral(gen: procGeneralItem): string {
const nameColor = getNpcColor(gen.npc);
const name = nameColor ? `<span style="color:${nameColor}">${gen.name}</span>` : gen.name;
return `${name} (금${unwrap(gen.gold).toLocaleString()}/쌀${unwrap(gen.rice).toLocaleString()}) (${gen.leadership}/${
gen.strength
}/${gen.intel})`;
}
function textHelpGeneral(gen: procGeneralItem): string { async function submit(e: Event) {
const nameColor = getNpcColor(gen.npc); const event = new CustomEvent<Args>("customSubmit", {
const name = nameColor detail: {
? `<span style="color:${nameColor}">${gen.name}</span>` amount: amount.value,
: gen.name; isGold: isGold.value,
return `${name} (금${unwrap(gen.gold).toLocaleString()}/쌀${unwrap(gen.rice).toLocaleString()}) (${ destGeneralID: selectedGeneralID.value,
gen.leadership },
}/${gen.strength}/${gen.intel})`; });
} unwrap(e.target).dispatchEvent(event);
}
async function submit(e: Event) { const { commandName,entryInfo } = staticValues;
const event = new CustomEvent<Args>("customSubmit", { const searchable = getProcSearchable();
detail: {
amount: amount.value, const procEntryMode: "chief" | "normal" = entryInfo[0] == "Nation" ? "chief" : "normal";
isGold: isGold.value,
destGeneralID: selectedGeneralID.value, const {
}, minAmount,
}); maxAmount,
unwrap(e.target).dispatchEvent(event); amountGuide
} } = procRes;
return {
procEntryMode: <'chief'|'normal'>(entryInfo[0] == 'Nation'?'chief':'normal'),
searchable: getProcSearchable(),
amount,
isGold,
selectedGeneralID,
citiesMap: ref(citiesMap),
distanceList: procRes.distanceList,
minAmount: ref(procRes.minAmount),
maxAmount: ref(procRes.maxAmount),
amountGuide: procRes.amountGuide,
generalList,
commandName,
textHelpGeneral,
submit,
};
},
});
</script> </script>
+20 -16
View File
@@ -32,29 +32,33 @@
</b-button> </b-button>
</div> </div>
</template> </template>
<script lang="ts"> <script setup lang="ts">
import { defineComponent } from "vue"; import { ref, watch } from "vue";
import VueTypes from "vue-types"; import VueTypes from "vue-types";
export default defineComponent({ const props = defineProps({
props: {
modelValue: VueTypes.number.isRequired, modelValue: VueTypes.number.isRequired,
minAmount: VueTypes.number.isRequired, minAmount: VueTypes.number.isRequired,
maxAmount: VueTypes.number.isRequired, maxAmount: VueTypes.number.isRequired,
amountGuide: VueTypes.arrayOf(Number).def([1000, 2000, 5000, 10000]), amountGuide: VueTypes.arrayOf(Number).def([1000, 2000, 5000, 10000]),
step: VueTypes.number.def(1), step: VueTypes.number.def(1),
}, });
emits: ["update:modelValue"],
data() { const emit = defineEmits<{
return { (event: "update:modelValue", value: number): void;
amount: this.modelValue, }>();
};
}, const amount = ref(props.modelValue);
watch: {
amount(val: number) { watch(
this.$emit("update:modelValue", val); () => props.modelValue,
}, (value) => {
}, amount.value = value;
}
);
watch(amount, (value) => {
emit("update:modelValue", value);
}); });
</script> </script>