-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Update types for TablePlugins (#1176)
- We were just defining a bunch of unknowns, which is bad practice - Instead define actual types, so makers of TablePlugins can use those types effectively - Add some details to the AuthPlugins readme - Did this cleanup while working on deephaven/deephaven-js-plugins#12 - Tested using the `table-example` plugin: https://github.com/deephaven/deephaven-js-plugins/tree/main/plugins/table-example - Used the following snippet: ``` from deephaven import empty_table from deephaven.jcompat import j_hashmap t = empty_table(5).update(["x=i"]) t2 = t.j_table.withAttributes(j_hashmap({ "PluginName": "table-example" })) ``` - Also tested error message is shown if unable to load the table plugin: ![image](https://github.com/deephaven/web-client-ui/assets/4505624/b8fe8b96-4bf7-441b-bff2-5ab4f06ff8ac)
- Loading branch information
Showing
9 changed files
with
255 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.