types-redux-orm

0.0.4 • Public • Published

types-redux-orm

Typescript types for Redux Orm

Important

It's an alpha version of types I currently use in one of my projects. They will be updated as I proceed with the project. No backward compatibility guaranteed.

Roadmap

01/13/18 - Beta release
02/03/18 - Stable release and merge into DefinitelyTyped

Install

npm install types-redux-orm

Modify your tsconfig.json as following:

...
"typeRoots": [
      "./node_modules/types-redux-orm",
      "./node_modules/@types"
    ],
...

Recipes

Model

import { attr, IORMCommonState, IORMId, ITableState, Model, ORM } from 'redux-orm'
 
export class Test extends Model<ITestStateItem, IFetchIndicatorState> {
  static modelName = 'Test'
 
  static fields = {
    test: attr(),
    isFetching: attr({ getDefault: () => false }),
    id: attr()
  }
}
 
// core data which we do not have defaults for
export interface ITestStateItem {
  teststring
}
 
// optional data we provide defaults for
export interface IFetchIndicatorState {
  isFetchingboolean
}
 
// id attr is added automatically by redux-orm therefore we have IORMId interface
export type ITestState = ITableState<ITestStateItem & IORMId & IFetchIndicatorState>
 
export interface ITestORMState extends IORMCommonState {
  TestITestState
}
 
interface ITestORMModels {
  Test: typeof Test
}
 
const orm = new ORM<ITestORMState>()
orm.register<ITestORMModels>(Test)
export default orm

Reducer

interface ITestDTO {
  test: string
}
 
const reducerAddItem = (state: ITestORMState, action: ActionMeta<ITestDTO, any>): ITestORMState => {
  const session = orm.session(state)
  session.Test.upsert<ITestStateItem>(action.payload)
  return session.state
}

Selector

import { createSelector as createSelectorORM, IORMId, ISession } from 'redux-orm'
 
interface ITestDisplayItem {
  test: string
}
type ITestDisplayItemList = ITestDisplayItem[]
 
export const makeGetTestDisplayList = () => {
  const ormSelector = createSelectorORM<ITestORMState>(orm, (session: ISession<ITestORMState>) =>
    session.Test
      .all<ITestStateItem, IFetchIndicatorState>()
      .toRefArray()
      .map((item) => ({ ...item }))
  })
  return createSelector<IRootState, ITestORMState, ITestDisplayItemList>(
    ({ test }) => test,
    ormSelector
  )
}

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.4
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.4
    1
  • 0.0.3
    0
  • 0.0.2
    0
  • 0.0.1
    0

Package Sidebar

Install

npm i types-redux-orm

Weekly Downloads

1

Version

0.0.4

License

MIT

Unpacked Size

11.5 kB

Total Files

4

Last publish

Collaborators

  • keenondrums
  • aigoncharov