GithubHelp home page GithubHelp logo

e13mort / premo Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dmdevgo/premo

0.0 1.0 0.0 6.5 MB

Premo helps to implement the presentation layer and share it on Android, iOS, Desktop and Web.

License: MIT License

Kotlin 100.00%

premo's Introduction

Premo

Maven Central License: MIT platform-android platform-ios platform-jvm platform-js

Premo is a Kotlin Multiplatform library that helps to implement the Presentation Layer and share it on Android, iOS, Desktop and Web. Focus on writing logic instead of solving common and boring UI related issues.

Here are some key features:

  • State holding — PresentationModel is a multiplatform version of the ViewModel.
  • Lifecycle — PresentationModel is lifecycle aware.
  • Navigation — navigate between PresentationModels instead of switching views.
  • Persistence — saving and restoring state after recreating a process.
  • Communication — send messages from children towards the root PresentationModel.

At the same time, the library does not depend on:

  • Architecture — MVVM, PM, MVI or other.
  • UI — Compose, SwiftUI, UIKit, React and other.

Navigation module implements the following commonly used navigators:

  • StackNavigator — organizes child presentation models in a stack and navigate between them.
  • SetNavigator — can be used for tabs, bottom navigation, navigation drawer.
  • MasterDetailNavigator — allows to implement an adaptive layout to show one pane or two panes side-by-side.
  • DialogNavigator — helps to show a dialog and wait for the result from it

Overview

The library is based on the ideas of the Presentation Model pattern described by Martin Fowler. The Presentation Model stores the state for presentation and coordinates with the domain model layer.

In practice, you will have not only one Presentation Model, but a composition of child Presentation Models. At the base, there will be a root Presentation Model, from which a tree of children will grow. Children can be pushed into the Stack Navigator, thus organizing the navigation stack.

Such a tree composition is well suited for a hierarchical view as well as for a composition of functions from declarative UI frameworks.

One interesting feature of the tree is that the child keeps a reference to the parent. This allows for messaging between Presentation Models. For example, when some event occurs in a child that requires a reaction from the parent. In this case, the child can send a message towards the root for one of the parents to handle it.

Navigation commands can be the such event. A Child PM sends a message and then its Parent PM can intercept this message and push the next Child PM into the Stack Navigator.

This way of navigation has several advantages:

  • Relieves the Child PM from the responsibility of what transition to make and allow the parents to decide.
  • Simplifies nested navigation when an event occurs deep in the hierarchy.

Installation

Add to the root gradle script:

allprojects {
    repositories {
        mavenCentral()
    }
}

Add dependencies to the shared multiplatform module:

kotlin {
    sourceSets {
        val commonMain by getting {
            dependencies {
                api("me.dmdev.premo:premo:<latest_version>")
                api("me.dmdev.premo:premo-navigation:<latest_version>")
                api("me.dmdev.premo:premo-saver-json:<latest_version>")
            }
        } 
    }
}

Attention! The library is in the pre-release alpha version. Stable work and backward compatibility are not guaranteed. API may be changed in the future.

Sample

Sample demonstrates:

  • Sharing presentation logic between Android, iOS, Desktop and Web.
  • Sharing Compose UI between Android, iOS, Desktop and Web.
  • UI on Compose Multiplatform, SwiftUI, React, Compose for Html.
  • Simple Counter.
  • Stack navigation.
  • Bottom navigation with multistack.
  • Master-Detail navigation.
  • Dialog navigation.
  • Saving and restoring the state after killing the process.

License

The MIT License (MIT)

Copyright (c) 2020-2023 Dmitriy Gorbunov ([email protected])

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.

premo's People

Contributors

dmdevgo avatar jeevuz avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.