diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-09-17 19:39:05 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-09-17 19:39:05 +0800 |
commit | 431e4fc9d1657a50ebc34b8ac24f9bfaea06417f (patch) | |
tree | 5987bb14f38d2999c682970429f34b41eb3e5826 /src/features/globalSettings/firstLoadPage.js | |
parent | e73f2efdf0f50aa775c540317394d46428e9704f (diff) | |
download | SoopyV2-431e4fc9d1657a50ebc34b8ac24f9bfaea06417f.tar.gz SoopyV2-431e4fc9d1657a50ebc34b8ac24f9bfaea06417f.tar.bz2 SoopyV2-431e4fc9d1657a50ebc34b8ac24f9bfaea06417f.zip |
Initial move to babel + change fetch to use async/await
Diffstat (limited to 'src/features/globalSettings/firstLoadPage.js')
-rw-r--r-- | src/features/globalSettings/firstLoadPage.js | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/features/globalSettings/firstLoadPage.js b/src/features/globalSettings/firstLoadPage.js new file mode 100644 index 0000000..62805f5 --- /dev/null +++ b/src/features/globalSettings/firstLoadPage.js @@ -0,0 +1,42 @@ +import SoopyMouseClickEvent from "../../../guimanager/EventListener/SoopyMouseClickEvent" +import ButtonWithArrow from "../../../guimanager/GuiElement/ButtonWithArrow" +import SoopyGuiElement from "../../../guimanager/GuiElement/SoopyGuiElement" + +class FirstLoadPage extends SoopyGuiElement { + constructor() { + super() + + this.setLocation(0, 0, 1, 1) + + this.guiPage = undefined + } + + setLoc(addBack, addNext) { + if (addBack) { + let backButton = new ButtonWithArrow().setLocation(0.05, 0.85, 0.2, 0.1).setDirectionRight(false).setText("§0Back") + + backButton.addEvent(new SoopyMouseClickEvent().setHandler(() => { + this.guiPage.prevPage() + this.guiPage.closeSidebarPage() + })) + + this.addChild(backButton) + } + if (addNext) { + let nextButton = new ButtonWithArrow().setLocation(0.75, 0.85, 0.2, 0.1).setText("§0Next") + + nextButton.addEvent(new SoopyMouseClickEvent().setHandler(() => { + this.guiPage.nextPage() + this.guiPage.closeSidebarPage() + })) + + this.addChild(nextButton) + } + } + + load() { + + } +} + +export default FirstLoadPage
\ No newline at end of file |