Skip to content

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

License

Notifications You must be signed in to change notification settings

folio-org/stripes-connect

Repository files navigation

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