-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Standalone JS pkg #16
Comments
@manzt Absolutely loving |
In other words, make quak a mosaic component that satisfies the component interface? |
@domoritz yes, would be a really nice addition to the components. |
And while I originally was only thinking the |
Yes! This is my intention. I think import { coordinator } from "@uwdata/mosaic-core";
import { datatable } from "./lib/clients/DataTable.ts";
// setup df table in database...
const dt = await datatable("df", { coordinator: coordinator() });
const filterBy = dt.filterBy; // use with other clients Originally I'd had this lifted up one level, where you could create and pass in the crossfilter selection ( import { coordinator, Selection } from "@uwdata/mosaic-core";
import { datatable } from "./lib/clients/DataTable.ts";
// setup df table in database...
const filterBy = Selection.crossfilter();
const dt = await datatable("df", { coordinator: coordinator(), filterBy: filterBy }); if there are things I'm missing! Just want to setup a minimal, public API to make the JS release in a way that interfaces very well with the rest of the mosaic ecosystem. |
wow, totally love that we can share (low-friction) ideas with stackblitz this way. new to me, thanks for sharing, @timelyportfolio :) |
The custom DataTable Mosaic client should be published to npm and usable without the Python-based db.
The text was updated successfully, but these errors were encountered: