1.8.2 • Published 7 years ago

mantra-core-extra v1.8.2

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

mantra-core-extra

Core API for Mantra.This package is meant to replace original mantra-core, mantra-core should be removed to avoid interference and unexpected behavior.

Installation

# Remove original mantra-core
npm remove mantra-core
npm install --save mantra-core-extra

#Original mantra-core Instructions

Introduction

This repo contains the core APP api where we create an mantra app and initialize it.

Also, this package contains exported functions from both react-komposer and react-simple-di. That's purely for the ease of use.

App API

import MyComp from './myComp';
import {createApp} from 'mantra-core';

// Here's a simple Mantra Module
const module = {
  routes(injectDeps) {
    const InjectedComp = injectDeps(MyComp);
    // load routes and put `InjectedComp` to the screen.
  },
  load(context, actions) {
    // do any module initialization
  },
  actions: {
    myNamespace: {
      doSomething: (context, arg1) => {}
    }
  }
};

const context = {
  client: new DataClient()
};

const app = createApp(context);
app.loadModule(module);
// app.loadModule(someOtherModule);
app.init();
1.8.2

7 years ago

1.8.1

7 years ago

1.8.0

7 years ago