summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-04-07 22:20:36 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-04-07 22:20:36 +0200
commit7fa86bfc64df805121acbaeb788d7dac1c843908 (patch)
tree2a8f08deac5c67b21e10466dcae3b807342929b9
parentDelete old React/TypeScript UI (diff)
downloadseven-wonders-7fa86bfc64df805121acbaeb788d7dac1c843908.tar.gz
seven-wonders-7fa86bfc64df805121acbaeb788d7dac1c843908.tar.bz2
seven-wonders-7fa86bfc64df805121acbaeb788d7dac1c843908.zip
Write doc about Kotlin React migration.
-rw-r--r--doc/decisions_history.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/decisions_history.md b/doc/decisions_history.md
index 68312e77..fd114ff0 100644
--- a/doc/decisions_history.md
+++ b/doc/decisions_history.md
@@ -1,5 +1,33 @@
# Technical decisions and issues log
+## 2019.07-2020.04 Full Kotlin migration
+[@joffrey-bion][1] — :key: *Frontend, Kotlin*
+
+Synchronizing backend and frontend when making changes to the API is a pain.
+Model classes need to be written and modified twice to be kept in sync.
+Moreover, a Java client also needs to be maintained to run integration tests
+for the server.
+
+This is why I decided to leverage Kotlin multiplatform capabilities to define
+a reusable common model and client.
+It took some time because Kotlin itself changed a lot during the past year.
+
+Also, there was no existing solution for a multiplatform STOMP client, so I
+ended up building [Krossbow](https://github.com/joffrey-bion/krossbow).
+This took a bit of time too.
+
+Once a common client and model was defined, there is the problem of the local
+project dependencies.
+Using a TypeScript/React frontend built with npm, it wasn't possible to depend
+on a local gradle subproject.
+That's why it was time to try out Kotlin React.
+
+Kotlin React is easy to use in itself, but using React component libraries
+from Kotlin is quite tedious at the time.
+Dukat, the TypeScript to Kotlin externals conversion tool, doesn't work
+reliably and doesn't work at all for React stuff, so the declarations have to
+be written manually.
+
## 2019.05.02-07 Frontend migration to TypeScript
[@joffrey-bion][1] — :key: *Frontend, TypeScript*
bgstack15