@genome-spy/core 0.70.0 → 0.72.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/dist/bundle/index.es.js +3923 -3598
- package/dist/bundle/index.js +150 -143
- package/dist/bundle/parquetRead-BnAGCa4_.js +1663 -0
- package/dist/schema.json +0 -48
- package/dist/src/data/formats/parquet.d.ts +12 -0
- package/dist/src/data/formats/parquet.d.ts.map +1 -0
- package/dist/src/data/formats/parquet.js +29 -0
- package/dist/src/data/formats/parquetRead.d.ts +18 -0
- package/dist/src/data/formats/parquetRead.d.ts.map +1 -0
- package/dist/src/data/formats/parquetRead.js +326 -0
- package/dist/src/data/sources/urlSource.d.ts.map +1 -1
- package/dist/src/data/sources/urlSource.js +8 -3
- package/dist/src/encoder/encoder.d.ts +2 -2
- package/dist/src/fonts/bmFontManager.d.ts +1 -1
- package/dist/src/genome/genome.d.ts +1 -1
- package/dist/src/genomeSpy/containerUi.d.ts.map +1 -1
- package/dist/src/genomeSpy/containerUi.js +0 -1
- package/dist/src/genomeSpy/viewHighlight.js +2 -2
- package/dist/src/genomeSpy.d.ts +3 -3
- package/dist/src/genomeSpy.d.ts.map +1 -1
- package/dist/src/genomeSpy.js +29 -3
- package/dist/src/gl/hashTable.d.ts +78 -0
- package/dist/src/gl/hashTable.d.ts.map +1 -0
- package/dist/src/gl/hashTable.js +164 -0
- package/dist/src/gl/includes/common.glsl.js +1 -1
- package/dist/src/gl/webGLHelper.d.ts.map +1 -1
- package/dist/src/gl/webGLHelper.js +12 -6
- package/dist/src/marks/mark.d.ts +2 -2
- package/dist/src/marks/mark.d.ts.map +1 -1
- package/dist/src/marks/mark.js +2 -3
- package/dist/src/spec/view.d.ts +0 -10
- package/dist/src/utils/keyboardZoomMotion.d.ts +93 -0
- package/dist/src/utils/keyboardZoomMotion.d.ts.map +1 -0
- package/dist/src/utils/keyboardZoomMotion.js +285 -0
- package/dist/src/utils/radixSort.d.ts.map +1 -1
- package/dist/src/utils/radixSort.js +26 -1
- package/dist/src/view/axisGridView.d.ts +1 -1
- package/dist/src/view/axisGridView.js +0 -1
- package/dist/src/view/axisView.d.ts +1 -1
- package/dist/src/view/concatView.d.ts +6 -3
- package/dist/src/view/concatView.d.ts.map +1 -1
- package/dist/src/view/concatView.js +9 -2
- package/dist/src/view/containerMutationHelper.d.ts +6 -6
- package/dist/src/view/containerMutationHelper.d.ts.map +1 -1
- package/dist/src/view/containerView.d.ts +7 -5
- package/dist/src/view/containerView.d.ts.map +1 -1
- package/dist/src/view/containerView.js +4 -1
- package/dist/src/view/facetView.d.ts +2 -2
- package/dist/src/view/flowBuilder.d.ts +1 -1
- package/dist/src/view/flowBuilder.d.ts.map +1 -1
- package/dist/src/view/gridView/gridChild.d.ts +3 -3
- package/dist/src/view/gridView/gridChild.d.ts.map +1 -1
- package/dist/src/view/gridView/gridChild.js +0 -2
- package/dist/src/view/gridView/gridView.d.ts +13 -11
- package/dist/src/view/gridView/gridView.d.ts.map +1 -1
- package/dist/src/view/gridView/gridView.js +17 -26
- package/dist/src/view/gridView/keyboardZoomController.d.ts +21 -0
- package/dist/src/view/gridView/keyboardZoomController.d.ts.map +1 -0
- package/dist/src/view/gridView/keyboardZoomController.js +202 -0
- package/dist/src/view/gridView/scrollbar.d.ts +1 -1
- package/dist/src/view/gridView/scrollbar.d.ts.map +1 -1
- package/dist/src/view/gridView/scrollbar.js +0 -1
- package/dist/src/view/gridView/selectionRect.d.ts +1 -1
- package/dist/src/view/gridView/selectionRect.d.ts.map +1 -1
- package/dist/src/view/gridView/selectionRect.js +0 -1
- package/dist/src/view/gridView/separatorView.js +0 -1
- package/dist/src/view/gridView/zoomNavigationUtils.d.ts +19 -0
- package/dist/src/view/gridView/zoomNavigationUtils.d.ts.map +1 -0
- package/dist/src/view/gridView/zoomNavigationUtils.js +51 -0
- package/dist/src/view/layerView.d.ts +8 -5
- package/dist/src/view/layerView.d.ts.map +1 -1
- package/dist/src/view/layerView.js +6 -2
- package/dist/src/view/title.d.ts.map +1 -1
- package/dist/src/view/title.js +0 -1
- package/dist/src/view/unitView.d.ts +8 -5
- package/dist/src/view/unitView.d.ts.map +1 -1
- package/dist/src/view/unitView.js +5 -1
- package/dist/src/view/view.d.ts +13 -9
- package/dist/src/view/view.d.ts.map +1 -1
- package/dist/src/view/view.js +7 -1
- package/dist/src/view/viewError.d.ts +1 -1
- package/dist/src/view/viewError.d.ts.map +1 -1
- package/dist/src/view/viewFactory.d.ts +3 -44
- package/dist/src/view/viewFactory.d.ts.map +1 -1
- package/dist/src/view/viewFactory.js +28 -69
- package/dist/src/view/viewSelectors.d.ts.map +1 -1
- package/dist/src/view/viewSelectors.js +123 -160
- package/dist/src/view/viewSpecGuards.d.ts +43 -0
- package/dist/src/view/viewSpecGuards.d.ts.map +1 -0
- package/dist/src/view/viewSpecGuards.js +69 -0
- package/dist/src/view/viewUtils.d.ts +1 -1
- package/dist/src/view/viewUtils.d.ts.map +1 -1
- package/dist/src/view/zoom.d.ts +1 -0
- package/dist/src/view/zoom.d.ts.map +1 -1
- package/dist/src/view/zoom.js +5 -1
- package/package.json +4 -3
- package/dist/src/data/collector.test.d.ts +0 -2
- package/dist/src/data/collector.test.d.ts.map +0 -1
- package/dist/src/data/dataFlow.test.d.ts +0 -2
- package/dist/src/data/dataFlow.test.d.ts.map +0 -1
- package/dist/src/data/flow.test.d.ts +0 -2
- package/dist/src/data/flow.test.d.ts.map +0 -1
- package/dist/src/data/flowInit.test.d.ts +0 -2
- package/dist/src/data/flowInit.test.d.ts.map +0 -1
- package/dist/src/data/flowNode.test.d.ts +0 -2
- package/dist/src/data/flowNode.test.d.ts.map +0 -1
- package/dist/src/data/flowOptimizer.test.d.ts +0 -2
- package/dist/src/data/flowOptimizer.test.d.ts.map +0 -1
- package/dist/src/data/formats/fasta.test.d.ts +0 -2
- package/dist/src/data/formats/fasta.test.d.ts.map +0 -1
- package/dist/src/data/keyIndex.test.d.ts +0 -2
- package/dist/src/data/keyIndex.test.d.ts.map +0 -1
- package/dist/src/data/sources/inlineSource.test.d.ts +0 -2
- package/dist/src/data/sources/inlineSource.test.d.ts.map +0 -1
- package/dist/src/data/sources/sequenceSource.test.d.ts +0 -2
- package/dist/src/data/sources/sequenceSource.test.d.ts.map +0 -1
- package/dist/src/data/transforms/aggregate.test.d.ts +0 -2
- package/dist/src/data/transforms/aggregate.test.d.ts.map +0 -1
- package/dist/src/data/transforms/clone.test.d.ts +0 -2
- package/dist/src/data/transforms/clone.test.d.ts.map +0 -1
- package/dist/src/data/transforms/coverage.test.d.ts +0 -2
- package/dist/src/data/transforms/coverage.test.d.ts.map +0 -1
- package/dist/src/data/transforms/filter.test.d.ts +0 -2
- package/dist/src/data/transforms/filter.test.d.ts.map +0 -1
- package/dist/src/data/transforms/filterScoredLabels.test.d.ts +0 -2
- package/dist/src/data/transforms/filterScoredLabels.test.d.ts.map +0 -1
- package/dist/src/data/transforms/flatten.test.d.ts +0 -2
- package/dist/src/data/transforms/flatten.test.d.ts.map +0 -1
- package/dist/src/data/transforms/flattenDelimited.test.d.ts +0 -2
- package/dist/src/data/transforms/flattenDelimited.test.d.ts.map +0 -1
- package/dist/src/data/transforms/flattenSequence.test.d.ts +0 -2
- package/dist/src/data/transforms/flattenSequence.test.d.ts.map +0 -1
- package/dist/src/data/transforms/formula.test.d.ts +0 -2
- package/dist/src/data/transforms/formula.test.d.ts.map +0 -1
- package/dist/src/data/transforms/identifier.test.d.ts +0 -2
- package/dist/src/data/transforms/identifier.test.d.ts.map +0 -1
- package/dist/src/data/transforms/pileup.test.d.ts +0 -2
- package/dist/src/data/transforms/pileup.test.d.ts.map +0 -1
- package/dist/src/data/transforms/project.test.d.ts +0 -2
- package/dist/src/data/transforms/project.test.d.ts.map +0 -1
- package/dist/src/data/transforms/regexExtract.test.d.ts +0 -2
- package/dist/src/data/transforms/regexExtract.test.d.ts.map +0 -1
- package/dist/src/data/transforms/regexFold.test.d.ts +0 -2
- package/dist/src/data/transforms/regexFold.test.d.ts.map +0 -1
- package/dist/src/data/transforms/sample.test.d.ts +0 -2
- package/dist/src/data/transforms/sample.test.d.ts.map +0 -1
- package/dist/src/data/transforms/stack.test.d.ts +0 -2
- package/dist/src/data/transforms/stack.test.d.ts.map +0 -1
- package/dist/src/encoder/accessor.test.d.ts +0 -2
- package/dist/src/encoder/accessor.test.d.ts.map +0 -1
- package/dist/src/encoder/encoder.test.d.ts +0 -2
- package/dist/src/encoder/encoder.test.d.ts.map +0 -1
- package/dist/src/encoder/metadataChannels.test.d.ts +0 -2
- package/dist/src/encoder/metadataChannels.test.d.ts.map +0 -1
- package/dist/src/genome/genome.test.d.ts +0 -2
- package/dist/src/genome/genome.test.d.ts.map +0 -1
- package/dist/src/genome/genomes.test.d.ts +0 -2
- package/dist/src/genome/genomes.test.d.ts.map +0 -1
- package/dist/src/genome/scaleIndex.test.d.ts +0 -2
- package/dist/src/genome/scaleIndex.test.d.ts.map +0 -1
- package/dist/src/genome/scaleLocus.test.d.ts +0 -2
- package/dist/src/genome/scaleLocus.test.d.ts.map +0 -1
- package/dist/src/genomeSpy/viewDataInit.test.d.ts +0 -2
- package/dist/src/genomeSpy/viewDataInit.test.d.ts.map +0 -1
- package/dist/src/gl/colorUtils.test.d.ts +0 -2
- package/dist/src/gl/colorUtils.test.d.ts.map +0 -1
- package/dist/src/paramRuntime/expressionRef.test.d.ts +0 -2
- package/dist/src/paramRuntime/expressionRef.test.d.ts.map +0 -1
- package/dist/src/paramRuntime/graphRuntime.test.d.ts +0 -2
- package/dist/src/paramRuntime/graphRuntime.test.d.ts.map +0 -1
- package/dist/src/paramRuntime/paramRuntime.test.d.ts +0 -2
- package/dist/src/paramRuntime/paramRuntime.test.d.ts.map +0 -1
- package/dist/src/paramRuntime/paramStore.test.d.ts +0 -2
- package/dist/src/paramRuntime/paramStore.test.d.ts.map +0 -1
- package/dist/src/scale/scale.test.d.ts +0 -2
- package/dist/src/scale/scale.test.d.ts.map +0 -1
- package/dist/src/scale/ticks.test.d.ts +0 -2
- package/dist/src/scale/ticks.test.d.ts.map +0 -1
- package/dist/src/scales/axisResolution.test.d.ts +0 -2
- package/dist/src/scales/axisResolution.test.d.ts.map +0 -1
- package/dist/src/scales/domainPlanner.test.d.ts +0 -2
- package/dist/src/scales/domainPlanner.test.d.ts.map +0 -1
- package/dist/src/scales/scaleInstanceManager.test.d.ts +0 -2
- package/dist/src/scales/scaleInstanceManager.test.d.ts.map +0 -1
- package/dist/src/scales/scaleInteractionController.test.d.ts +0 -2
- package/dist/src/scales/scaleInteractionController.test.d.ts.map +0 -1
- package/dist/src/scales/scaleResolution.test.d.ts +0 -2
- package/dist/src/scales/scaleResolution.test.d.ts.map +0 -1
- package/dist/src/scales/scaleRules.test.d.ts +0 -2
- package/dist/src/scales/scaleRules.test.d.ts.map +0 -1
- package/dist/src/selection/selection.test.d.ts +0 -2
- package/dist/src/selection/selection.test.d.ts.map +0 -1
- package/dist/src/tooltip/dataTooltipHandler.test.d.ts +0 -2
- package/dist/src/tooltip/dataTooltipHandler.test.d.ts.map +0 -1
- package/dist/src/tooltip/flattenDatumRows.test.d.ts +0 -2
- package/dist/src/tooltip/flattenDatumRows.test.d.ts.map +0 -1
- package/dist/src/tooltip/tooltipContext.test.d.ts +0 -2
- package/dist/src/tooltip/tooltipContext.test.d.ts.map +0 -1
- package/dist/src/utils/addBaseUrl.test.d.ts +0 -2
- package/dist/src/utils/addBaseUrl.test.d.ts.map +0 -1
- package/dist/src/utils/binnedIndex.test.d.ts +0 -2
- package/dist/src/utils/binnedIndex.test.d.ts.map +0 -1
- package/dist/src/utils/cloner.test.d.ts +0 -2
- package/dist/src/utils/cloner.test.d.ts.map +0 -1
- package/dist/src/utils/coalesce.test.d.ts +0 -2
- package/dist/src/utils/coalesce.test.d.ts.map +0 -1
- package/dist/src/utils/concatIterables.test.d.ts +0 -2
- package/dist/src/utils/concatIterables.test.d.ts.map +0 -1
- package/dist/src/utils/deepEqual.test.d.ts +0 -2
- package/dist/src/utils/deepEqual.test.d.ts.map +0 -1
- package/dist/src/utils/domainArray.test.d.ts +0 -2
- package/dist/src/utils/domainArray.test.d.ts.map +0 -1
- package/dist/src/utils/fetchUtils.test.d.ts +0 -2
- package/dist/src/utils/fetchUtils.test.d.ts.map +0 -1
- package/dist/src/utils/indexer.test.d.ts +0 -2
- package/dist/src/utils/indexer.test.d.ts.map +0 -1
- package/dist/src/utils/interactionEvent.test.d.ts +0 -2
- package/dist/src/utils/interactionEvent.test.d.ts.map +0 -1
- package/dist/src/utils/iterateNestedMaps.test.d.ts +0 -2
- package/dist/src/utils/iterateNestedMaps.test.d.ts.map +0 -1
- package/dist/src/utils/kWayMerge.test.d.ts +0 -2
- package/dist/src/utils/kWayMerge.test.d.ts.map +0 -1
- package/dist/src/utils/mergeObjects.test.d.ts +0 -2
- package/dist/src/utils/mergeObjects.test.d.ts.map +0 -1
- package/dist/src/utils/numberExtractor.test.d.ts +0 -2
- package/dist/src/utils/numberExtractor.test.d.ts.map +0 -1
- package/dist/src/utils/propertyCacher.test.d.ts +0 -2
- package/dist/src/utils/propertyCacher.test.d.ts.map +0 -1
- package/dist/src/utils/propertyCoalescer.test.d.ts +0 -2
- package/dist/src/utils/propertyCoalescer.test.d.ts.map +0 -1
- package/dist/src/utils/radixSort.test.d.ts +0 -2
- package/dist/src/utils/radixSort.test.d.ts.map +0 -1
- package/dist/src/utils/reservationMap.test.d.ts +0 -2
- package/dist/src/utils/reservationMap.test.d.ts.map +0 -1
- package/dist/src/utils/ringBuffer.test.d.ts +0 -2
- package/dist/src/utils/ringBuffer.test.d.ts.map +0 -1
- package/dist/src/utils/throttle.test.d.ts +0 -2
- package/dist/src/utils/throttle.test.d.ts.map +0 -1
- package/dist/src/utils/topK.test.d.ts +0 -2
- package/dist/src/utils/topK.test.d.ts.map +0 -1
- package/dist/src/utils/trees.test.d.ts +0 -2
- package/dist/src/utils/trees.test.d.ts.map +0 -1
- package/dist/src/utils/ui/tooltip.test.d.ts +0 -2
- package/dist/src/utils/ui/tooltip.test.d.ts.map +0 -1
- package/dist/src/utils/url.test.d.ts +0 -2
- package/dist/src/utils/url.test.d.ts.map +0 -1
- package/dist/src/utils/variableTools.test.d.ts +0 -2
- package/dist/src/utils/variableTools.test.d.ts.map +0 -1
- package/dist/src/view/concatView.test.d.ts +0 -2
- package/dist/src/view/concatView.test.d.ts.map +0 -1
- package/dist/src/view/dataReadiness.test.d.ts +0 -2
- package/dist/src/view/dataReadiness.test.d.ts.map +0 -1
- package/dist/src/view/flowBuilder.test.d.ts +0 -2
- package/dist/src/view/flowBuilder.test.d.ts.map +0 -1
- package/dist/src/view/gridView/gridView.test.d.ts +0 -2
- package/dist/src/view/gridView/gridView.test.d.ts.map +0 -1
- package/dist/src/view/gridView/selectionRect.test.d.ts +0 -2
- package/dist/src/view/gridView/selectionRect.test.d.ts.map +0 -1
- package/dist/src/view/layerView.test.d.ts +0 -2
- package/dist/src/view/layerView.test.d.ts.map +0 -1
- package/dist/src/view/layout/flexLayout.test.d.ts +0 -2
- package/dist/src/view/layout/flexLayout.test.d.ts.map +0 -1
- package/dist/src/view/layout/grid.test.d.ts +0 -2
- package/dist/src/view/layout/grid.test.d.ts.map +0 -1
- package/dist/src/view/layout/rectangle.test.d.ts +0 -2
- package/dist/src/view/layout/rectangle.test.d.ts.map +0 -1
- package/dist/src/view/multiscale.test.d.ts +0 -2
- package/dist/src/view/multiscale.test.d.ts.map +0 -1
- package/dist/src/view/view.test.d.ts +0 -2
- package/dist/src/view/view.test.d.ts.map +0 -1
- package/dist/src/view/viewDispose.test.d.ts +0 -2
- package/dist/src/view/viewDispose.test.d.ts.map +0 -1
- package/dist/src/view/viewFactory.test.d.ts +0 -2
- package/dist/src/view/viewFactory.test.d.ts.map +0 -1
- package/dist/src/view/viewParamRuntime.test.d.ts +0 -2
- package/dist/src/view/viewParamRuntime.test.d.ts.map +0 -1
- package/dist/src/view/viewSelectors.test.d.ts +0 -2
- package/dist/src/view/viewSelectors.test.d.ts.map +0 -1
- package/dist/src/view/viewUtils.test.d.ts +0 -2
- package/dist/src/view/viewUtils.test.d.ts.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @param {View} view
|
|
3
3
|
*/
|
|
4
|
-
export function isClippedChildren(view: import("../view.js").default): boolean;
|
|
4
|
+
export function isClippedChildren(view: import("../view.js").default<import("../../spec/view.js").ViewSpec>): boolean;
|
|
5
5
|
/**
|
|
6
6
|
*
|
|
7
7
|
* @param {import("../layout/rectangle.js").default} coords
|
|
@@ -24,11 +24,14 @@ export function translateAxisCoords(coords: import("../layout/rectangle.js").def
|
|
|
24
24
|
* - Zoom / pan
|
|
25
25
|
* - Scrollable viewports (with scrollbars)
|
|
26
26
|
* - And later on, brushing, legend(?)
|
|
27
|
+
*
|
|
28
|
+
* @template {import("../../spec/view.js").AnyConcatSpec} [TSpec=import("../../spec/view.js").AnyConcatSpec]
|
|
29
|
+
* @extends {ContainerView<TSpec>}
|
|
27
30
|
*/
|
|
28
|
-
export default class GridView extends ContainerView {
|
|
31
|
+
export default class GridView<TSpec extends import("../../spec/view.js").AnyConcatSpec = import("../../spec/view.js").AnyConcatSpec> extends ContainerView<TSpec> {
|
|
29
32
|
/**
|
|
30
33
|
*
|
|
31
|
-
* @param {
|
|
34
|
+
* @param {TSpec} spec
|
|
32
35
|
* @param {import("../../types/viewContext.js").default} context
|
|
33
36
|
* @param {ContainerView} layoutParent
|
|
34
37
|
* @param {View} dataParent
|
|
@@ -36,13 +39,12 @@ export default class GridView extends ContainerView {
|
|
|
36
39
|
* @param {number} columns
|
|
37
40
|
* @param {import("../view.js").ViewOptions} [options]
|
|
38
41
|
*/
|
|
39
|
-
constructor(spec:
|
|
40
|
-
spec: import("../../spec/view.js").AnyConcatSpec;
|
|
42
|
+
constructor(spec: TSpec, context: import("../../types/viewContext.js").default, layoutParent: ContainerView, dataParent: import("../view.js").default<import("../../spec/view.js").ViewSpec>, name: string, columns: number, options?: import("../view.js").ViewOptions);
|
|
41
43
|
wrappingFacet: boolean;
|
|
42
44
|
/**
|
|
43
45
|
* @param {View} view
|
|
44
46
|
*/
|
|
45
|
-
appendChild(view: import("../view.js").default): void;
|
|
47
|
+
appendChild(view: import("../view.js").default<import("../../spec/view.js").ViewSpec>): void;
|
|
46
48
|
/**
|
|
47
49
|
* Appends a child view without initializing dataflow or axes.
|
|
48
50
|
* Intended for ConcatView when building the initial hierarchy.
|
|
@@ -50,7 +52,7 @@ export default class GridView extends ContainerView {
|
|
|
50
52
|
* @param {View} view
|
|
51
53
|
* @returns {GridChild}
|
|
52
54
|
*/
|
|
53
|
-
appendChildView(view: import("../view.js").default): GridChild;
|
|
55
|
+
appendChildView(view: import("../view.js").default<import("../../spec/view.js").ViewSpec>): GridChild;
|
|
54
56
|
/**
|
|
55
57
|
* Inserts a child view without initializing dataflow or axes.
|
|
56
58
|
* Callers should create axes, initialize subtree data, and request layout.
|
|
@@ -59,14 +61,14 @@ export default class GridView extends ContainerView {
|
|
|
59
61
|
* @param {number} index
|
|
60
62
|
* @returns {GridChild}
|
|
61
63
|
*/
|
|
62
|
-
insertChildViewAt(view: import("../view.js").default
|
|
64
|
+
insertChildViewAt(view: import("../view.js").default<import("../../spec/view.js").ViewSpec>, index: number): GridChild;
|
|
63
65
|
/**
|
|
64
66
|
* Removes a child by instance and disposes its subtree.
|
|
65
67
|
* Callers should sync shared axes and request layout.
|
|
66
68
|
*
|
|
67
69
|
* @param {View} view
|
|
68
70
|
*/
|
|
69
|
-
removeChildView(view: import("../view.js").default): void;
|
|
71
|
+
removeChildView(view: import("../view.js").default<import("../../spec/view.js").ViewSpec>): void;
|
|
70
72
|
/**
|
|
71
73
|
* Removes a child by index and disposes its subtree.
|
|
72
74
|
* Callers should sync shared axes and request layout.
|
|
@@ -77,11 +79,11 @@ export default class GridView extends ContainerView {
|
|
|
77
79
|
/**
|
|
78
80
|
* @param {View[]} views
|
|
79
81
|
*/
|
|
80
|
-
setChildren(views: import("../view.js").default[]): void;
|
|
82
|
+
setChildren(views: import("../view.js").default<import("../../spec/view.js").ViewSpec>[]): void;
|
|
81
83
|
/**
|
|
82
84
|
* Read-only view to children
|
|
83
85
|
*/
|
|
84
|
-
get children(): import("../view.js").default[];
|
|
86
|
+
get children(): import("../view.js").default<import("../../spec/view.js").ViewSpec>[];
|
|
85
87
|
get childCount(): number;
|
|
86
88
|
/**
|
|
87
89
|
* @protected
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gridView.d.ts","sourceRoot":"","sources":["../../../../src/view/gridView/gridView.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"gridView.d.ts","sourceRoot":"","sources":["../../../../src/view/gridView/gridView.js"],"names":[],"mappings":"AAu8BA;;GAEG;AACH,sHAUC;AAmBD;;;;;GAKG;AACH,4CAJW,OAAO,wBAAwB,EAAE,OAAO,UACxC,OAAO,oBAAoB,EAAE,UAAU,YACvC,QAAQ,aAmBlB;AAx+BD;;;;;;;;;;;;;;;;;;GAkBG;AACH,8BAH2D,KAAK,SAAnD,OAAQ,oBAAoB,EAAE,aAAc;IA6CrD;;;;;;;;;OASG;IACH,kBARW,KAAK,WACL,OAAO,4BAA4B,EAAE,OAAO,gBAC5C,aAAa,yFAEb,MAAM,WACN,MAAM,YACN,OAAO,YAAY,EAAE,WAAW,EAyC1C;IAtBG,uBAA0B;IAwB9B;;OAEG;IACH,6FAEC;IAED;;;;;;OAMG;IACH,4FAFa,SAAS,CAIrB;IAED;;;;;;;OAOG;IACH,oGAHW,MAAM,GACJ,SAAS,CASrB;IAED;;;;;OAKG;IACH,iGAQC;IAED;;;;;OAKG;IACH,qBAFW,MAAM,QAUhB;IAeD;;OAEG;IACH,mBAFW,qEAAM,QAWhB;IAYD;;OAEG;IACH,sFAEC;IAED,yBAEC;IAED;;OAEG;IACH,sCAKC;IAED;;;;OAIG;IACH,gCAqCC;;CAwpBJ;qBAz7B0D,gBAAgB;sBADrD,wBAAwB;0BAEpB,qBAAqB;sBAIzB,gBAAgB"}
|
|
@@ -16,7 +16,9 @@ import LayerView from "../layerView.js";
|
|
|
16
16
|
import UnitView from "../unitView.js";
|
|
17
17
|
import { interactionToZoom } from "../zoom.js";
|
|
18
18
|
import GridChild from "./gridChild.js";
|
|
19
|
+
import KeyboardZoomController from "./keyboardZoomController.js";
|
|
19
20
|
import SeparatorView, { resolveSeparatorProps } from "./separatorView.js";
|
|
21
|
+
import { getZoomableResolutions } from "./zoomNavigationUtils.js";
|
|
20
22
|
|
|
21
23
|
/**
|
|
22
24
|
* Modeled after: https://vega.github.io/vega/docs/layout/
|
|
@@ -33,6 +35,9 @@ import SeparatorView, { resolveSeparatorProps } from "./separatorView.js";
|
|
|
33
35
|
* - Zoom / pan
|
|
34
36
|
* - Scrollable viewports (with scrollbars)
|
|
35
37
|
* - And later on, brushing, legend(?)
|
|
38
|
+
*
|
|
39
|
+
* @template {import("../../spec/view.js").AnyConcatSpec} [TSpec=import("../../spec/view.js").AnyConcatSpec]
|
|
40
|
+
* @extends {ContainerView<TSpec>}
|
|
36
41
|
*/
|
|
37
42
|
export default class GridView extends ContainerView {
|
|
38
43
|
/**
|
|
@@ -73,9 +78,12 @@ export default class GridView extends ContainerView {
|
|
|
73
78
|
/** @type {Partial<Record<"horizontal" | "vertical", SeparatorView>>} */
|
|
74
79
|
#separatorViews = {};
|
|
75
80
|
|
|
81
|
+
/** @type {KeyboardZoomController | null} */
|
|
82
|
+
#keyboardZoomController = null;
|
|
83
|
+
|
|
76
84
|
/**
|
|
77
85
|
*
|
|
78
|
-
* @param {
|
|
86
|
+
* @param {TSpec} spec
|
|
79
87
|
* @param {import("../../types/viewContext.js").default} context
|
|
80
88
|
* @param {ContainerView} layoutParent
|
|
81
89
|
* @param {View} dataParent
|
|
@@ -115,6 +123,13 @@ export default class GridView extends ContainerView {
|
|
|
115
123
|
});
|
|
116
124
|
}
|
|
117
125
|
}
|
|
126
|
+
|
|
127
|
+
if (!this.layoutParent) {
|
|
128
|
+
this.#keyboardZoomController = new KeyboardZoomController({
|
|
129
|
+
context: this.context,
|
|
130
|
+
viewRoot: this,
|
|
131
|
+
});
|
|
132
|
+
}
|
|
118
133
|
}
|
|
119
134
|
|
|
120
135
|
/**
|
|
@@ -856,6 +871,7 @@ export default class GridView extends ContainerView {
|
|
|
856
871
|
const pointedChild = this.#visibleChildren.find((gridChild) =>
|
|
857
872
|
gridChild.coords.containsPoint(event.point.x, event.point.y)
|
|
858
873
|
);
|
|
874
|
+
this.#keyboardZoomController?.handlePointerEvent(pointedChild, event);
|
|
859
875
|
|
|
860
876
|
for (const scrollbar of Object.values(pointedChild?.scrollbars ?? {})) {
|
|
861
877
|
if (scrollbar.coords.containsPoint(event.point.x, event.point.y)) {
|
|
@@ -949,31 +965,6 @@ export default class GridView extends ContainerView {
|
|
|
949
965
|
}
|
|
950
966
|
}
|
|
951
967
|
|
|
952
|
-
/**
|
|
953
|
-
*
|
|
954
|
-
* @param {View} view
|
|
955
|
-
* @returns
|
|
956
|
-
*/
|
|
957
|
-
function getZoomableResolutions(view) {
|
|
958
|
-
/** @type {Record<import("../../spec/channel.js").PrimaryPositionalChannel, Set<import("../../scales/scaleResolution.js").default>>} */
|
|
959
|
-
const resolutions = {
|
|
960
|
-
x: new Set(),
|
|
961
|
-
y: new Set(),
|
|
962
|
-
};
|
|
963
|
-
|
|
964
|
-
// Find all resolutions (scales) that are candidates for zooming
|
|
965
|
-
view.visit((v) => {
|
|
966
|
-
for (const [channel, resolutionSet] of Object.entries(resolutions)) {
|
|
967
|
-
const resolution = v.getScaleResolution(channel);
|
|
968
|
-
if (resolution && resolution.isZoomable()) {
|
|
969
|
-
resolutionSet.add(resolution);
|
|
970
|
-
}
|
|
971
|
-
}
|
|
972
|
-
});
|
|
973
|
-
|
|
974
|
-
return resolutions;
|
|
975
|
-
}
|
|
976
|
-
|
|
977
968
|
/**
|
|
978
969
|
* @param {View} view
|
|
979
970
|
*/
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Handles WASD keyboard navigation for the root grid view.
|
|
3
|
+
*/
|
|
4
|
+
export default class KeyboardZoomController {
|
|
5
|
+
/**
|
|
6
|
+
* @param {object} params
|
|
7
|
+
* @param {import("../../types/viewContext.js").default} params.context
|
|
8
|
+
* @param {import("../view.js").default} params.viewRoot
|
|
9
|
+
*/
|
|
10
|
+
constructor({ context, viewRoot }: {
|
|
11
|
+
context: import("../../types/viewContext.js").default;
|
|
12
|
+
viewRoot: import("../view.js").default;
|
|
13
|
+
});
|
|
14
|
+
/**
|
|
15
|
+
* @param {import("./gridChild.js").default | undefined} pointedChild
|
|
16
|
+
* @param {import("../../utils/interactionEvent.js").default} event
|
|
17
|
+
*/
|
|
18
|
+
handlePointerEvent(pointedChild: import("./gridChild.js").default | undefined, event: import("../../utils/interactionEvent.js").default): void;
|
|
19
|
+
#private;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=keyboardZoomController.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keyboardZoomController.d.ts","sourceRoot":"","sources":["../../../../src/view/gridView/keyboardZoomController.js"],"names":[],"mappings":"AAIA;;GAEG;AACH;IAuDI;;;;OAIG;IACH,mCAHG;QAA6D,OAAO,EAA5D,OAAO,4BAA4B,EAAE,OAAO;QACP,QAAQ,EAA7C,OAAO,YAAY,EAAE,OAAO;KACtC,EAKA;IAED;;;OAGG;IACH,iCAHW,OAAO,gBAAgB,EAAE,OAAO,GAAG,SAAS,SAC5C,OAAO,iCAAiC,EAAE,OAAO,QA0B3D;;CA4DJ"}
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
import KeyboardZoomMotion from "../../utils/keyboardZoomMotion.js";
|
|
2
|
+
import { markZoomActivity } from "../zoom.js";
|
|
3
|
+
import { getKeyboardZoomTarget } from "./zoomNavigationUtils.js";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Handles WASD keyboard navigation for the root grid view.
|
|
7
|
+
*/
|
|
8
|
+
export default class KeyboardZoomController {
|
|
9
|
+
/** @type {import("../../types/viewContext.js").default} */
|
|
10
|
+
#context;
|
|
11
|
+
|
|
12
|
+
/** @type {import("../view.js").default} */
|
|
13
|
+
#viewRoot;
|
|
14
|
+
|
|
15
|
+
#zoomAnchorX = 0.5;
|
|
16
|
+
|
|
17
|
+
#keyboardZoomMotion = new KeyboardZoomMotion();
|
|
18
|
+
|
|
19
|
+
#keyboardNavigationActive = false;
|
|
20
|
+
|
|
21
|
+
#keyboardNavigationTimestamp = 0;
|
|
22
|
+
|
|
23
|
+
#keyboardNavigationStep = (/** @type {number} */ timestamp) => {
|
|
24
|
+
if (!this.#keyboardNavigationActive) {
|
|
25
|
+
return;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
const resolution = getKeyboardZoomTarget(this.#viewRoot);
|
|
29
|
+
if (!resolution) {
|
|
30
|
+
this.#keyboardZoomMotion.reset();
|
|
31
|
+
this.#keyboardNavigationActive = false;
|
|
32
|
+
this.#keyboardNavigationTimestamp = 0;
|
|
33
|
+
return;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const dtMs = Math.max(0, timestamp - this.#keyboardNavigationTimestamp);
|
|
37
|
+
this.#keyboardNavigationTimestamp = timestamp;
|
|
38
|
+
|
|
39
|
+
const motion = this.#keyboardZoomMotion.step(dtMs);
|
|
40
|
+
|
|
41
|
+
if (motion.panDelta !== 0 || motion.zoomDelta !== 0) {
|
|
42
|
+
const changed = resolution.zoom(
|
|
43
|
+
2 ** motion.zoomDelta,
|
|
44
|
+
this.#zoomAnchorX,
|
|
45
|
+
motion.panDelta
|
|
46
|
+
);
|
|
47
|
+
if (changed) {
|
|
48
|
+
markZoomActivity();
|
|
49
|
+
this.#context.animator.requestRender();
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
if (motion.active) {
|
|
54
|
+
this.#context.animator.requestTransition(
|
|
55
|
+
this.#keyboardNavigationStep
|
|
56
|
+
);
|
|
57
|
+
} else {
|
|
58
|
+
this.#keyboardNavigationActive = false;
|
|
59
|
+
this.#keyboardNavigationTimestamp = 0;
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* @param {object} params
|
|
65
|
+
* @param {import("../../types/viewContext.js").default} params.context
|
|
66
|
+
* @param {import("../view.js").default} params.viewRoot
|
|
67
|
+
*/
|
|
68
|
+
constructor({ context, viewRoot }) {
|
|
69
|
+
this.#context = context;
|
|
70
|
+
this.#viewRoot = viewRoot;
|
|
71
|
+
this.#setupKeyboardNavigation();
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* @param {import("./gridChild.js").default | undefined} pointedChild
|
|
76
|
+
* @param {import("../../utils/interactionEvent.js").default} event
|
|
77
|
+
*/
|
|
78
|
+
handlePointerEvent(pointedChild, event) {
|
|
79
|
+
if (!pointedChild) {
|
|
80
|
+
return;
|
|
81
|
+
} else {
|
|
82
|
+
const viewWithAnchor =
|
|
83
|
+
/** @type {{getKeyboardZoomAnchorX?: (point: {x: number, y: number}) => number | undefined}} */ (
|
|
84
|
+
pointedChild.view
|
|
85
|
+
);
|
|
86
|
+
|
|
87
|
+
if (typeof viewWithAnchor.getKeyboardZoomAnchorX === "function") {
|
|
88
|
+
const anchor = viewWithAnchor.getKeyboardZoomAnchorX(
|
|
89
|
+
event.point
|
|
90
|
+
);
|
|
91
|
+
if (Number.isFinite(anchor)) {
|
|
92
|
+
this.#zoomAnchorX = Math.max(0, Math.min(1, anchor));
|
|
93
|
+
}
|
|
94
|
+
} else {
|
|
95
|
+
const normalizedPoint = pointedChild.coords.normalizePoint(
|
|
96
|
+
event.point.x,
|
|
97
|
+
event.point.y
|
|
98
|
+
);
|
|
99
|
+
this.#zoomAnchorX = normalizedPoint.x;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
#setupKeyboardNavigation() {
|
|
105
|
+
const addKeyboardListener = this.#context.addKeyboardListener;
|
|
106
|
+
if (typeof addKeyboardListener !== "function") {
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
addKeyboardListener("keydown", (event) => {
|
|
111
|
+
if (shouldIgnoreKeyboardNavigation(event)) {
|
|
112
|
+
return;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
if (!this.#keyboardZoomMotion.isNavigationKey(event.code)) {
|
|
116
|
+
return;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
const resolution = getKeyboardZoomTarget(this.#viewRoot);
|
|
120
|
+
if (!resolution) {
|
|
121
|
+
return;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
const changed = this.#keyboardZoomMotion.handleKeyDown(event.code);
|
|
125
|
+
if (!changed) {
|
|
126
|
+
return;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
event.preventDefault();
|
|
130
|
+
this.#activateKeyboardNavigation();
|
|
131
|
+
});
|
|
132
|
+
|
|
133
|
+
addKeyboardListener("keyup", (event) => {
|
|
134
|
+
if (!this.#keyboardZoomMotion.isNavigationKey(event.code)) {
|
|
135
|
+
return;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
const changed = this.#keyboardZoomMotion.handleKeyUp(event.code);
|
|
139
|
+
if (!changed) {
|
|
140
|
+
return;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
const resolution = getKeyboardZoomTarget(this.#viewRoot);
|
|
144
|
+
if (!resolution) {
|
|
145
|
+
return;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
event.preventDefault();
|
|
149
|
+
this.#activateKeyboardNavigation();
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
#activateKeyboardNavigation() {
|
|
154
|
+
if (this.#keyboardNavigationActive) {
|
|
155
|
+
return;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
this.#keyboardNavigationActive = true;
|
|
159
|
+
this.#keyboardNavigationTimestamp = performance.now();
|
|
160
|
+
this.#context.animator.requestTransition(this.#keyboardNavigationStep);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* @param {KeyboardEvent} event
|
|
166
|
+
*/
|
|
167
|
+
function shouldIgnoreKeyboardNavigation(event) {
|
|
168
|
+
if (event.altKey || event.ctrlKey || event.metaKey) {
|
|
169
|
+
return true;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
if (isEditableTarget(event.target)) {
|
|
173
|
+
return true;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
return false;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* @param {EventTarget | null} target
|
|
181
|
+
*/
|
|
182
|
+
function isEditableTarget(target) {
|
|
183
|
+
if (!target || typeof target !== "object") {
|
|
184
|
+
return false;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
const candidate =
|
|
188
|
+
/** @type {{isContentEditable?: boolean, nodeName?: string}} */ (
|
|
189
|
+
target
|
|
190
|
+
);
|
|
191
|
+
|
|
192
|
+
if (candidate.isContentEditable) {
|
|
193
|
+
return true;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
if (typeof candidate.nodeName === "string") {
|
|
197
|
+
const name = candidate.nodeName.toLowerCase();
|
|
198
|
+
return name === "input" || name === "textarea" || name === "select";
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
return false;
|
|
202
|
+
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*
|
|
5
5
|
* @typedef {"horizontal" | "vertical"} ScrollDirection
|
|
6
6
|
*/
|
|
7
|
-
export default class Scrollbar extends UnitView {
|
|
7
|
+
export default class Scrollbar extends UnitView<import("../../spec/view.js").UnitSpec> {
|
|
8
8
|
/**
|
|
9
9
|
* @param {import("./gridChild.js").default} gridChild
|
|
10
10
|
* @param {ScrollDirection} scrollDirection
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scrollbar.d.ts","sourceRoot":"","sources":["../../../../src/view/gridView/scrollbar.js"],"names":[],"mappings":"AAMA;;;;;GAKG;AACH;IAwBI;;;;OAIG;IACH,uBAJW,OAAO,gBAAgB,EAAE,OAAO,mBAChC,eAAe,YACf;QAAE,sBAAsB,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAA;KAAE,
|
|
1
|
+
{"version":3,"file":"scrollbar.d.ts","sourceRoot":"","sources":["../../../../src/view/gridView/scrollbar.js"],"names":[],"mappings":"AAMA;;;;;GAKG;AACH;IAwBI;;;;OAIG;IACH,uBAJW,OAAO,gBAAgB,EAAE,OAAO,mBAChC,eAAe,YACf;QAAE,sBAAsB,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAA;KAAE,EAyH/D;IAxID;;;;;;OAMG;IACH,uBAAmB;IAkDf;;;;MAAoB;IAiFxB,2BAEC;IAED;;;OAGG;IACH,yBAHW,MAAM,6BACN;QAAE,MAAM,CAAC,EAAE,OAAO,CAAC;QAAC,YAAY,CAAC,EAAE,OAAO,CAAA;KAAE,QAYtD;IAqFD;;;;;;;;;OASG;IACH,gCAHW,SAAS,iBACT,SAAS,QASnB;IAMG;;;;MAWC;;CAER;;;;;8BAnSY,YAAY,GAAG,UAAU;qBAPjB,gBAAgB;sBADf,wBAAwB"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export default class SelectionRect extends LayerView {
|
|
1
|
+
export default class SelectionRect extends LayerView<import("../../spec/view.js").LayerSpec> {
|
|
2
2
|
/**
|
|
3
3
|
* @typedef {import("../../spec/channel.js").PrimaryPositionalChannel} PrimaryPositionalChannel
|
|
4
4
|
* @typedef {import("../../types/selectionTypes.js").IntervalSelection} IntervalSelection
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"selectionRect.d.ts","sourceRoot":"","sources":["../../../../src/view/gridView/selectionRect.js"],"names":[],"mappings":"AAIA;IACI;;;OAGG;IAEH;;;;OAIG;IACH,uBAJW,OAAO,gBAAgB,EAAE,OAAO,iBAChC,OAAO,6BAA6B,EAAE,eAAe,gBACrD,OAAO,yBAAyB,EAAE,WAAW,
|
|
1
|
+
{"version":3,"file":"selectionRect.d.ts","sourceRoot":"","sources":["../../../../src/view/gridView/selectionRect.js"],"names":[],"mappings":"AAIA;IACI;;;OAGG;IAEH;;;;OAIG;IACH,uBAJW,OAAO,gBAAgB,EAAE,OAAO,iBAChC,OAAO,6BAA6B,EAAE,eAAe,gBACrD,OAAO,yBAAyB,EAAE,WAAW,EA+JvD;CACJ;sBA5KqB,iBAAiB"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @typedef {import("../view.js").default} View
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Finds all zoomable positional resolutions in a subtree.
|
|
6
|
+
*
|
|
7
|
+
* @param {View} view
|
|
8
|
+
* @returns {Record<import("../../spec/channel.js").PrimaryPositionalChannel, Set<import("../../scales/scaleResolution.js").default>>}
|
|
9
|
+
*/
|
|
10
|
+
export function getZoomableResolutions(view: View): Record<import("../../spec/channel.js").PrimaryPositionalChannel, Set<import("../../scales/scaleResolution.js").default>>;
|
|
11
|
+
/**
|
|
12
|
+
* Returns the keyboard zoom target when exactly one zoomable x-resolution is
|
|
13
|
+
* present in the hierarchy and it is resolved to the root view.
|
|
14
|
+
*
|
|
15
|
+
* @param {View} viewRoot
|
|
16
|
+
*/
|
|
17
|
+
export function getKeyboardZoomTarget(viewRoot: View): any;
|
|
18
|
+
export type View = import("../view.js").default;
|
|
19
|
+
//# sourceMappingURL=zoomNavigationUtils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zoomNavigationUtils.d.ts","sourceRoot":"","sources":["../../../../src/view/gridView/zoomNavigationUtils.js"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;;;GAKG;AACH,6CAHW,IAAI,GACF,MAAM,CAAC,OAAO,uBAAuB,EAAE,wBAAwB,EAAE,GAAG,CAAC,OAAO,iCAAiC,EAAE,OAAO,CAAC,CAAC,CAoBpI;AAED;;;;;GAKG;AACH,gDAFW,IAAI,OAgBd;mBAjDY,OAAO,YAAY,EAAE,OAAO"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @typedef {import("../view.js").default} View
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Finds all zoomable positional resolutions in a subtree.
|
|
7
|
+
*
|
|
8
|
+
* @param {View} view
|
|
9
|
+
* @returns {Record<import("../../spec/channel.js").PrimaryPositionalChannel, Set<import("../../scales/scaleResolution.js").default>>}
|
|
10
|
+
*/
|
|
11
|
+
export function getZoomableResolutions(view) {
|
|
12
|
+
/** @type {Record<import("../../spec/channel.js").PrimaryPositionalChannel, Set<import("../../scales/scaleResolution.js").default>>} */
|
|
13
|
+
const resolutions = {
|
|
14
|
+
x: new Set(),
|
|
15
|
+
y: new Set(),
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
// Find all resolutions (scales) that are candidates for zooming
|
|
19
|
+
view.visit((v) => {
|
|
20
|
+
for (const [channel, resolutionSet] of Object.entries(resolutions)) {
|
|
21
|
+
const resolution = v.getScaleResolution(channel);
|
|
22
|
+
if (resolution && resolution.isZoomable()) {
|
|
23
|
+
resolutionSet.add(resolution);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
return resolutions;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Returns the keyboard zoom target when exactly one zoomable x-resolution is
|
|
33
|
+
* present in the hierarchy and it is resolved to the root view.
|
|
34
|
+
*
|
|
35
|
+
* @param {View} viewRoot
|
|
36
|
+
*/
|
|
37
|
+
export function getKeyboardZoomTarget(viewRoot) {
|
|
38
|
+
const xResolutions = getZoomableResolutions(viewRoot).x;
|
|
39
|
+
if (xResolutions.size !== 1) {
|
|
40
|
+
return;
|
|
41
|
+
} else {
|
|
42
|
+
const target = xResolutions.values().next().value;
|
|
43
|
+
const rootXResolution = viewRoot.getScaleResolution("x");
|
|
44
|
+
|
|
45
|
+
if (!rootXResolution || rootXResolution !== target) {
|
|
46
|
+
return;
|
|
47
|
+
} else {
|
|
48
|
+
return target;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* @template {import("../spec/view.js").LayerSpec} [TSpec=import("../spec/view.js").LayerSpec]
|
|
3
|
+
* @extends {ContainerView<TSpec>}
|
|
4
|
+
*/
|
|
5
|
+
export default class LayerView<TSpec extends import("../spec/view.js").LayerSpec = import("../spec/view.js").LayerSpec> extends ContainerView<TSpec> {
|
|
2
6
|
/**
|
|
3
7
|
*
|
|
4
|
-
* @param {
|
|
8
|
+
* @param {TSpec} spec
|
|
5
9
|
* @param {import("../types/viewContext.js").default} context
|
|
6
10
|
* @param {ContainerView} layoutParent
|
|
7
11
|
* @param {import("./view.js").default} dataParent
|
|
8
12
|
* @param {string} name
|
|
9
13
|
* @param {import("./view.js").ViewOptions} [options]
|
|
10
14
|
*/
|
|
11
|
-
constructor(spec:
|
|
12
|
-
spec: import("../spec/view.js").LayerSpec;
|
|
15
|
+
constructor(spec: TSpec, context: import("../types/viewContext.js").default, layoutParent: ContainerView, dataParent: import("./view.js").default, name: string, options?: import("./view.js").ViewOptions);
|
|
13
16
|
/**
|
|
14
17
|
* Adds a child spec dynamically. Intended for post-initialization updates.
|
|
15
18
|
*
|
|
@@ -24,7 +27,7 @@ export default class LayerView extends ContainerView {
|
|
|
24
27
|
* @param {number} index
|
|
25
28
|
*/
|
|
26
29
|
removeChildAt(index: number): Promise<void>;
|
|
27
|
-
get children(): (import("./unitView.js").default | LayerView)[];
|
|
30
|
+
get children(): (import("./unitView.js").default<import("../spec/view.js").UnitSpec> | LayerView<import("../spec/view.js").LayerSpec>)[];
|
|
28
31
|
#private;
|
|
29
32
|
}
|
|
30
33
|
import ContainerView from "./containerView.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"layerView.d.ts","sourceRoot":"","sources":["../../../src/view/layerView.js"],"names":[],"mappings":"AAMA;
|
|
1
|
+
{"version":3,"file":"layerView.d.ts","sourceRoot":"","sources":["../../../src/view/layerView.js"],"names":[],"mappings":"AAMA;;;GAGG;AACH,+BAHoD,KAAK,SAA5C,OAAQ,iBAAiB,EAAE,SAAU;IAW9C;;;;;;;;OAQG;IACH,kBAPW,KAAK,WACL,OAAO,yBAAyB,EAAE,OAAO,gBACzC,aAAa,cACb,OAAO,WAAW,EAAE,OAAO,QAC3B,MAAM,YACN,OAAO,WAAW,EAAE,WAAW,EAWzC;IAkCD;;;;;;OAMG;IACH,wBAJW,OAAO,iBAAiB,EAAE,SAAS,GAAG,OAAO,iBAAiB,EAAE,QAAQ,GAAG,OAAO,iBAAiB,EAAE,UAAU,UAC/G,MAAM,GACJ,OAAO,CAAC,SAAS,GAAG,OAAO,eAAe,EAAE,OAAO,CAAC,CAMhE;IAED;;;;OAIG;IACH,qBAFW,MAAM,iBAIhB;IA6CD,yIAEC;;CA6CJ;0BAtLyB,oBAAoB"}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
import { isLayerSpec, isUnitSpec } from "./viewFactory.js";
|
|
2
1
|
import ContainerView from "./containerView.js";
|
|
3
2
|
import ViewError from "./viewError.js";
|
|
4
3
|
import ContainerMutationHelper from "./containerMutationHelper.js";
|
|
5
4
|
import { isMultiscaleSpec } from "./multiscale.js";
|
|
5
|
+
import { isLayerSpec, isUnitSpec } from "./viewSpecGuards.js";
|
|
6
6
|
|
|
7
|
+
/**
|
|
8
|
+
* @template {import("../spec/view.js").LayerSpec} [TSpec=import("../spec/view.js").LayerSpec]
|
|
9
|
+
* @extends {ContainerView<TSpec>}
|
|
10
|
+
*/
|
|
7
11
|
export default class LayerView extends ContainerView {
|
|
8
12
|
/**
|
|
9
13
|
* @typedef {import("./view.js").default} View
|
|
@@ -14,7 +18,7 @@ export default class LayerView extends ContainerView {
|
|
|
14
18
|
|
|
15
19
|
/**
|
|
16
20
|
*
|
|
17
|
-
* @param {
|
|
21
|
+
* @param {TSpec} spec
|
|
18
22
|
* @param {import("../types/viewContext.js").default} context
|
|
19
23
|
* @param {ContainerView} layoutParent
|
|
20
24
|
* @param {import("./view.js").default} dataParent
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"title.d.ts","sourceRoot":"","sources":["../../../src/view/title.js"],"names":[],"mappings":"AAuDA;;;GAGG;AACH,2CAHW,MAAM,GAAG,OAAO,kBAAkB,EAAE,KAAK,GACvC,OAAO,iBAAiB,EAAE,QAAQ,
|
|
1
|
+
{"version":3,"file":"title.d.ts","sourceRoot":"","sources":["../../../src/view/title.js"],"names":[],"mappings":"AAuDA;;;GAGG;AACH,2CAHW,MAAM,GAAG,OAAO,kBAAkB,EAAE,KAAK,GACvC,OAAO,iBAAiB,EAAE,QAAQ,CA0G9C"}
|
package/dist/src/view/title.js
CHANGED
|
@@ -4,21 +4,24 @@
|
|
|
4
4
|
* TODO: Find a proper place, make extendible
|
|
5
5
|
*/
|
|
6
6
|
export const markTypes: Record<import("../spec/mark.js").MarkType, typeof import("../marks/mark.js").default>;
|
|
7
|
-
|
|
7
|
+
/**
|
|
8
|
+
* @template {import("../spec/view.js").UnitSpec} [TSpec=import("../spec/view.js").UnitSpec]
|
|
9
|
+
* @extends {View<TSpec>}
|
|
10
|
+
*/
|
|
11
|
+
export default class UnitView<TSpec extends import("../spec/view.js").UnitSpec = import("../spec/view.js").UnitSpec> extends View<TSpec> {
|
|
8
12
|
/**
|
|
9
13
|
*
|
|
10
|
-
* @param {
|
|
14
|
+
* @param {TSpec} spec
|
|
11
15
|
* @param {import("../types/viewContext.js").default} context
|
|
12
16
|
* @param {import("./containerView.js").default} layoutParent
|
|
13
17
|
* @param {import("./view.js").default} dataParent
|
|
14
18
|
* @param {string} name
|
|
15
19
|
* @param {import("./view.js").ViewOptions} [options]
|
|
16
20
|
*/
|
|
17
|
-
constructor(spec:
|
|
18
|
-
spec: import("../spec/view.js").UnitSpec;
|
|
21
|
+
constructor(spec: TSpec, context: import("../types/viewContext.js").default, layoutParent: import("./containerView.js").default, dataParent: import("./view.js").default, name: string, options?: import("./view.js").ViewOptions);
|
|
19
22
|
/** @type {import("../marks/mark.js").default} */
|
|
20
23
|
mark: import("../marks/mark.js").default;
|
|
21
|
-
getMarkType(): "link" | "
|
|
24
|
+
getMarkType(): "link" | "point" | "text" | "rect" | "rule";
|
|
22
25
|
/**
|
|
23
26
|
* Pulls scales and axes up in the view hierarcy according to the resolution rules, using dataParents.
|
|
24
27
|
* TODO: legends
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"unitView.d.ts","sourceRoot":"","sources":["../../../src/view/unitView.js"],"names":[],"mappings":"AA+BA;;;;GAIG;AACH,wBAHU,MAAM,CAAC,OAAO,iBAAiB,EAAE,QAAQ,EAAE,cAAc,kBAAkB,EAAE,OAAO,CAAC,CAc7F;AAEF;
|
|
1
|
+
{"version":3,"file":"unitView.d.ts","sourceRoot":"","sources":["../../../src/view/unitView.js"],"names":[],"mappings":"AA+BA;;;;GAIG;AACH,wBAHU,MAAM,CAAC,OAAO,iBAAiB,EAAE,QAAQ,EAAE,cAAc,kBAAkB,EAAE,OAAO,CAAC,CAc7F;AAEF;;;GAGG;AACH,8BAHmD,KAAK,SAA3C,OAAQ,iBAAiB,EAAE,QAAS;IA2B7C;;;;;;;;OAQG;IACH,kBAPW,KAAK,WACL,OAAO,yBAAyB,EAAE,OAAO,gBACzC,OAAO,oBAAoB,EAAE,OAAO,cACpC,OAAO,WAAW,EAAE,OAAO,QAC3B,MAAM,YACN,OAAO,WAAW,EAAE,WAAW,EAyCzC;IAhCO,iDAAiD;IACjD,MADW,OAAO,kBAAkB,EAAE,OAAO,CACnB;IAyKlC,2DAIC;IAoBD;;;;;OAKG;IAEH,iEAqJC;IAUD;;;;;OAKG;IACH,4IAMC;IAED;;;;OAIG;IACH,sBAFa,OAAO,WAAW,EAAE,UAAU,EAAE,CAS5C;IAkBD;;OAEG;IACH,uDAEC;IAED;;OAEG;IACH,oCA0EC;IAED,uBAQC;IAgBD;;;;OAIG;IACH,8BAJW,MAAM,+DAEJ,OAAO,iBAAiB,EAAE,kBAAkB,CAKxD;;CACJ;iBAtlBgB,WAAW"}
|