mongodb-js / compass-query-bar

Renders a component for executing MongoDB queries through a GUI.

Home Page:https://www.mongodb.com/products/compass

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Compass Query Bar

Renders a component for executing MongoDB queries through a GUI.

License

Apache 2.0

Usage

Browser

Setting values via configure:

import Plugin, { configureStore, configureActions } from '@mongodb-js/compass-query-bar';

const actions = configureActions();
const store = configureStore({
  localAppRegistry: appRegistry,
  actions: actions,
  namespace: 'db.coll',
  serverVersion: '4.2.0',
  fields: [],
});

<Plugin store={store} actions={actions} />

Hadron/Electron

const role = appRegistry.getRole('Query.QueryBar')[0];
const Plugin = role.component;
const configureStore = role.configureStore;
const configureActions = role.configureActions;

const actions = configureActions();
const store = configureStore({
  globalAppRegistry: appRegistry,
  localAppRegistry: localAppRegistry,
  actions: actions,
  namespace: 'db.coll',
  serverVersion: '4.2.0',
  fields: []
});

<Plugin store={store} actions={actions} />

Fields

The fields array must be an array of objects that the ACE editor autocompleter understands. See This example for what that array looks like.

About

Renders a component for executing MongoDB queries through a GUI.

https://www.mongodb.com/products/compass

License:Apache License 2.0


Languages

Language:JavaScript 73.2%Language:Less 26.6%Language:Shell 0.2%