@perspective-dev/viewer 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +193 -0
- package/README.md +4 -0
- package/dist/cdn/perspective-viewer.js +3 -0
- package/dist/cdn/perspective-viewer.js.map +7 -0
- package/dist/css/dracula.css +1 -0
- package/dist/css/gruvbox-dark.css +1 -0
- package/dist/css/gruvbox.css +1 -0
- package/dist/css/icons.css +1 -0
- package/dist/css/intl/de.css +1 -0
- package/dist/css/intl/es.css +1 -0
- package/dist/css/intl/fr.css +1 -0
- package/dist/css/intl/ja.css +1 -0
- package/dist/css/intl/pt.css +1 -0
- package/dist/css/intl/zh.css +1 -0
- package/dist/css/intl.css +1 -0
- package/dist/css/monokai.css +1 -0
- package/dist/css/pro-dark.css +1 -0
- package/dist/css/pro.css +1 -0
- package/dist/css/solarized-dark.css +1 -0
- package/dist/css/solarized.css +1 -0
- package/dist/css/themes.css +1 -0
- package/dist/css/vaporwave.css +1 -0
- package/dist/css/variables.css +0 -0
- package/dist/esm/bootstrap.d.ts +1 -0
- package/dist/esm/extensions.d.ts +70 -0
- package/dist/esm/perspective-viewer.d.ts +39 -0
- package/dist/esm/perspective-viewer.inline.js +3 -0
- package/dist/esm/perspective-viewer.inline.js.map +7 -0
- package/dist/esm/perspective-viewer.js +3 -0
- package/dist/esm/perspective-viewer.js.map +7 -0
- package/dist/esm/plugin.d.ts +195 -0
- package/dist/esm/ts-rs/Aggregate.d.ts +1 -0
- package/dist/esm/ts-rs/ColumnConfigValues.d.ts +31 -0
- package/dist/esm/ts-rs/CustomDatetimeFormat.d.ts +1 -0
- package/dist/esm/ts-rs/CustomDatetimeStyleConfig.d.ts +15 -0
- package/dist/esm/ts-rs/CustomNumberFormatConfig.d.ts +18 -0
- package/dist/esm/ts-rs/DatetimeColorMode.d.ts +1 -0
- package/dist/esm/ts-rs/DatetimeFormatType.d.ts +6 -0
- package/dist/esm/ts-rs/Expressions.d.ts +3 -0
- package/dist/esm/ts-rs/Filter.d.ts +2 -0
- package/dist/esm/ts-rs/FilterReducer.d.ts +1 -0
- package/dist/esm/ts-rs/FilterTerm.d.ts +2 -0
- package/dist/esm/ts-rs/FormatMode.d.ts +1 -0
- package/dist/esm/ts-rs/FormatUnit.d.ts +1 -0
- package/dist/esm/ts-rs/NumberBackgroundMode.d.ts +1 -0
- package/dist/esm/ts-rs/NumberForegroundMode.d.ts +1 -0
- package/dist/esm/ts-rs/OptionalUpdate.d.ts +1 -0
- package/dist/esm/ts-rs/PluginConfig.d.ts +2 -0
- package/dist/esm/ts-rs/RoundingMode.d.ts +1 -0
- package/dist/esm/ts-rs/RoundingPriority.d.ts +1 -0
- package/dist/esm/ts-rs/Scalar.d.ts +5 -0
- package/dist/esm/ts-rs/SignDisplay.d.ts +1 -0
- package/dist/esm/ts-rs/SimpleDatetimeFormat.d.ts +1 -0
- package/dist/esm/ts-rs/SimpleDatetimeStyleConfig.d.ts +6 -0
- package/dist/esm/ts-rs/Sort.d.ts +2 -0
- package/dist/esm/ts-rs/SortDir.d.ts +1 -0
- package/dist/esm/ts-rs/StringColorMode.d.ts +1 -0
- package/dist/esm/ts-rs/TrailingZeroDisplay.d.ts +1 -0
- package/dist/esm/ts-rs/UseGrouping.d.ts +1 -0
- package/dist/esm/ts-rs/ViewerConfigUpdate.d.ts +102 -0
- package/dist/esm/ts-rs/serde_json/JsonValue.d.ts +3 -0
- package/dist/wasm/perspective-viewer.d.ts +1291 -0
- package/dist/wasm/perspective-viewer.js +3883 -0
- package/dist/wasm/perspective-viewer.wasm +0 -0
- package/dist/wasm/perspective-viewer.wasm.d.ts +142 -0
- package/dist/wasm/snippets/perspective-viewer-c69283f6f62a5f14/inline0.js +1 -0
- package/dist/wasm/snippets/perspective-viewer-c69283f6f62a5f14/inline1.js +1 -0
- package/dist/wasm/snippets/perspective-viewer-c69283f6f62a5f14/inline2.js +1 -0
- package/dist/wasm/snippets/perspective-viewer-c69283f6f62a5f14/inline3.js +44 -0
- package/dist/wasm/snippets/perspective-viewer-c69283f6f62a5f14/inline4.js +1 -0
- package/package.json +55 -0
- package/src/less/aggregate-selector.less +72 -0
- package/src/less/column-dropdown.less +95 -0
- package/src/less/column-selector.less +551 -0
- package/src/less/column-settings-panel.less +255 -0
- package/src/less/column-style.less +319 -0
- package/src/less/column-symbol-attributes.less +73 -0
- package/src/less/config-selector.less +363 -0
- package/src/less/containers/dropdown-menu.less +94 -0
- package/src/less/containers/pairs-list.less +46 -0
- package/src/less/containers/radio-list.less +29 -0
- package/src/less/containers/scroll-panel.less +27 -0
- package/src/less/containers/split-panel.less +80 -0
- package/src/less/containers/tabs.less +90 -0
- package/src/less/dom/checkbox.less +100 -0
- package/src/less/dom/scrollbar.less +35 -0
- package/src/less/dom/select.less +63 -0
- package/src/less/empty-column.less +72 -0
- package/src/less/expression-editor.less +152 -0
- package/src/less/filter-dropdown.less +53 -0
- package/src/less/filter-item.less +126 -0
- package/src/less/form/code-editor.less +137 -0
- package/src/less/form/debug.less +88 -0
- package/src/less/function-dropdown.less +45 -0
- package/src/less/plugin-selector.less +173 -0
- package/src/less/render-warning.less +81 -0
- package/src/less/status-bar.less +551 -0
- package/src/less/type-icon.less +68 -0
- package/src/less/viewer.less +368 -0
- package/src/rust/components/column_dropdown.rs +162 -0
- package/src/rust/components/column_selector/active_column.rs +462 -0
- package/src/rust/components/column_selector/add_expression_button.rs +59 -0
- package/src/rust/components/column_selector/aggregate_selector.rs +186 -0
- package/src/rust/components/column_selector/config_selector.rs +674 -0
- package/src/rust/components/column_selector/empty_column.rs +134 -0
- package/src/rust/components/column_selector/expression_toolbar.rs +45 -0
- package/src/rust/components/column_selector/filter_column.rs +530 -0
- package/src/rust/components/column_selector/inactive_column.rs +221 -0
- package/src/rust/components/column_selector/invalid_column.rs +37 -0
- package/src/rust/components/column_selector/pivot_column.rs +93 -0
- package/src/rust/components/column_selector/sort_column.rs +135 -0
- package/src/rust/components/column_selector.rs +426 -0
- package/src/rust/components/column_settings_sidebar/attributes_tab.rs +34 -0
- package/src/rust/components/column_settings_sidebar/mod.rs +17 -0
- package/src/rust/components/column_settings_sidebar/save_settings.rs +68 -0
- package/src/rust/components/column_settings_sidebar/sidebar.rs +396 -0
- package/src/rust/components/column_settings_sidebar/style_tab/column_style.rs +177 -0
- package/src/rust/components/column_settings_sidebar/style_tab/stub.rs +34 -0
- package/src/rust/components/column_settings_sidebar/style_tab/symbol/row_selector.rs +101 -0
- package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_config.rs +24 -0
- package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_pairs.rs +185 -0
- package/src/rust/components/column_settings_sidebar/style_tab/symbol/symbol_selector.rs +55 -0
- package/src/rust/components/column_settings_sidebar/style_tab/symbol.rs +131 -0
- package/src/rust/components/column_settings_sidebar/style_tab.rs +231 -0
- package/src/rust/components/containers/dragdrop_list.rs +325 -0
- package/src/rust/components/containers/dropdown_menu.rs +104 -0
- package/src/rust/components/containers/kvpair.rs +47 -0
- package/src/rust/components/containers/mod.rs +28 -0
- package/src/rust/components/containers/scroll_panel.rs +311 -0
- package/src/rust/components/containers/scroll_panel_item.rs +111 -0
- package/src/rust/components/containers/select.rs +269 -0
- package/src/rust/components/containers/sidebar.rs +89 -0
- package/src/rust/components/containers/split_panel.rs +483 -0
- package/src/rust/components/containers/tab_list.rs +104 -0
- package/src/rust/components/containers/tests/mod.rs +11 -0
- package/src/rust/components/containers/tests/split_panel.rs +91 -0
- package/src/rust/components/containers/trap_door_panel.rs +50 -0
- package/src/rust/components/copy_dropdown.rs +136 -0
- package/src/rust/components/datetime_column_style/custom.rs +222 -0
- package/src/rust/components/datetime_column_style/simple.rs +122 -0
- package/src/rust/components/datetime_column_style.rs +284 -0
- package/src/rust/components/editable_header.rs +183 -0
- package/src/rust/components/empty_row.rs +169 -0
- package/src/rust/components/error_message.rs +56 -0
- package/src/rust/components/export_dropdown.rs +153 -0
- package/src/rust/components/expression_editor.rs +153 -0
- package/src/rust/components/filter_dropdown.rs +144 -0
- package/src/rust/components/font_loader.rs +254 -0
- package/src/rust/components/form/code_editor.rs +286 -0
- package/src/rust/components/form/color_range_selector.rs +115 -0
- package/src/rust/components/form/color_selector.rs +54 -0
- package/src/rust/components/form/debug.rs +253 -0
- package/src/rust/components/form/highlight.rs +50 -0
- package/src/rust/components/form/mod.rs +29 -0
- package/src/rust/components/form/number_field.rs +72 -0
- package/src/rust/components/form/number_input.rs +45 -0
- package/src/rust/components/form/number_range_field.rs +77 -0
- package/src/rust/components/form/optional_field.rs +53 -0
- package/src/rust/components/form/select_field.rs +104 -0
- package/src/rust/components/function_dropdown.rs +151 -0
- package/src/rust/components/mod.rs +45 -0
- package/src/rust/components/modal.rs +171 -0
- package/src/rust/components/number_column_style.rs +522 -0
- package/src/rust/components/plugin_selector.rs +196 -0
- package/src/rust/components/render_warning.rs +178 -0
- package/src/rust/components/status_bar.rs +315 -0
- package/src/rust/components/status_bar_counter.rs +229 -0
- package/src/rust/components/status_indicator.rs +164 -0
- package/src/rust/components/string_column_style.rs +186 -0
- package/src/rust/components/style/local_style.rs +35 -0
- package/src/rust/components/style/mod.rs +52 -0
- package/src/rust/components/style/style_cache.rs +132 -0
- package/src/rust/components/style/style_provider.rs +65 -0
- package/src/rust/components/style_controls/number_string_format/digits_section.rs +140 -0
- package/src/rust/components/style_controls/number_string_format/misc_section.rs +56 -0
- package/src/rust/components/style_controls/number_string_format/style_section.rs +69 -0
- package/src/rust/components/style_controls/number_string_format/types.rs +31 -0
- package/src/rust/components/style_controls/number_string_format.rs +259 -0
- package/src/rust/components/style_controls.rs +15 -0
- package/src/rust/components/type_icon.rs +53 -0
- package/src/rust/components/viewer.rs +668 -0
- package/src/rust/config/columns_config.rs +132 -0
- package/src/rust/config/datetime_column_style/color_mode.rs +62 -0
- package/src/rust/config/datetime_column_style/custom.rs +121 -0
- package/src/rust/config/datetime_column_style/custom_format.rs +90 -0
- package/src/rust/config/datetime_column_style/simple.rs +55 -0
- package/src/rust/config/datetime_column_style/simple_format.rs +86 -0
- package/src/rust/config/datetime_column_style.rs +104 -0
- package/src/rust/config/mod.rs +30 -0
- package/src/rust/config/number_column_style.rs +138 -0
- package/src/rust/config/number_string_format/enums.rs +298 -0
- package/src/rust/config/number_string_format.rs +269 -0
- package/src/rust/config/string_column_style.rs +140 -0
- package/src/rust/config/view_config.rs +24 -0
- package/src/rust/config/viewer_config.rs +337 -0
- package/src/rust/custom_elements/column_dropdown.rs +123 -0
- package/src/rust/custom_elements/copy_dropdown.rs +112 -0
- package/src/rust/custom_elements/debug_plugin.rs +114 -0
- package/src/rust/custom_elements/export_dropdown.rs +112 -0
- package/src/rust/custom_elements/filter_dropdown.rs +179 -0
- package/src/rust/custom_elements/function_dropdown.rs +115 -0
- package/src/rust/custom_elements/mod.rs +24 -0
- package/src/rust/custom_elements/modal.rs +395 -0
- package/src/rust/custom_elements/viewer.rs +880 -0
- package/src/rust/custom_events.rs +214 -0
- package/src/rust/dragdrop.rs +362 -0
- package/src/rust/exprtk/cursor.rs +81 -0
- package/src/rust/exprtk/mod.rs +17 -0
- package/src/rust/exprtk/tokenize/comment.rs +21 -0
- package/src/rust/exprtk/tokenize/number.rs +44 -0
- package/src/rust/exprtk/tokenize/string.rs +98 -0
- package/src/rust/exprtk/tokenize/symbol.rs +26 -0
- package/src/rust/exprtk/tokenize.rs +190 -0
- package/src/rust/js/clipboard.rs +77 -0
- package/src/rust/js/clipboard_item.rs +21 -0
- package/src/rust/js/intersection_observer.rs +32 -0
- package/src/rust/js/mimetype.rs +42 -0
- package/src/rust/js/mod.rs +29 -0
- package/src/rust/js/plugin.rs +167 -0
- package/src/rust/js/resize_observer.rs +37 -0
- package/src/rust/js/testing.rs +149 -0
- package/src/rust/lib.rs +116 -0
- package/src/rust/model/columns_iter_set.rs +340 -0
- package/src/rust/model/copy_export.rs +157 -0
- package/src/rust/model/create_col.rs +59 -0
- package/src/rust/model/edit_expression.rs +95 -0
- package/src/rust/model/export_app.rs +58 -0
- package/src/rust/model/export_method.rs +151 -0
- package/src/rust/model/get_viewer_config.rs +85 -0
- package/src/rust/model/intersection_observer.rs +81 -0
- package/src/rust/model/is_invalid_drop.rs +36 -0
- package/src/rust/model/mod.rs +93 -0
- package/src/rust/model/plugin_column_styles.rs +106 -0
- package/src/rust/model/resize_observer.rs +98 -0
- package/src/rust/model/restore_and_render.rs +113 -0
- package/src/rust/model/structural.rs +73 -0
- package/src/rust/model/update_and_render.rs +74 -0
- package/src/rust/presentation.rs +370 -0
- package/src/rust/renderer/activate.rs +49 -0
- package/src/rust/renderer/limits.rs +200 -0
- package/src/rust/renderer/plugin_store.rs +45 -0
- package/src/rust/renderer/registry.rs +135 -0
- package/src/rust/renderer/render_timer.rs +185 -0
- package/src/rust/renderer.rs +463 -0
- package/src/rust/session/column_defaults_update.rs +141 -0
- package/src/rust/session/drag_drop_update.rs +179 -0
- package/src/rust/session/metadata.rs +308 -0
- package/src/rust/session/replace_expression_update.rs +131 -0
- package/src/rust/session/view_subscription.rs +189 -0
- package/src/rust/session.rs +794 -0
- package/src/rust/utils/browser/blob.rs +49 -0
- package/src/rust/utils/browser/download.rs +26 -0
- package/src/rust/utils/browser/mod.rs +24 -0
- package/src/rust/utils/browser/request_animation_frame.rs +76 -0
- package/src/rust/utils/browser/selection.rs +79 -0
- package/src/rust/utils/browser/tests/debounce.rs +114 -0
- package/src/rust/utils/browser/tests/mod.rs +13 -0
- package/src/rust/utils/custom_element.rs +85 -0
- package/src/rust/utils/datetime.rs +49 -0
- package/src/rust/utils/debounce.rs +54 -0
- package/src/rust/utils/hooks/mod.rs +15 -0
- package/src/rust/utils/hooks/use_async_callback.rs +53 -0
- package/src/rust/utils/mod.rs +114 -0
- package/src/rust/utils/number_format.rs +48 -0
- package/src/rust/utils/pubsub.rs +222 -0
- package/src/rust/utils/scope.rs +54 -0
- package/src/rust/utils/tee.rs +88 -0
- package/src/rust/utils/tests/mod.rs +14 -0
- package/src/rust/utils/tests/pubsub.rs +95 -0
- package/src/rust/utils/tests/request_animation_frame.rs +42 -0
- package/src/rust/utils/wasm_abi.rs +61 -0
- package/src/rust/utils/weak_scope.rs +39 -0
- package/src/svg/align-scroll-icon.svg +7 -0
- package/src/svg/bg-pattern.png +0 -0
- package/src/svg/boolean-type.svg +3 -0
- package/src/svg/checkbox-checked-icon.svg +7 -0
- package/src/svg/checkbox-hover.svg +4 -0
- package/src/svg/checkbox-off.svg +4 -0
- package/src/svg/checkbox-on.svg +4 -0
- package/src/svg/checkbox-unchecked-icon.svg +3 -0
- package/src/svg/close-icon.svg +6 -0
- package/src/svg/column-settings-icon.svg +6 -0
- package/src/svg/datagrid-select-column.svg +15 -0
- package/src/svg/datagrid-select-region.svg +15 -0
- package/src/svg/datagrid-select-row.svg +13 -0
- package/src/svg/datagrid.svg +13 -0
- package/src/svg/date-type.svg +23 -0
- package/src/svg/downloading.gif +0 -0
- package/src/svg/drag-handle.svg +10 -0
- package/src/svg/drawer-bg-pattern-hidpi.png +0 -0
- package/src/svg/drawer-tab-hover.svg +8 -0
- package/src/svg/drawer-tab-invert-hover.svg +9 -0
- package/src/svg/drawer-tab-invert.svg +8 -0
- package/src/svg/drawer-tab.svg +7 -0
- package/src/svg/dropdown-selector-light.svg +3 -0
- package/src/svg/dropdown-selector.svg +3 -0
- package/src/svg/duplicate-icon.svg +4 -0
- package/src/svg/editable-icon.svg +5 -0
- package/src/svg/export-icon.svg +4 -0
- package/src/svg/expression.svg +10 -0
- package/src/svg/free-scroll-icon.svg +5 -0
- package/src/svg/inactive-mouseover.svg +4 -0
- package/src/svg/mega-menu-icons-candlestick.svg +38 -0
- package/src/svg/mega-menu-icons-datagrid.svg +38 -0
- package/src/svg/mega-menu-icons-heatmap.svg +60 -0
- package/src/svg/mega-menu-icons-map-scatter.svg +43 -0
- package/src/svg/mega-menu-icons-ohlc.svg +40 -0
- package/src/svg/mega-menu-icons-sunburst.svg +39 -0
- package/src/svg/mega-menu-icons-treemap.svg +44 -0
- package/src/svg/mega-menu-icons-x-bar.svg +36 -0
- package/src/svg/mega-menu-icons-x-y-line.svg +38 -0
- package/src/svg/mega-menu-icons-x-y-scatter.svg +72 -0
- package/src/svg/mega-menu-icons-y-area.svg +73 -0
- package/src/svg/mega-menu-icons-y-bar.svg +36 -0
- package/src/svg/mega-menu-icons-y-line.svg +36 -0
- package/src/svg/mega-menu-icons-y-scatter.svg +72 -0
- package/src/svg/number-type.svg +4 -0
- package/src/svg/radio-hover.svg +4 -0
- package/src/svg/radio-off.svg +3 -0
- package/src/svg/radio-on.svg +4 -0
- package/src/svg/read-only-icon.svg +6 -0
- package/src/svg/revert-icon.svg +4 -0
- package/src/svg/sort-abs-asc-icon.svg +3 -0
- package/src/svg/sort-abs-col-asc-icon.svg +3 -0
- package/src/svg/sort-abs-col-desc-icon.svg +3 -0
- package/src/svg/sort-abs-desc-icon.svg +3 -0
- package/src/svg/sort-asc-icon.svg +4 -0
- package/src/svg/sort-col-asc-icon.svg +4 -0
- package/src/svg/sort-col-desc-icon.svg +4 -0
- package/src/svg/sort-desc-icon.svg +4 -0
- package/src/svg/sort-none-icon.svg +3 -0
- package/src/svg/status_error.svg +70 -0
- package/src/svg/status_ok.svg +26 -0
- package/src/svg/string-type.svg +8 -0
- package/src/svg/theme-icon.svg +5 -0
- package/src/svg/updating.gif +0 -0
- package/src/themes/dracula.less +101 -0
- package/src/themes/gruvbox-dark.less +116 -0
- package/src/themes/gruvbox.less +152 -0
- package/src/themes/icons.less +130 -0
- package/src/themes/intl/de.less +102 -0
- package/src/themes/intl/es.less +102 -0
- package/src/themes/intl/fr.less +102 -0
- package/src/themes/intl/ja.less +102 -0
- package/src/themes/intl/pt.less +102 -0
- package/src/themes/intl/zh.less +102 -0
- package/src/themes/intl.less +102 -0
- package/src/themes/monokai.less +107 -0
- package/src/themes/pro-dark.less +147 -0
- package/src/themes/pro.less +186 -0
- package/src/themes/solarized-dark.less +78 -0
- package/src/themes/solarized.less +102 -0
- package/src/themes/themes.less +21 -0
- package/src/themes/vaporwave.less +145 -0
- package/src/themes/variables.less +24 -0
- package/src/ts/bootstrap.ts +26 -0
- package/src/ts/extensions.ts +124 -0
- package/src/ts/perspective-viewer.cdn.ts +19 -0
- package/src/ts/perspective-viewer.inline.ts +23 -0
- package/src/ts/perspective-viewer.ts +59 -0
- package/src/ts/plugin.ts +279 -0
- package/src/ts/ts-rs/Aggregate.ts +3 -0
- package/src/ts/ts-rs/ColumnConfigValues.ts +14 -0
- package/src/ts/ts-rs/CustomDatetimeFormat.ts +3 -0
- package/src/ts/ts-rs/CustomDatetimeStyleConfig.ts +5 -0
- package/src/ts/ts-rs/CustomNumberFormatConfig.ts +8 -0
- package/src/ts/ts-rs/DatetimeColorMode.ts +3 -0
- package/src/ts/ts-rs/DatetimeFormatType.ts +8 -0
- package/src/ts/ts-rs/Expressions.ts +3 -0
- package/src/ts/ts-rs/Filter.ts +4 -0
- package/src/ts/ts-rs/FilterReducer.ts +3 -0
- package/src/ts/ts-rs/FilterTerm.ts +4 -0
- package/src/ts/ts-rs/FormatMode.ts +3 -0
- package/src/ts/ts-rs/FormatUnit.ts +3 -0
- package/src/ts/ts-rs/NumberBackgroundMode.ts +3 -0
- package/src/ts/ts-rs/NumberForegroundMode.ts +3 -0
- package/src/ts/ts-rs/OnUpdateData.ts +8 -0
- package/src/ts/ts-rs/OptionalUpdate.ts +3 -0
- package/src/ts/ts-rs/PluginConfig.ts +4 -0
- package/src/ts/ts-rs/RoundingMode.ts +3 -0
- package/src/ts/ts-rs/RoundingPriority.ts +3 -0
- package/src/ts/ts-rs/Scalar.ts +7 -0
- package/src/ts/ts-rs/SignDisplay.ts +3 -0
- package/src/ts/ts-rs/SimpleDatetimeFormat.ts +3 -0
- package/src/ts/ts-rs/SimpleDatetimeStyleConfig.ts +4 -0
- package/src/ts/ts-rs/Sort.ts +4 -0
- package/src/ts/ts-rs/SortDir.ts +3 -0
- package/src/ts/ts-rs/StringColorMode.ts +3 -0
- package/src/ts/ts-rs/TrailingZeroDisplay.ts +3 -0
- package/src/ts/ts-rs/UseGrouping.ts +3 -0
- package/src/ts/ts-rs/ViewOnUpdateResp.ts +3 -0
- package/src/ts/ts-rs/ViewerConfigUpdate.ts +90 -0
- package/src/ts/ts-rs/serde_json/JsonValue.ts +3 -0
- package/tsconfig.json +15 -0
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
// ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
2
|
+
// ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
|
|
3
|
+
// ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
|
|
4
|
+
// ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
|
|
5
|
+
// ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
|
|
6
|
+
// ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
|
|
7
|
+
// ┃ Copyright (c) 2017, the Perspective Authors. ┃
|
|
8
|
+
// ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
|
|
9
|
+
// ┃ This file is part of the Perspective library, distributed under the terms ┃
|
|
10
|
+
// ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
11
|
+
// ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
|
+
|
|
13
|
+
use std::rc::Rc;
|
|
14
|
+
|
|
15
|
+
use presentation::Presentation;
|
|
16
|
+
use yew::prelude::*;
|
|
17
|
+
|
|
18
|
+
use super::containers::dropdown_menu::*;
|
|
19
|
+
use super::modal::{ModalLink, SetModalLink};
|
|
20
|
+
use super::style::StyleProvider;
|
|
21
|
+
use crate::model::*;
|
|
22
|
+
use crate::renderer::*;
|
|
23
|
+
use crate::utils::*;
|
|
24
|
+
use crate::*;
|
|
25
|
+
|
|
26
|
+
pub type ExportDropDownMenuItem = DropDownMenuItem<ExportFile>;
|
|
27
|
+
|
|
28
|
+
#[derive(Properties, PartialEq)]
|
|
29
|
+
pub struct ExportDropDownMenuProps {
|
|
30
|
+
pub renderer: Renderer,
|
|
31
|
+
pub presentation: Presentation,
|
|
32
|
+
pub callback: Callback<ExportFile>,
|
|
33
|
+
pub root: web_sys::HtmlElement,
|
|
34
|
+
|
|
35
|
+
#[prop_or_default]
|
|
36
|
+
weak_link: WeakScope<ExportDropDownMenu>,
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
impl ModalLink<ExportDropDownMenu> for ExportDropDownMenuProps {
|
|
40
|
+
fn weak_link(&self) -> &'_ utils::WeakScope<ExportDropDownMenu> {
|
|
41
|
+
&self.weak_link
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
#[derive(Default)]
|
|
46
|
+
pub struct ExportDropDownMenu {
|
|
47
|
+
title: String,
|
|
48
|
+
_sub: Option<Subscription>,
|
|
49
|
+
input_ref: NodeRef,
|
|
50
|
+
invalid: bool,
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
pub enum ExportDropDownMenuMsg {
|
|
54
|
+
TitleChange,
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
fn get_menu_items(name: &str, is_chart: bool) -> Vec<ExportDropDownMenuItem> {
|
|
58
|
+
vec![
|
|
59
|
+
ExportDropDownMenuItem::OptGroup(
|
|
60
|
+
"Current View".into(),
|
|
61
|
+
if is_chart {
|
|
62
|
+
vec![
|
|
63
|
+
ExportMethod::Csv.new_file(name, is_chart),
|
|
64
|
+
ExportMethod::Json.new_file(name, is_chart),
|
|
65
|
+
ExportMethod::Ndjson.new_file(name, is_chart),
|
|
66
|
+
ExportMethod::Arrow.new_file(name, is_chart),
|
|
67
|
+
ExportMethod::Html.new_file(name, is_chart),
|
|
68
|
+
ExportMethod::Plugin.new_file(name, is_chart),
|
|
69
|
+
]
|
|
70
|
+
} else {
|
|
71
|
+
vec![
|
|
72
|
+
ExportMethod::Csv.new_file(name, is_chart),
|
|
73
|
+
ExportMethod::Json.new_file(name, is_chart),
|
|
74
|
+
ExportMethod::Ndjson.new_file(name, is_chart),
|
|
75
|
+
ExportMethod::Arrow.new_file(name, is_chart),
|
|
76
|
+
ExportMethod::Html.new_file(name, is_chart),
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
),
|
|
80
|
+
ExportDropDownMenuItem::OptGroup("All".into(), vec![
|
|
81
|
+
ExportMethod::CsvAll.new_file(name, is_chart),
|
|
82
|
+
ExportMethod::JsonAll.new_file(name, is_chart),
|
|
83
|
+
ExportMethod::NdjsonAll.new_file(name, is_chart),
|
|
84
|
+
ExportMethod::ArrowAll.new_file(name, is_chart),
|
|
85
|
+
]),
|
|
86
|
+
ExportDropDownMenuItem::OptGroup("Config".into(), vec![
|
|
87
|
+
ExportMethod::JsonConfig.new_file(name, is_chart),
|
|
88
|
+
]),
|
|
89
|
+
]
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
impl Component for ExportDropDownMenu {
|
|
93
|
+
type Message = ExportDropDownMenuMsg;
|
|
94
|
+
type Properties = ExportDropDownMenuProps;
|
|
95
|
+
|
|
96
|
+
fn view(&self, ctx: &Context<Self>) -> yew::virtual_dom::VNode {
|
|
97
|
+
let callback = ctx.link().callback(|_| ExportDropDownMenuMsg::TitleChange);
|
|
98
|
+
let plugin = ctx.props().renderer.get_active_plugin().unwrap();
|
|
99
|
+
// let has_render = js_sys::Reflect::has(&plugin,
|
|
100
|
+
// js_intern::js_intern!("render")).unwrap();
|
|
101
|
+
let is_chart = plugin.name().as_str() != "Datagrid";
|
|
102
|
+
html! {
|
|
103
|
+
<StyleProvider root={ctx.props().root.clone()}>
|
|
104
|
+
<span class="dropdown-group-label">{ "Save as" }</span>
|
|
105
|
+
<input
|
|
106
|
+
class={if self.invalid { "invalid" } else { "" }}
|
|
107
|
+
oninput={callback}
|
|
108
|
+
ref={&self.input_ref}
|
|
109
|
+
value={self.title.to_owned()}
|
|
110
|
+
/>
|
|
111
|
+
<DropDownMenu<ExportFile>
|
|
112
|
+
values={Rc::new(get_menu_items(&self.title, is_chart))}
|
|
113
|
+
callback={&ctx.props().callback}
|
|
114
|
+
/>
|
|
115
|
+
</StyleProvider>
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
fn update(&mut self, _ctx: &Context<Self>, msg: Self::Message) -> bool {
|
|
120
|
+
match msg {
|
|
121
|
+
ExportDropDownMenuMsg::TitleChange => {
|
|
122
|
+
self.title = self
|
|
123
|
+
.input_ref
|
|
124
|
+
.cast::<web_sys::HtmlInputElement>()
|
|
125
|
+
.unwrap()
|
|
126
|
+
.value();
|
|
127
|
+
|
|
128
|
+
self.invalid = self.title.is_empty();
|
|
129
|
+
true
|
|
130
|
+
},
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
fn create(ctx: &Context<Self>) -> Self {
|
|
135
|
+
ctx.set_modal_link();
|
|
136
|
+
let _sub = Some(
|
|
137
|
+
ctx.props()
|
|
138
|
+
.renderer
|
|
139
|
+
.plugin_changed
|
|
140
|
+
.add_listener(ctx.link().callback(|_| ExportDropDownMenuMsg::TitleChange)),
|
|
141
|
+
);
|
|
142
|
+
|
|
143
|
+
Self {
|
|
144
|
+
title: ctx
|
|
145
|
+
.props()
|
|
146
|
+
.presentation
|
|
147
|
+
.get_title()
|
|
148
|
+
.unwrap_or_else(|| "untitled".to_owned()),
|
|
149
|
+
_sub,
|
|
150
|
+
..Default::default()
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
// ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
2
|
+
// ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
|
|
3
|
+
// ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
|
|
4
|
+
// ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
|
|
5
|
+
// ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
|
|
6
|
+
// ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
|
|
7
|
+
// ┃ Copyright (c) 2017, the Perspective Authors. ┃
|
|
8
|
+
// ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
|
|
9
|
+
// ┃ This file is part of the Perspective library, distributed under the terms ┃
|
|
10
|
+
// ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
11
|
+
// ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
|
+
|
|
13
|
+
use std::rc::Rc;
|
|
14
|
+
|
|
15
|
+
use perspective_client::{ExprValidationError, clone};
|
|
16
|
+
use yew::prelude::*;
|
|
17
|
+
|
|
18
|
+
use super::form::code_editor::*;
|
|
19
|
+
use super::style::LocalStyle;
|
|
20
|
+
use crate::session::Session;
|
|
21
|
+
use crate::*;
|
|
22
|
+
|
|
23
|
+
#[derive(Debug)]
|
|
24
|
+
pub enum ExpressionEditorMsg {
|
|
25
|
+
SetExpr(Rc<String>),
|
|
26
|
+
ValidateComplete(Option<ExprValidationError>),
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
#[derive(Properties, PartialEq, Clone)]
|
|
30
|
+
pub struct ExpressionEditorProps {
|
|
31
|
+
pub session: Session,
|
|
32
|
+
pub on_save: Callback<()>,
|
|
33
|
+
pub on_validate: Callback<bool>,
|
|
34
|
+
pub on_input: Callback<Rc<String>>,
|
|
35
|
+
pub alias: Option<String>,
|
|
36
|
+
pub disabled: bool,
|
|
37
|
+
#[prop_or_default]
|
|
38
|
+
pub reset_count: u8,
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
impl ExpressionEditorProps {
|
|
42
|
+
fn initial_expr(&self) -> Rc<String> {
|
|
43
|
+
self.alias
|
|
44
|
+
.as_ref()
|
|
45
|
+
.and_then(|alias| self.session.metadata().get_expression_by_alias(alias))
|
|
46
|
+
.unwrap_or_default()
|
|
47
|
+
.into()
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/// Expression editor component `CodeEditor` and a button toolbar.
|
|
52
|
+
pub struct ExpressionEditor {
|
|
53
|
+
expr: Rc<String>,
|
|
54
|
+
error: Option<ExprValidationError>,
|
|
55
|
+
oninput: Callback<Rc<String>>,
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
impl Component for ExpressionEditor {
|
|
59
|
+
type Message = ExpressionEditorMsg;
|
|
60
|
+
type Properties = ExpressionEditorProps;
|
|
61
|
+
|
|
62
|
+
fn create(ctx: &Context<Self>) -> Self {
|
|
63
|
+
let oninput = ctx.link().callback(ExpressionEditorMsg::SetExpr);
|
|
64
|
+
let expr = ctx.props().initial_expr();
|
|
65
|
+
ctx.link()
|
|
66
|
+
.send_message(Self::Message::SetExpr(expr.clone()));
|
|
67
|
+
|
|
68
|
+
Self {
|
|
69
|
+
error: None,
|
|
70
|
+
expr,
|
|
71
|
+
oninput,
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
fn update(&mut self, ctx: &Context<Self>, msg: Self::Message) -> bool {
|
|
76
|
+
match msg {
|
|
77
|
+
ExpressionEditorMsg::SetExpr(val) => {
|
|
78
|
+
ctx.props().on_input.emit(val.clone());
|
|
79
|
+
self.expr = val.clone();
|
|
80
|
+
clone!(ctx.props().session);
|
|
81
|
+
ctx.link().send_future(async move {
|
|
82
|
+
match session.validate_expr(&val).await {
|
|
83
|
+
Ok(x) => ExpressionEditorMsg::ValidateComplete(x),
|
|
84
|
+
Err(err) => {
|
|
85
|
+
web_sys::console::error_1(&format!("{err:?}").into());
|
|
86
|
+
ExpressionEditorMsg::ValidateComplete(None)
|
|
87
|
+
},
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
true
|
|
92
|
+
},
|
|
93
|
+
ExpressionEditorMsg::ValidateComplete(err) => {
|
|
94
|
+
self.error = err;
|
|
95
|
+
if self.error.is_none() {
|
|
96
|
+
maybe!({
|
|
97
|
+
let alias = ctx.props().alias.as_ref()?;
|
|
98
|
+
let session = &ctx.props().session;
|
|
99
|
+
let old = session.metadata().get_expression_by_alias(alias)?;
|
|
100
|
+
let is_edited = *self.expr != old;
|
|
101
|
+
session
|
|
102
|
+
.metadata_mut()
|
|
103
|
+
.set_edit_by_alias(alias, self.expr.to_string());
|
|
104
|
+
Some(is_edited)
|
|
105
|
+
});
|
|
106
|
+
|
|
107
|
+
ctx.props().on_validate.emit(true);
|
|
108
|
+
} else {
|
|
109
|
+
ctx.props().on_validate.emit(false);
|
|
110
|
+
}
|
|
111
|
+
true
|
|
112
|
+
},
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
fn view(&self, ctx: &Context<Self>) -> Html {
|
|
117
|
+
let disabled_class = ctx.props().disabled.then_some("disabled");
|
|
118
|
+
clone!(ctx.props().disabled);
|
|
119
|
+
html! {
|
|
120
|
+
<>
|
|
121
|
+
<LocalStyle href={css!("expression-editor")} />
|
|
122
|
+
<label class="item_title">{ "Expression" }</label>
|
|
123
|
+
<div id="editor-container" class={disabled_class}>
|
|
124
|
+
<CodeEditor
|
|
125
|
+
autofocus=true
|
|
126
|
+
expr={&self.expr}
|
|
127
|
+
autosuggest=true
|
|
128
|
+
error={self.error.clone().map(|x| x.into())}
|
|
129
|
+
{disabled}
|
|
130
|
+
oninput={self.oninput.clone()}
|
|
131
|
+
onsave={ctx.props().on_save.clone()}
|
|
132
|
+
/>
|
|
133
|
+
<div id="psp-expression-editor-meta">
|
|
134
|
+
<div class="error">
|
|
135
|
+
{ &self.error.clone().map(|e| e.error_message).unwrap_or_default() }
|
|
136
|
+
</div>
|
|
137
|
+
</div>
|
|
138
|
+
</div>
|
|
139
|
+
</>
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
fn changed(&mut self, ctx: &Context<Self>, old_props: &Self::Properties) -> bool {
|
|
144
|
+
if ctx.props().alias != old_props.alias || ctx.props().reset_count != old_props.reset_count
|
|
145
|
+
{
|
|
146
|
+
ctx.link()
|
|
147
|
+
.send_message(ExpressionEditorMsg::SetExpr(ctx.props().initial_expr()));
|
|
148
|
+
false
|
|
149
|
+
} else {
|
|
150
|
+
true
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
// ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
2
|
+
// ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
|
|
3
|
+
// ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
|
|
4
|
+
// ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
|
|
5
|
+
// ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
|
|
6
|
+
// ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
|
|
7
|
+
// ┃ Copyright (c) 2017, the Perspective Authors. ┃
|
|
8
|
+
// ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
|
|
9
|
+
// ┃ This file is part of the Perspective library, distributed under the terms ┃
|
|
10
|
+
// ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
11
|
+
// ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
|
+
|
|
13
|
+
use web_sys::*;
|
|
14
|
+
use yew::prelude::*;
|
|
15
|
+
|
|
16
|
+
use super::modal::*;
|
|
17
|
+
use crate::utils::WeakScope;
|
|
18
|
+
|
|
19
|
+
static CSS: &str = include_str!(concat!(env!("OUT_DIR"), "/css/filter-dropdown.css"));
|
|
20
|
+
|
|
21
|
+
pub enum FilterDropDownMsg {
|
|
22
|
+
SetValues(Vec<String>),
|
|
23
|
+
SetCallback(Callback<String>),
|
|
24
|
+
ItemDown,
|
|
25
|
+
ItemUp,
|
|
26
|
+
ItemSelect,
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
pub struct FilterDropDown {
|
|
30
|
+
values: Option<Vec<String>>,
|
|
31
|
+
selected: usize,
|
|
32
|
+
on_select: Option<Callback<String>>,
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
#[derive(Properties, PartialEq)]
|
|
36
|
+
pub struct FilterDropDownProps {
|
|
37
|
+
#[prop_or_default]
|
|
38
|
+
pub weak_link: WeakScope<FilterDropDown>,
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
impl ModalLink<FilterDropDown> for FilterDropDownProps {
|
|
42
|
+
fn weak_link(&self) -> &'_ WeakScope<FilterDropDown> {
|
|
43
|
+
&self.weak_link
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
impl Component for FilterDropDown {
|
|
48
|
+
type Message = FilterDropDownMsg;
|
|
49
|
+
type Properties = FilterDropDownProps;
|
|
50
|
+
|
|
51
|
+
fn create(ctx: &Context<Self>) -> Self {
|
|
52
|
+
ctx.set_modal_link();
|
|
53
|
+
Self {
|
|
54
|
+
values: Some(vec![]),
|
|
55
|
+
selected: 0,
|
|
56
|
+
on_select: None,
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
fn update(&mut self, _ctx: &Context<Self>, msg: Self::Message) -> bool {
|
|
61
|
+
match msg {
|
|
62
|
+
FilterDropDownMsg::SetCallback(callback) => {
|
|
63
|
+
self.on_select = Some(callback);
|
|
64
|
+
false
|
|
65
|
+
},
|
|
66
|
+
FilterDropDownMsg::SetValues(values) => {
|
|
67
|
+
self.values = Some(values);
|
|
68
|
+
self.selected = 0;
|
|
69
|
+
true
|
|
70
|
+
},
|
|
71
|
+
FilterDropDownMsg::ItemSelect => {
|
|
72
|
+
if let Some(ref values) = self.values {
|
|
73
|
+
match values.get(self.selected) {
|
|
74
|
+
None => {
|
|
75
|
+
console::error_1(&"Selected out-of-bounds".into());
|
|
76
|
+
false
|
|
77
|
+
},
|
|
78
|
+
Some(x) => {
|
|
79
|
+
self.on_select.as_ref().unwrap().emit(x.clone());
|
|
80
|
+
false
|
|
81
|
+
},
|
|
82
|
+
}
|
|
83
|
+
} else {
|
|
84
|
+
console::error_1(&"No Values".into());
|
|
85
|
+
false
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
FilterDropDownMsg::ItemDown => {
|
|
89
|
+
self.selected += 1;
|
|
90
|
+
if let Some(ref values) = self.values
|
|
91
|
+
&& self.selected >= values.len()
|
|
92
|
+
{
|
|
93
|
+
self.selected = 0;
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
true
|
|
97
|
+
},
|
|
98
|
+
FilterDropDownMsg::ItemUp => {
|
|
99
|
+
if let Some(ref values) = self.values
|
|
100
|
+
&& self.selected < 1
|
|
101
|
+
{
|
|
102
|
+
self.selected = values.len();
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
self.selected -= 1;
|
|
106
|
+
true
|
|
107
|
+
},
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
fn changed(&mut self, _ctx: &Context<Self>, _old: &Self::Properties) -> bool {
|
|
112
|
+
false
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
fn view(&self, _ctx: &Context<Self>) -> Html {
|
|
116
|
+
let body = html! {
|
|
117
|
+
if let Some(ref values) = self.values {
|
|
118
|
+
if !values.is_empty() {
|
|
119
|
+
{ for values
|
|
120
|
+
.iter()
|
|
121
|
+
.enumerate()
|
|
122
|
+
.map(|(idx, value)| {
|
|
123
|
+
let click = self.on_select.as_ref().unwrap().reform({
|
|
124
|
+
let value = value.clone();
|
|
125
|
+
move |_: MouseEvent| value.clone()
|
|
126
|
+
});
|
|
127
|
+
|
|
128
|
+
html! {
|
|
129
|
+
if idx == self.selected {
|
|
130
|
+
<span onmousedown={ click } class="selected">{ value }</span>
|
|
131
|
+
} else {
|
|
132
|
+
<span onmousedown={ click }>{ value }</span>
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}) }
|
|
136
|
+
} else {
|
|
137
|
+
<span class="no-results">{ "No Completions" }</span>
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
html! { <><style>{ &CSS }</style>{ body }</> }
|
|
143
|
+
}
|
|
144
|
+
}
|