2019-09-02 20:41:46 +08:00
|
|
|
import { TabContainer } from "../../core/gui/TabContainer";
|
|
|
|
import { Episode } from "../../core/data_formats/parsing/quest/Episode";
|
|
|
|
import { MethodsForEpisodeView } from "./MethodsForEpisodeView";
|
|
|
|
|
|
|
|
export class MethodsView extends TabContainer {
|
|
|
|
constructor() {
|
2019-09-11 21:51:56 +08:00
|
|
|
super({
|
|
|
|
class: "hunt_optimizer_MethodsView",
|
|
|
|
tabs: [
|
|
|
|
{
|
|
|
|
title: "Episode I",
|
|
|
|
key: "episode_1",
|
|
|
|
create_view: async function() {
|
|
|
|
return new MethodsForEpisodeView(Episode.I);
|
|
|
|
},
|
2019-09-02 20:41:46 +08:00
|
|
|
},
|
2019-09-11 21:51:56 +08:00
|
|
|
{
|
|
|
|
title: "Episode II",
|
|
|
|
key: "episode_2",
|
|
|
|
create_view: async function() {
|
|
|
|
return new MethodsForEpisodeView(Episode.II);
|
|
|
|
},
|
2019-09-02 20:41:46 +08:00
|
|
|
},
|
2019-09-11 21:51:56 +08:00
|
|
|
{
|
|
|
|
title: "Episode IV",
|
|
|
|
key: "episode_4",
|
|
|
|
create_view: async function() {
|
|
|
|
return new MethodsForEpisodeView(Episode.IV);
|
|
|
|
},
|
2019-09-02 20:41:46 +08:00
|
|
|
},
|
2019-09-11 21:51:56 +08:00
|
|
|
],
|
|
|
|
});
|
2019-09-02 20:41:46 +08:00
|
|
|
}
|
|
|
|
}
|