phantasmal-world/src/ui/quest_editor/QuestInfoComponent.tsx

68 lines
2.3 KiB
TypeScript
Raw Normal View History

import React from 'react';
import { NpcType, Quest } from '../../domain';
import './QuestInfoComponent.css';
export function QuestInfoComponent({ quest }: { quest?: Quest }) {
if (quest) {
const episode = quest.episode === 4 ? 'IV' : (quest.episode === 2 ? 'II' : 'I');
2019-07-02 23:00:24 +08:00
const npc_counts = new Map<NpcType, number>();
for (const npc of quest.npcs) {
2019-07-02 23:00:24 +08:00
const val = npc_counts.get(npc.type) || 0;
npc_counts.set(npc.type, val + 1);
}
2019-07-02 23:00:24 +08:00
const extra_canadines = (npc_counts.get(NpcType.Canane) || 0) * 8;
// Sort by type ID.
2019-07-02 23:00:24 +08:00
const sorted_npc_counts = [...npc_counts].sort((a, b) => a[0].id - b[0].id);
2019-07-02 23:00:24 +08:00
const npc_count_rows = sorted_npc_counts.map(([npc_type, count]) => {
const extra = npc_type === NpcType.Canadine ? extra_canadines : 0;
return (
2019-07-02 23:00:24 +08:00
<tr key={npc_type.id}>
<td>{npc_type.name}:</td>
<td>{count + extra}</td>
</tr>
);
});
return (
<div className="qe-QuestInfoComponent">
<table>
<tbody>
<tr>
<th>Name:</th><td>{quest.name}</td>
</tr>
<tr>
<th>Episode:</th><td>{episode}</td>
</tr>
<tr>
<td colSpan={2}>
2019-06-26 23:47:53 +08:00
<pre>{quest.short_description}</pre>
</td>
</tr>
<tr>
<td colSpan={2}>
2019-06-26 23:47:53 +08:00
<pre>{quest.long_description}</pre>
</td>
</tr>
</tbody>
</table>
<div className="qe-QuestInfoComponent-npc-counts-container">
<table >
<thead>
<tr><th colSpan={2}>NPC Counts</th></tr>
</thead>
<tbody>
2019-07-02 23:00:24 +08:00
{npc_count_rows}
</tbody>
</table>
</div>
</div>
);
} else {
return <div className="qe-QuestInfoComponent" />;
}
}