-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloader-settings-tab.ts
106 lines (91 loc) · 3.4 KB
/
loader-settings-tab.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import { App, PluginSettingTab, Setting } from 'obsidian';
import LoaderPlugin from './main'
import { ThreeStateSetting } from "./setting-data";
export default class LoaderSettingTab extends PluginSettingTab {
plugin: LoaderPlugin;
constructor(app: App, plugin: LoaderPlugin) {
super(app, plugin);
this.plugin = plugin;
}
display(): void {
const {containerEl} = this;
containerEl.empty();
this.containerEl.createEl("h2", { text: "TXT files" });
new Setting(containerEl)
.setName('Load .txt files')
.addToggle(toggle => toggle
.setValue(this.plugin.settings.txtSetting.doLoad)
.onChange(async (value) => {
this.plugin.settings.txtSetting.doLoad = value;
await this.plugin.saveSettings();
}));
new Setting(containerEl)
.setName("Show line number")
.setDesc("Show line number in the gutter.")
.addDropdown(cb=>cb
.addOption(ThreeStateSetting[ThreeStateSetting.System], "System value")
.addOption(ThreeStateSetting[ThreeStateSetting.No], "Disable")
.addOption(ThreeStateSetting[ThreeStateSetting.Yes], "Enable")
.setValue(ThreeStateSetting[this.plugin.settings.txtSetting.showLineNumber])
.onChange(async (value: string)=>{
this.plugin.settings.txtSetting.showLineNumber = ThreeStateSetting[value as keyof typeof ThreeStateSetting];
await this.plugin.saveSettings();
})
);
new Setting(containerEl)
.setName("Readable line length")
.setDesc("Limin maximum line length.")
.addDropdown(cb=>cb
.addOption(ThreeStateSetting[ThreeStateSetting.System], "System value")
.addOption(ThreeStateSetting[ThreeStateSetting.No], "Disable")
.addOption(ThreeStateSetting[ThreeStateSetting.Yes], "Enable")
.setValue(ThreeStateSetting[this.plugin.settings.txtSetting.readableLineLength])
.onChange(async (value: string)=>{
this.plugin.settings.txtSetting.readableLineLength = ThreeStateSetting[value as keyof typeof ThreeStateSetting];
await this.plugin.saveSettings();
})
);
new Setting(containerEl)
.setName('Create .txt files')
.addToggle(toggle => toggle
.setValue(this.plugin.settings.txtSetting.doCreate)
.onChange(async (value) => {
this.plugin.settings.txtSetting.doCreate = value;
await this.plugin.saveSettings();
}));
this.containerEl.createEl("h2", { text: "JSON files" });
new Setting(containerEl)
.setName('Load .json files')
.addToggle(toggle => toggle
.setValue(this.plugin.settings.doLoadJson)
.onChange(async (value) => {
this.plugin.settings.doLoadJson = value;
await this.plugin.saveSettings();
}));
new Setting(containerEl)
.setName('Create .json files')
.addToggle(toggle => toggle
.setValue(this.plugin.settings.doCreateJson)
.onChange(async (value) => {
this.plugin.settings.doCreateJson = value;
await this.plugin.saveSettings();
}));
this.containerEl.createEl("h2", { text: "XML files" });
new Setting(containerEl)
.setName('Load .xml files')
.addToggle(toggle => toggle
.setValue(this.plugin.settings.doLoadXml)
.onChange(async (value) => {
this.plugin.settings.doLoadXml = value;
await this.plugin.saveSettings();
}));
new Setting(containerEl)
.setName('Create .xml files')
.addToggle(toggle => toggle
.setValue(this.plugin.settings.doCreateXml)
.onChange(async (value) => {
this.plugin.settings.doCreateXml = value;
await this.plugin.saveSettings();
}));
}
}