Releases: jwstegemann/fritz2
Version 0.7
breaking changes
This release contains changes that break code written with earlier versions:
Handler
s are now suspendable, so you can call suspend-methods directly inside yourHandler
. There is no need forApplicator
anymore. Therefore this class and its utility-functions have been removed. (PR#124 & PR#126)FormateStore
and interfaceFormat
have been removed. Useformat
-factory-function insidelenses
package to create a formattingLens
and create a normalSubStore
(by usingsub
). (PR#139 & PR#146)
val df: DateFormat = DateFormat("yyyy-MM-dd")
// converts a Date into String in vice versa
val dateFormat = format(
parse = { df.parseDate(it) },
format = { df.format(it) }
)
//using the dateLens
val birthday = personStore.sub(L.Person.birthday + dateFormat)
// or
val birthday = personStore.sub(L.Person.birthday).sub(dateFormat)
in commonMain
data class Message(val id: String, val status: Status, val text: String) : ValidationMessage {
override fun isError(): Boolean = status > Status.Valid // renamed from failed() -> isError()
}
object PersonValidator : Validator<Person, Message, String>() {
// return your validation messages here
override fun validate(data: Person, metadata: String): List<Message> {
...
}
}
in jsMain
val personStore = object : RootStore<Person>(Person()) {
// only update when it's valid
val addOrUpdate = handle<Person> { oldPerson, newPerson ->
if (PersonValidator.isValid(newPerson, "update")) new else oldPerson
}
}
...
// then render the validation message list in your html
PersonValidator.msgs.render { msg ->
...
}.bind()
in jvmMain
if (PersonValidator.isValid(newPerson , "add")) {
//e.g. save your new Person to Database
...
} else {
// get the messages, only available after isValid() was called
val msgs = PersonValidator.msgs
...
}
new features
- added tracking-service to access process state of
Handler
s (e.g. to show process indicator). (PR#147) - added history-service to keep track of historical values in
Store
s and provideback()
function. (PR#152) - added
Repository
to offer CRUD-functionality for entities and dealing with queries. Implementations are available for REST and LocalStorage (see example). (PR#141, PR#144, PR#155 & PR#153) - added
storeOf()
function to create a minimalRootStore
(withoutHandler
s) (PR#144) - added convenience-function
render
onSeq
, so you can directly writeeach(...).render { ... }
(and leave outmap
) (PR#142) - added convenience-function
render
onFlow
, so you can directly writeflow.render { ... }
(and leave outmap
) (PR#154) - added functions to deal with errors in
Handler
s (PR#137) - snapshots are now provided on oss.jfrog.org (PR#128)
- added
append
function to remote (PR#127) - changed
IdProvider
to generic type (PR#123) - use
Inspector
(created byinspect()
-function) to navigate through your model in validation and test and have data and corresponding ids available at any point (PR#118)
fixed bugs
Version 0.6
breaking changes
This release contains changes that break code written with earlier versions:
- You no longer need to inherit
WithId
in your model-classes (the interface has been removed from fritz2 entirely). Instead, you need to provide a function which returns the id of a certain instance. This function can be used when callingeach
or creating aSubStore
for a certain element (PR#94):
// in commonMain
@Lenses
data class Model(val id: String, val value: String)
// in jsMain
val store = RootStore<List<Model>>(listOf(...))
render {
ul {
store.each(Model::id).map { modelStore ->
render {
li { modelStore.sub(L.Model.value).data.bind() }
}
}.bind()
}
}.mount("target")
-
All of the
each
methods (PR#113) were unified:-
use
Flow<T>.each()
to map each instance of T to yourTag
s. It uses Kotlin's equality function to determine whether or not two elements are the same, and therefore re-renders the whole content you mapped when an element is changed or moved. -
with
Flow<T>.each(idProvider: (T) -> String)
you can also map each instance of T to yourTag
s, but it uses the given idProvider to determine whether or not two elements are the same. In your mapping, you can get aSubStore
for an element usinglistStore.sub(id, idProvider)
, so only the parts that actually changed will be re-rendered. -
use
Store<List<T>>.each()
to map aSubStore<T>
toTag
s. It uses the list position of the element to determine whether or not two elements are the same. This means that when inserting something into the middle of the list, the changed element AND ALL following elements will be re-rendered. -
with
Store<List<T>>.each(idProvider: (T) -> String)
you can also map aSubStore<T>
toTag
s, but it uses the given idProvider to determine whether or not two elements are the same`, so only the parts that actually changed will be re-rendered. -
renamed
handleAndEmit
tohandleAndOffer
(PR#109) -
renamed
ModelIdRoot
toRootModelId
to follow the naming of stores (PR#96)
-
new features
- add static text in HTML by
+"yourText"
(PR#95) - add HTML-comments by
comment("yourText")
or!"yourText"
(PR#108) - use the
action
function to dispatch an action at any point in your code (PR#117)
fixed bugs
- fixed handling of
value
andchecked
attributes (PR#81) - fixed
MapRouter
to useMap<String,String>
(PR#82) - fixed double
kotlin
-block in gradle build-file (PR#97) - ensure order of children when mixing static tags with bound values on the same level by using
bind(preserveOrder = true)
(PR#102) - classes of HTML-tags are now open so you can inherit your own tags from them (PR#104)
SingleMountPoint
forBoolean
(leaving out the attribute if false) (PR#105)
Version 0.5
breaking changes
This release contains changes, that break code written with earlier versions:
- We moved all artifacts and packages to match our domain: dev.fritz2. You will have to adjust your inputs and dependencies accordingly.
- The default project-type for fritz2 now is multiplatform (to make it easy to share models and validation between client and server). Use the new fritz2-gradle-plugin to setup your project:
build.gradle.kts
plugins {
id("dev.fritz2.fritz2-gradle") version "0.5"
}
repositories {
jcenter()
}
kotlin {
kotlin {
jvm()
js().browser()
sourceSets {
val commonMain by getting {
dependencies {
implementation(kotlin("stdlib"))
}
}
val jvmMain by getting {
dependencies {
}
}
val jsMain by getting {
dependencies {
}
}
}
}
}
fixed bugs
- fixed dom-update problem with
checked
attribute atHTMLInputElement
Version 0.4
breaking changes
This release contains changes, that break code written with earlier versions:
- since it was the source of much confusion we renamed the function to build a tree of
Tag
s (formerlyhtml
) torender
:
render {
div("my-class") {
// ...
}
}
- the overloaded operator
<=
to bind aFlow
of actions or events to aHandler
was definitely not Kotlin-like, so we replaced it by thehandledBy
infix-function (please note the reversed order):
button("btn btn-primary") {
text("Add a dot")
clicks handledBy store.addADot
}
new features
- improved remote-api
- support for building and using WebComponents
bug fixes
- improved examples
- improved documentation
build.gradle.kts
Kotlin style
dependencies {
implementation("io.fritz2:fritz2-core-js:0.4")
}
Groovy style
dependencies {
implementation 'io.fritz2:fritz2-core-js:0.4'
}
Version 0.3
- several bug-fixes
- tidyed up syntax for text, attr, const
- better examples
- Improved diff-algorithm for list-handling
- better extractions on events (current value, selected item, etc.)
- reworked structure of GitHub-projects
Version 0.2
First automated release using github actions...
Version 0.1
Our first public release, just to test the build- and publish-process.