1. goodtables-ui
UI for goodtables as an framework-agnostic browser components (DEMO).
1.1. Features
render- framework-agnostic component renderReport- goodtables report componentForm- goodtables validation form component
1.2. Getting Started
You could use this components in plain JavaScript code or mixing with any modern framework (with native support for React). To render report you have use goodtablesUI.render(goodtablesUI.Report, props, element) function.
First add bootstrap and component styles:
  <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <link rel="stylesheet" href="//unpkg.com/goodtables-ui/dist/goodtables-ui.min.css">
1.2.1. Installation
NPM
Install the package in your terminal
$ npm install --save goodtables-ui
The package could be used as goodtables-ui package from NPM:
import goodtablesUI from 'goodtables-ui'
const report = '<YOUR-REPORT>'
const element = document.getElementById('report')
goodtablesUI.render(goodtablesUI.Report, {report}, element)
CDN
The distribution is 60kb minified (20kb gzipped) with no dependencies.
The package could be used as pluggable script from CDN:
<div id="report"></div>
<script src="//unpkg.com/goodtables-ui/dist/goodtables-ui.min.js"></script>
<script>
  var report = '<YOUR-REPORT>'
  var element = document.getElementById('report')
  goodtablesUI.render(goodtablesUI.Report, {report}, element)
</script>
1.2.2. Examples
React
In this case your application should provide
reactandreact-dom.
You could use presented components as native React component (import from goodtables-ui/lib to get native React support):
import React from 'react'
import ReactDOM from 'react-dom'
import goodtablesUI from 'goodtables-ui/lib'
const report = '<YOUR-REPORT>'
const element = document.getElementById('report')
ReactDOM.render(<goodtablesUI.Report report={report} />, element)
Angular
This example is for Angular2+. Use similliar approach for Angular1.
The package's components could be used as angular component:
import {Component, Input} from '@angular/core';
import goodtablesUI from 'goodtablesUI'
@Component({
  selector: 'report',
  template: '<div id="report"></div>'
})
class Report {
  @Input() report: any;
  ngAfterViewInit() {
    const element = document.getElementById('report')
    goodtablesUI.render(goodtablesUI.Report, {report: this.report}, element)
  }
}
Vue
This example is for Vue2+. Use similar approach for Vue1.
The package's components could be used as vue component:
import goodtablesUI from 'goodtablesUI'
const Report = {
  props: ['report'],
  template: '<div id="report"></div>',
  mounted() {
    const element = document.getElementById('report')
    goodtablesUI.render(goodtablesUI.Report, {report: this.report}, element)
  },
}
1.3. Documentation
The whole public API of this package is described here and follows semantic versioning rules. Everything outside of this readme are private API and could be changed without any notification on any new version.
1.3.1. Render
To render one of the provided component render function should be used.
render(component, props, element)
component (Component)- it could be one of provided by the library component e.g.Reportprops (Object)- object containing propselement (Element)- DOM element to render into
1.3.2. Report
This component represents a goodtables report object.
<Report report/>
report (Object)- goodtables report
1.3.3. Form
This component represents a validation form.
<Form source options validate reportPromise/>
source (String)- seegoodtables-jsdocumentationoptions (Object)- seegoodtables-jsdocumentationvalidate (async func)- an async function which getssourceandoptionsand resolves to goodtables reportreportPromise (Promise)- a promise to be resolved as a goodtables report
1.4. Contributing
The project follows the Open Knowledge International coding standards. There are common commands to work with the project:
$ npm run dev
$ npm run build
$ npm run test
1.5. Changelog
Here described only breaking and the most important changes. The full changelog and documentation for all released versions could be found in nicely formatted commit history.
1.5.1. v1.1
Improved behaviour:
- updated to Data Quality Spec v1
 - added support for custom checks
 
1.5.2. v1.0
First stable realese.
1.5.3. v0.3
New functionality added:
Formcomponent now supports source/schema uploading
1.5.4. v0.2
New API added:
- published 
Formcomponent 
1.5.5. v0.1
New API added:
- published 
Reportcomponent - published 
renderfunction