🎣 React hooks & components on top of squid.js
Go to file
Matthias Kretschmann b48ecf6656
setup project architecture
2020-04-25 02:27:45 +02:00
src setup project architecture 2020-04-25 02:27:45 +02:00
.eslintrc setup project architecture 2020-04-25 02:27:45 +02:00
.gitignore setup project architecture 2020-04-25 02:27:45 +02:00
.prettierrc setup project architecture 2020-04-25 02:27:45 +02:00
LICENSE setup project architecture 2020-04-25 02:27:45 +02:00
README.md setup project architecture 2020-04-25 02:27:45 +02:00
package-lock.json setup project architecture 2020-04-25 02:27:45 +02:00
package.json setup project architecture 2020-04-25 02:27:45 +02:00
tsconfig.json setup project architecture 2020-04-25 02:27:45 +02:00

README.md

banner

react

React hooks & components on top of squid.js

code style: prettier js oceanprotocol

Table of Contents

🏗 Installation

npm install @oceanprotocol/react

🏄 Usage

First, wrap your App with the OceanProvider and provide its config object:

import React from 'react'
import { OceanProvider, Config } from '@oceanprotocol/react'

const config: Config = {
    nodeUri: '',
    ...
}

export default function MyApp({ children }: { children: React.ReactNode }): React.ReactNode {
  return (
    <OceanProvider config={config}>
      <h1>My App</h1>
      {children}
    </OceanProvider>
  )
}

Then within your component use the provided hooks to interact with Ocean's functionality:

import React from 'react'
import { useOcean, OceanConfig, useConsume } from '@oceanprotocol/react'

export default function MyComponent() {
  // Initialize, get existing, or reinitialize Ocean
  const { ocean, account } = useOcean(oceanConfig)

  // consume asset
  const { consumeAsset, isLoading, step } = useConsume(ocean)

  async function handleClick() {
    const ddo = 'did:op:0x000000000'
    await consumeAsset(ddo, account)
  }

  return (
    <div>
      Your account: {account}
      <button onClick={handleClick}>
        {isLoading ? step : 'Download Asset'}
      </button>
    </div>
  )
}

🦑 Development

The project is authored with TypeScript and compiled with tsc.

To start compiler in watch mode:

npm start

Code Style

For linting and auto-formatting you can use from the root of the project:

# auto format all ts & css with eslint & stylelint
npm run lint

# auto format all ts & css with prettier, taking all configs into account
npm run format

👩‍🔬 Testing

🛳 Production

The build script will compile src/ with tsc into:

  1. CommonJS module with ES5 syntax
  2. ES module with ES5 syntax
npm run build

⬆️ Releases

📜 Changelog

See the CHANGELOG.md file.

🎁 Contribute

See the page titled "Ways to Contribute" in the Ocean Protocol documentation.

🏛 License

Copyright 2020 Ocean Protocol Foundation 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

   http://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.