IMU-Drew / stripes-connect

Declarative REST data access for React components, part of the FOLIO project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The Stripes Connect module

Copyright (C) 2016-2018 The Open Library Foundation

This software is distributed under the terms of the Apache License, Version 2.0. See the file "LICENSE" for more information.

Introduction

Stripes Connect provides essentially one service: the ability to upgrade a regular React component into a Connected Component. This is done by importing the connect() method from stripes-connect, defining a data manifest, and exporting not the React component itself but the result of wrapping it in a call to connect():

import { Component } from 'react';
import { connect } from 'stripes-connect';
class MyStripesComponent extends Component {
  static manifest = { 'resourceName': { params: values } };
  // ...
}
export default connect(MyStripesComponent, 'moduleName');

Documentation

Additional information

See stripes-core.

See project STRPCONN at the FOLIO issue tracker.

Other FOLIO Developer documentation is at dev.folio.org

About

Declarative REST data access for React components, part of the FOLIO project

License:Apache License 2.0


Languages

Language:JavaScript 100.0%