0.5.0 • Published 6 years ago

@lims.io/connector-dock v0.5.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

LIMS Connector for Dock

Injects Dock to the web page and allows communication with the related API.

Getting started

import Dock from "@lims.io/connector-dock";

// The name of the node that will hold the dock
const node = '#container';
// Url to dock api
const url = '...';
// Permatoken
const permatoken = '...';

const dock = Dock(node, url, {
    permatoken,
    onLoad() {
        
    },
    // Other API calls
});

Drivers

The library can be also used as a part of the following frameworks.

React

import React from "react";
import ReactDOM from "react-dom";
import {createReactComponent} from "@lims.io/connector-dock";

// Dock component
const Dock = createReactComponent(React, ReactDOM);

const View = ({url, permatoken, onLoad}) => (   
    <div>
        <Dock url={url} permatoken={permatoken} onLoad={onLoad}/>
    </div>
);