aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/gui/repogui.kt
blob: da681e449692fba5a0ea01d86db5bea976da6f79 (plain)
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
package moe.nea.firmament.gui

import net.minecraft.text.Text
import moe.nea.firmament.repo.RepoManager

fun repoGui(): ConfigGui<RepoManager.Config> {
    return ConfigGui(RepoManager) {
        title(Text.translatable("firmament.gui.repo.title"))
        toggle(Text.translatable("firmament.gui.repo.autoupdate"), RepoManager.Config::autoUpdate)
        textfield(
            Text.translatable("firmament.gui.repo.username"),
            Text.translatable("firmament.gui.repo.hint.username"),
            RepoManager.Config::user,
            maxLength = 255
        )
        textfield(
            Text.translatable("firmament.gui.repo.reponame"),
            Text.translatable("firmament.gui.repo.hint.reponame"),
            RepoManager.Config::repo
        )
        textfield(
            Text.translatable("firmament.gui.repo.branch"),
            Text.translatable("firmament.gui.repo.hint.branch"),
            RepoManager.Config::branch
        )
        button(
            Text.translatable("firmament.gui.repo.reset.label"),
            Text.translatable("firmament.gui.repo.reset"),
        ) {
            RepoManager.data.user = "NotEnoughUpdates"
            RepoManager.data.repo = "NotEnoughUpdates-REPO"
            RepoManager.data.branch = "dangerous"
            reload()
        }
    }
}