2019-07-03 00:08:06 +08:00
|
|
|
import React from "react";
|
|
|
|
import { NpcType, Quest } from "../../domain";
|
|
|
|
import "./QuestInfoComponent.css";
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-07-03 02:56:33 +08:00
|
|
|
export function QuestInfoComponent({ quest }: { quest?: Quest }): JSX.Element {
|
2019-05-29 00:40:29 +08:00
|
|
|
if (quest) {
|
2019-07-03 00:08:06 +08:00
|
|
|
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>();
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
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-05-29 00:40:29 +08:00
|
|
|
}
|
|
|
|
|
2019-07-02 23:00:24 +08:00
|
|
|
const extra_canadines = (npc_counts.get(NpcType.Canane) || 0) * 8;
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
// 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-05-29 00:40:29 +08:00
|
|
|
|
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;
|
2019-05-29 00:40:29 +08:00
|
|
|
return (
|
2019-07-02 23:00:24 +08:00
|
|
|
<tr key={npc_type.id}>
|
|
|
|
<td>{npc_type.name}:</td>
|
2019-05-29 00:40:29 +08:00
|
|
|
<td>{count + extra}</td>
|
|
|
|
</tr>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
return (
|
2019-06-01 05:20:13 +08:00
|
|
|
<div className="qe-QuestInfoComponent">
|
2019-05-29 23:59:47 +08:00
|
|
|
<table>
|
2019-05-29 00:40:29 +08:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
2019-07-03 00:08:06 +08:00
|
|
|
<th>Name:</th>
|
|
|
|
<td>{quest.name}</td>
|
2019-05-29 00:40:29 +08:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2019-07-03 00:08:06 +08:00
|
|
|
<th>Episode:</th>
|
|
|
|
<td>{episode}</td>
|
2019-05-29 00:40:29 +08:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colSpan={2}>
|
2019-06-26 23:47:53 +08:00
|
|
|
<pre>{quest.short_description}</pre>
|
2019-05-29 00:40:29 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colSpan={2}>
|
2019-06-26 23:47:53 +08:00
|
|
|
<pre>{quest.long_description}</pre>
|
2019-05-29 00:40:29 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-06-01 05:20:13 +08:00
|
|
|
<div className="qe-QuestInfoComponent-npc-counts-container">
|
2019-07-03 00:08:06 +08:00
|
|
|
<table>
|
2019-05-29 00:40:29 +08:00
|
|
|
<thead>
|
2019-07-03 00:08:06 +08:00
|
|
|
<tr>
|
|
|
|
<th colSpan={2}>NPC Counts</th>
|
|
|
|
</tr>
|
2019-05-29 00:40:29 +08:00
|
|
|
</thead>
|
2019-07-03 00:08:06 +08:00
|
|
|
<tbody>{npc_count_rows}</tbody>
|
2019-05-29 00:40:29 +08:00
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else {
|
2019-06-01 05:20:13 +08:00
|
|
|
return <div className="qe-QuestInfoComponent" />;
|
2019-05-29 00:40:29 +08:00
|
|
|
}
|
|
|
|
}
|