@cubejs-client/playground
TypeScript icon, indicating that this package has built-in type declarations

0.35.5 • Public • Published

Cube.js

WebsiteDocsBlogSlackTwitter

npm version GitHub Actions

Cube.js Playground

UI for Cube.js development server environment.

Learn more

React Components

@cubejs-client/playground provides standalone components you can embed in your application.

import { QueryBuilder } from '@cubejs-client/playground';
// import the antd styles from the `@cubejs-client/playground` package as it overrides some variables
import '@cubejs-client/playground/lib/antd.min.css';
// alternatively you can use the default antd styles
// import 'antd/dist/antd.min.css';

const apiUrl = 'http://localhost:4000/cubejs-api/v1';
const token = 'your.token';

export default function App() {
  const query = {
    measures: ['Orders.count'],
    dimensions:  ['Orders.status']
  };

  return (
    <QueryBuilder
      apiUrl={apiUrl}
      token={token}
      initialVizState={{
        query
      }}
    />
  );
}

Also, you will need to move the Playground chart renderers to a public folder. Assuming the publicly accessible folder is public, you can execute the following script from the root of your application

#!/bin/bash

rm -rf ./public/chart-renderers 2> /dev/null
cp -R ./node_modules/@cubejs-client/playground/public/chart-renderers ./public

License

Cube.js Client Core is MIT licensed.

Dependents (1)

Package Sidebar

Install

npm i @cubejs-client/playground

Homepage

.

Weekly Downloads

636

Version

0.35.5

License

MIT

Unpacked Size

19.7 MB

Total Files

535

Last publish

Collaborators

  • cubedevinc
  • statsbot
  • keydunov