2019-07-24 00:39:47 +08:00
|
|
|
import { observer } from "mobx-react";
|
|
|
|
import React, { Component, ReactNode } from "react";
|
|
|
|
import { NpcType } from "../../domain";
|
|
|
|
import { quest_editor_store } from "../../stores/QuestEditorStore";
|
2019-07-03 00:08:06 +08:00
|
|
|
import "./QuestInfoComponent.css";
|
2019-07-24 19:48:01 +08:00
|
|
|
import { DisabledTextComponent } from "../DisabledTextComponent";
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
@observer
|
|
|
|
export class QuestInfoComponent extends Component {
|
|
|
|
render(): ReactNode {
|
|
|
|
const quest = quest_editor_store.current_quest;
|
2019-07-25 00:07:32 +08:00
|
|
|
let body: ReactNode;
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
if (quest) {
|
|
|
|
const episode = quest.episode === 4 ? "IV" : quest.episode === 2 ? "II" : "I";
|
|
|
|
const npc_counts = new Map<NpcType, number>();
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
for (const npc of quest.npcs) {
|
|
|
|
const val = npc_counts.get(npc.type) || 0;
|
|
|
|
npc_counts.set(npc.type, val + 1);
|
|
|
|
}
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
const extra_canadines = (npc_counts.get(NpcType.Canane) || 0) * 8;
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-07-24 00:39:47 +08:00
|
|
|
// Sort by type ID.
|
|
|
|
const sorted_npc_counts = [...npc_counts].sort((a, b) => a[0].id - b[0].id);
|
|
|
|
|
|
|
|
const npc_count_rows = sorted_npc_counts.map(([npc_type, count]) => {
|
|
|
|
const extra = npc_type === NpcType.Canadine ? extra_canadines : 0;
|
|
|
|
return (
|
|
|
|
<tr key={npc_type.id}>
|
|
|
|
<td>{npc_type.name}:</td>
|
|
|
|
<td>{count + extra}</td>
|
|
|
|
</tr>
|
|
|
|
);
|
|
|
|
});
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-07-25 00:07:32 +08:00
|
|
|
body = (
|
|
|
|
<>
|
2019-07-03 00:08:06 +08:00
|
|
|
<table>
|
2019-07-24 00:39:47 +08:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th>Name:</th>
|
|
|
|
<td>{quest.name}</td>
|
|
|
|
</tr>
|
2019-07-03 00:08:06 +08:00
|
|
|
<tr>
|
2019-07-24 00:39:47 +08:00
|
|
|
<th>Episode:</th>
|
|
|
|
<td>{episode}</td>
|
2019-07-03 00:08:06 +08:00
|
|
|
</tr>
|
2019-07-24 00:39:47 +08:00
|
|
|
<tr>
|
|
|
|
<td colSpan={2}>
|
|
|
|
<pre>{quest.short_description}</pre>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colSpan={2}>
|
|
|
|
<pre>{quest.long_description}</pre>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
2019-05-29 00:40:29 +08:00
|
|
|
</table>
|
2019-07-24 00:39:47 +08:00
|
|
|
<div className="qe-QuestInfoComponent-npc-counts-container">
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th colSpan={2}>NPC Counts</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>{npc_count_rows}</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2019-07-25 00:07:32 +08:00
|
|
|
</>
|
2019-07-24 00:39:47 +08:00
|
|
|
);
|
|
|
|
} else {
|
2019-07-25 00:07:32 +08:00
|
|
|
body = <DisabledTextComponent>No quest loaded.</DisabledTextComponent>;
|
2019-07-24 00:39:47 +08:00
|
|
|
}
|
2019-07-25 00:07:32 +08:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="qe-QuestInfoComponent" tabIndex={-1}>
|
|
|
|
{body}
|
|
|
|
</div>
|
|
|
|
);
|
2019-05-29 00:40:29 +08:00
|
|
|
}
|
|
|
|
}
|