mvysny / karibu-dsl

Kotlin Vaadin extensions and DSL

Home Page:http://www.vaadinonkotlin.eu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Powered By Vaadin on Kotlin Join the chat at https://gitter.im/vaadin/vaadin-on-kotlin GitHub tag Maven Central CI

Karibu-DSL (Vaadin Kotlin Extensions)

This is a Kotlin extensions and DSL library for the Vaadin framework.

Need a button? Write button {}. Need a text field? Write textField {}. Need a layout? Write

verticalLayout {
    val nameField = textField("Your name") {}
    button("Click me") {
        setPrimary()
        onClick { Notification.show("Hello, ${nameField.value}") }
    }
}

Build own components and views by composing existing components with layouts.

This library:

  • Allows you to create Vaadin UI designs in the structured code way; the idea behind the library is explained in the DSLs: Explained for Vaadin article. The general DSL idea is explained in Kotlin Type-Safe Builders.
  • Includes useful components like PopupButton and TabSheet
  • Contains additional useful methods which Vaadin lacks; see karibu-tools

Compatibility chart:

Vaadin Version Karibu DSL Version Min. Java Version Remarks
24+ 2.0.0+ 17
14-22 1.x 8
23 1.x 11
8 1.0.x 5 Read more below

Documentation/Tutorial

>>> Documentation + Tutorial <<<: Please read the Karibu-DSL Vaadin 14+ tutorial.

The origins of the word Karibu: it's a term for North American subspecies of the reindeer; that connects to Vaadin (which is a Finnish word for a female reindeer). A nice connotation comes from Swahili where Karibu means welcome.

Note: For Groovy Vaadin DSL please see the Vaadin Groovy Builder library.

Vaadin 8 Unsupported

Vaadin 8 is no longer supported starting from Karibu-DSL 1.1+. If you're still using Vaadin 8, please use Karibu-DSL 1.0.x. Please find the documentation for Karibu-DSL Vaadin 8 in the 1.0.x README.md. Also see Issue #35 for more details.

Why DSL?

Just compare the Kotlin-based CategoriesList with the original Java CategoriesList. Both render the Beverage Buddy: Categories page, yet with Kotlin DSL:

  • The UI structure is immediately visible
  • The code is more readable and much shorter and concise
  • You can more easily copy parts of the UI and paste it into your project

Supports Vaadin 14+.

Example Projects

Vaadin 24:

Vaadin 8 UITest / Component Palette

Back in the days there was a Vaadin 8 project called UITest (or Component Palette) which demoed all Vaadin 8 components along with all of ValoTheme styles. The project is no longer around officially, but there's a karibu-dsl fork of the project. To run it quickly, follow these steps:

git clone https://github.com/mvysny/karibu-dsl
cd karibu-dsl
git checkout 1.0.x
./gradlew clean build example-v8:appRun

You may need JDK 11 or JDK 8 to run the demo: JDK 17+ may or may not work.

Deprecation notes

The NumberRangePopup, DateRangePopup, ClosedInterval, NumberInterval and DateInterval classes have been removed from this project since they were too specific. You can find them in the jdbi-orm-vaadin project.

License

Licensed under the MIT License.

Copyright (c) 2017-2020 Martin Vysny

All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Contributing / Developing

See Contributing.

About

Kotlin Vaadin extensions and DSL

http://www.vaadinonkotlin.eu

License:MIT License


Languages

Language:Kotlin 97.0%Language:CSS 2.8%Language:HTML 0.2%Language:Isabelle 0.0%