summaryrefslogtreecommitdiff
path: root/sw-ui-kt/src
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2019-07-30 01:26:21 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2019-08-03 17:25:11 +0200
commit5169b718cf6ba3c5f8bf360b1e2ff1f7e91d1c25 (patch)
tree5b1279c4a8186810dce2a735bc2f6a0dc4b12973 /sw-ui-kt/src
parentCleanup react/redux dependencies (diff)
downloadseven-wonders-5169b718cf6ba3c5f8bf360b1e2ff1f7e91d1c25.tar.gz
seven-wonders-5169b718cf6ba3c5f8bf360b1e2ff1f7e91d1c25.tar.bz2
seven-wonders-5169b718cf6ba3c5f8bf360b1e2ff1f7e91d1c25.zip
First attempt at routing
Diffstat (limited to 'sw-ui-kt/src')
-rw-r--r--sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/SevenWondersUi.kt12
-rw-r--r--sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/Application.kt22
-rw-r--r--sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Game.kt8
-rw-r--r--sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/gameBrowser/GameBrowser.kt8
-rw-r--r--sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/Home.kt13
-rw-r--r--sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/Lobby.kt13
6 files changed, 66 insertions, 10 deletions
diff --git a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/SevenWondersUi.kt b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/SevenWondersUi.kt
index 8ad20702..2a075ba9 100644
--- a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/SevenWondersUi.kt
+++ b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/SevenWondersUi.kt
@@ -1,5 +1,6 @@
package org.luxons.sevenwonders.ui
+import org.luxons.sevenwonders.ui.components.application
import org.luxons.sevenwonders.ui.redux.configureStore
import org.w3c.dom.Element
import react.RBuilder
@@ -23,16 +24,7 @@ private fun initializeAndRender(rootElement: Element) {
val store = configureStore()
render(rootElement) {
provider(store) {
- app()
+ application()
}
}
}
-
-fun RBuilder.app() = div {
- h1 {
- +"Seven Wonders"
- }
- p {
- +"Great app!"
- }
-}
diff --git a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/Application.kt b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/Application.kt
new file mode 100644
index 00000000..9a3a3e03
--- /dev/null
+++ b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/Application.kt
@@ -0,0 +1,22 @@
+package org.luxons.sevenwonders.ui.components
+
+import org.luxons.sevenwonders.ui.components.game.gameScene
+import org.luxons.sevenwonders.ui.components.gameBrowser.gameBrowser
+import react.RBuilder
+import react.router.dom.hashRouter
+import react.router.dom.redirect
+import react.router.dom.route
+import react.router.dom.switch
+
+import org.luxons.sevenwonders.ui.components.home.home
+import org.luxons.sevenwonders.ui.components.lobby.lobby
+
+fun RBuilder.application() = hashRouter {
+ switch {
+ route("/game") { gameScene() }
+ route("/games") { gameBrowser() }
+ route("/lobby") { lobby() }
+ route("/", exact = true) { home() }
+ redirect(from = "*", to = "/")
+ }
+}
diff --git a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Game.kt b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Game.kt
new file mode 100644
index 00000000..d8b5ec7d
--- /dev/null
+++ b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Game.kt
@@ -0,0 +1,8 @@
+package org.luxons.sevenwonders.ui.components.game
+
+import react.RBuilder
+import react.dom.*
+
+fun RBuilder.gameScene() = div {
+ h1 { +"Game" }
+}
diff --git a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/gameBrowser/GameBrowser.kt b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/gameBrowser/GameBrowser.kt
new file mode 100644
index 00000000..73c11984
--- /dev/null
+++ b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/gameBrowser/GameBrowser.kt
@@ -0,0 +1,8 @@
+package org.luxons.sevenwonders.ui.components.gameBrowser
+
+import react.RBuilder
+import react.dom.*
+
+fun RBuilder.gameBrowser() = div {
+ h1 { +"Games" }
+}
diff --git a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/Home.kt b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/Home.kt
new file mode 100644
index 00000000..e9af82be
--- /dev/null
+++ b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/Home.kt
@@ -0,0 +1,13 @@
+package org.luxons.sevenwonders.ui.components.home
+
+import react.RBuilder
+import react.dom.*
+
+fun RBuilder.home() = div {
+ h1 {
+ +"Seven Wonders"
+ }
+ p {
+ +"Great app!"
+ }
+}
diff --git a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/Lobby.kt b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/Lobby.kt
new file mode 100644
index 00000000..24d4da44
--- /dev/null
+++ b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/Lobby.kt
@@ -0,0 +1,13 @@
+package org.luxons.sevenwonders.ui.components.lobby
+
+import react.RBuilder
+import react.dom.*
+
+fun RBuilder.lobby() = div {
+ h1 {
+ +"Lobby"
+ }
+ p {
+ +"Can't wait to play!"
+ }
+}
bgstack15