Git Product home page Git Product logo

android-rdx's Introduction

Android-RDX

Build Status codecov.io License

Redux on Android

This is a port of the Redux paradigm for building apps, built specifically for use on the Android platform. It uses native Android constructs including Lifecycle Aware components, LiveData, ViewModels etc to achieve the Redux spec.

(Image source: reduxjs/redux#653 (comment))

NOTE: This library is currently in beta stage. The APIs are mostly frozen, but internals may change.

Getting Started

Add the jitpack repository to your root build.gradle

allprojects {
  repositories {
    maven { url "https://jitpack.io" }
  }
}

Add the android-RDX dependency:

dependencies {
        implementation 'com.github.flipkart-incubator:android-RDX:v1.0.0'
    }

API

Setup

To begin with, create implementations of the State & Action interfaces:

public class AppState implements State<AppState> {

    public String screenState;
    
    // All internal objects/primitives must be synced here, for preventing leaks & changing state references on every update.
    @Override
    public void sync(@NonNull AppState currentState) {
        this.screenState = currentState.screenState;
    }
}
public class AppAction implements Action {

    @Nullable
    public HashMap<String, String> payload; // This can be anything. The Action interface only enforces the #getType() method.

    @NonNull
    @Override
    public String getType() {
        return "EXAMPLE_ACTION";
    }
}

Then, create a Reducer as follows:

public class AppReducer implements Reducer<AppState, AppAction> {
    @NonNull
    @Override
    public AppState reduce(@NonNull AppState oldState, @NonNull AppAction action) {
        AppState newState = new AppState();
        newState.sync(oldState);

        switch (action.getType()) {
            case "CHANGE_SCREEN": {
                String newScreen = ((ChangeScreenAction) action).getScreenName();
                newState.setScreenState(newScreen);
                return newState;
            }
        }
        return newState;
    }
}

To initialize the Redux Store, extend ReduxViewModel & implement the initializeStore() method:

public class AppReduxViewModel extends ReduxViewModel<AppState, AppAction> {

    @NonNull
    @Override
    protected Store<AppState, AppAction> initializeStore() {
        AppState initState = new AppState(); //initialize your state here.
        return new Store<>(initState, new AppReducer(), new LoggingMiddleware());
    }
}

The Store constructor takes in the following arguments:

Store(@NonNull S initialState, @NonNull Reducer<S, A> reducer, @Nullable Middleware<S, A>... middlewareList)

Finally, instantiate a new ReduxController inside your Activity/Fragment:

public class MainActivity extends FragmentActivity {

    @Nullable
    ReduxController<AppState, AppAction, AppReduxViewModel> reduxController;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        
        reduxController = new ReduxController<>(AppReduxViewModel.class, this::updateState, this, this, true);
    }

    public void updateState(@Nullable AppState state) {...}
}

The ReduxController constructor takes in the following arguments:

ReduxController(@NonNull Class<T> reduxViewModelClass, Observer<S> observer, @NonNull FragmentActivity activity, @NonNull LifecycleOwner lifecycleOwner, boolean distinctUntilChanged)

*Note that for enabling the distinctUntilChanged functionality (only getting redux store updates when the state is modified), your app's state MUST implement equals() & hashcode() correctly.

You can also (optionally) create your Middleware as per your use case, and provide it to your ReduxViewModel implementation via the initializeStore() method above, for eg:

public class LoggingMiddleware implements Middleware<AppState, AppAction> {

    @Override
    public void dispatch(@NonNull AppAction action, @NonNull ReduxStore<AppState, AppAction> store, @Nullable Dispatcher<AppAction> next) {
        Log.d("TEST", " The current action type is: " + action.type + " Payload: " + action.payload);
        if (next != null) {
            next.dispatch(action);
        }
    }
}

Usage

After the setup flow above, we are now ready to 'dispatch' an action & observe on state updates. To dispatch an action, use the dispatch function provided by the controller, wherever necessary.:

   button.setOnClickListener(v -> {
        HashMap<String, String> payload = new HashMap<>();
        String currentScreen = "NEW_SCREEN";
        payload.put("screen", currentScreen);
        reduxController.dispatch(new AppAction("CHANGE_SCREEN", payload));
    });

You can also expose the redux controller to any MVC/VM/Whatever instance via the Activity context, for executing dispatches appropriately.

Once this dispatch is consumed by the Store & a new state has been reduced, the Activity/Fragment will be notified via the Observer<S extends State> callback provided to the ReduxController:

    // handle state updates here.
    public void updateState(@Nullable AppState state) {
        if (textView != null && state != null) {
            textView.setText(state.screenState);
        }
    }

License

The Apache License

Copyright (c) 2020 Flipkart Internet Pvt. Ltd.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

You may obtain a copy of the License at

   https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

See the License for the specific language governing permissions and
limitations under the License.

android-rdx's People

Contributors

ankit-w avatar thekirankumar 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.