@vitessce/vit-s 2.0.2 → 2.0.3
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/index.mjs +84801 -0
- package/{dist → dist-tsc}/index.js +2 -2
- package/package.json +7 -7
- package/src/CallbackPublisher.js +81 -0
- package/src/LoadingIndicator.js +34 -0
- package/src/TitleInfo.js +240 -0
- package/src/VitS.js +180 -0
- package/src/VitessceGrid.js +110 -0
- package/src/VitessceGrid.test.jsx +48 -0
- package/src/Warning.js +62 -0
- package/{dist → src}/classNames.js +0 -0
- package/src/component-registry.js +21 -0
- package/src/data/AbstractLoader.js +46 -0
- package/{dist → src}/data/AbstractTwoStepLoader.js +5 -4
- package/src/data/LoaderResult.js +8 -0
- package/{dist → src}/data/index.js +0 -0
- package/src/data/loader-registry.js +19 -0
- package/src/data-hook-utils.js +197 -0
- package/src/data-hooks.js +354 -0
- package/src/errors/AbstractLoaderError.js +14 -0
- package/src/errors/DataSourceFetchError.js +15 -0
- package/src/errors/DatasetNotFoundError.js +23 -0
- package/src/errors/LoaderNotFoundError.js +24 -0
- package/src/errors/LoaderValidationError.js +23 -0
- package/src/errors/OptionsValidationError.js +25 -0
- package/{dist → src}/errors/index.js +0 -0
- package/src/file-options-schemas-legacy.js +139 -0
- package/src/file-options-schemas-legacy.test.js +138 -0
- package/src/file-options-schemas.js +327 -0
- package/src/file-options-schemas.test.js +26 -0
- package/src/hooks.js +252 -0
- package/src/index.js +101 -0
- package/src/joint-file-types-legacy.js +298 -0
- package/src/joint-file-types-legacy.test.js +412 -0
- package/src/joint-file-types.js +171 -0
- package/src/joint-file-types.test.js +144 -0
- package/{dist/schemas.js → src/json-schemas.js} +6 -1
- package/{dist → src}/plugins.js +102 -70
- package/src/plugins.test.fixtures.js +78 -0
- package/src/plugins.test.js +42 -0
- package/src/schemas/config-0.1.0.schema.json +85 -0
- package/src/schemas/config-1.0.0.schema.json +733 -0
- package/src/schemas/config-1.0.1.schema.json +909 -0
- package/src/schemas/config-1.0.10.schema.json +969 -0
- package/src/schemas/config-1.0.11.schema.json +990 -0
- package/src/schemas/config-1.0.12.schema.json +997 -0
- package/src/schemas/config-1.0.13.schema.json +1013 -0
- package/src/schemas/config-1.0.14.schema.json +1048 -0
- package/src/schemas/config-1.0.15.schema.json +1048 -0
- package/src/schemas/config-1.0.16.schema.json +1069 -0
- package/src/schemas/config-1.0.16.schema.test.js +32 -0
- package/src/schemas/config-1.0.2.schema.json +911 -0
- package/src/schemas/config-1.0.3.schema.json +911 -0
- package/src/schemas/config-1.0.4.schema.json +949 -0
- package/src/schemas/config-1.0.5.schema.json +949 -0
- package/src/schemas/config-1.0.6.schema.json +950 -0
- package/src/schemas/config-1.0.7.schema.json +950 -0
- package/src/schemas/config-1.0.8.schema.json +966 -0
- package/src/schemas/config-1.0.9.schema.json +965 -0
- package/src/schemas/fixtures/cellSets.good.json +16 -0
- package/src/schemas/fixtures/config-1.0.1.bad.json +1 -0
- package/src/schemas/fixtures/config-1.0.1.bad.message.json +11 -0
- package/src/schemas/fixtures/config-1.0.1.good.json +37 -0
- package/src/schemas/fixtures/config-1.0.2.bad.json +1 -0
- package/src/schemas/fixtures/config-1.0.2.bad.message.json +11 -0
- package/src/schemas/fixtures/config-1.0.2.good.json +38 -0
- package/src/schemas/fixtures/config-1.0.3.bad.json +1 -0
- package/src/schemas/fixtures/config-1.0.3.bad.message.json +11 -0
- package/src/schemas/fixtures/config-1.0.3.good.json +38 -0
- package/src/schemas/fixtures/obsSets.bad.json +1 -0
- package/src/schemas/fixtures/obsSets.bad.message.json +11 -0
- package/src/schemas/fixtures/obsSets.good.json +16 -0
- package/src/schemas/fixtures/obsSetsTabular.bad.json +1 -0
- package/src/schemas/fixtures/obsSetsTabular.bad.message.json +11 -0
- package/src/schemas/fixtures/obsSetsTabular.good.json +26 -0
- package/src/schemas/fixtures/raster.bad.json +1 -0
- package/src/schemas/fixtures/raster.bad.message.json +11 -0
- package/src/schemas/fixtures/raster.good.json +39 -0
- package/src/schemas/obsSets.schema.js +195 -0
- package/src/schemas/obsSetsTabular.schema.js +39 -0
- package/src/schemas/raster.schema.js +121 -0
- package/src/schemas/schema-schema.sh +34 -0
- package/{dist → src}/schemas/schema.test-old.js +0 -1
- package/src/shared-mui/components.js +79 -0
- package/src/shared-mui/container.js +212 -0
- package/src/shared-mui/styles.js +110 -0
- package/src/shared-plot-options/CellColorEncodingOption.js +43 -0
- package/src/shared-plot-options/OptionSelect.js +19 -0
- package/src/shared-plot-options/OptionsContainer.js +26 -0
- package/{dist → src}/shared-plot-options/index.js +0 -0
- package/src/shared-plot-options/styles.js +49 -0
- package/src/state/hooks.js +633 -0
- package/src/view-config-upgraders.js +628 -0
- package/src/view-config-utils.js +315 -0
- package/src/view-config-utils.test.fixtures.js +893 -0
- package/src/view-config-utils.test.js +95 -0
- package/src/view-config-versions.js +68 -0
- package/src/vitessce-grid-layout/VitessceGridLayout.js +158 -0
- package/src/vitessce-grid-layout/VitessceGridLayout.test.jsx +56 -0
- package/{dist → src}/vitessce-grid-layout/index.js +0 -0
- package/src/vitessce-grid-layout/layout-utils.js +76 -0
- package/src/vitessce-grid-layout/layout-utils.test.js +167 -0
- package/src/vitessce-grid-utils.js +160 -0
- package/dist/CallbackPublisher.js +0 -68
- package/dist/LoadingIndicator.js +0 -27
- package/dist/TitleInfo.js +0 -151
- package/dist/VitS.js +0 -112
- package/dist/VitessceGrid.js +0 -59
- package/dist/VitessceGrid.test.js +0 -36
- package/dist/Warning.js +0 -45
- package/dist/component-registry.js +0 -16
- package/dist/data/AbstractLoader.js +0 -35
- package/dist/data/LoaderResult.js +0 -7
- package/dist/data/loader-registry.js +0 -15
- package/dist/data-hook-utils.js +0 -175
- package/dist/data-hooks.js +0 -241
- package/dist/errors/AbstractLoaderError.js +0 -13
- package/dist/errors/DataSourceFetchError.js +0 -13
- package/dist/errors/DatasetNotFoundError.js +0 -17
- package/dist/errors/LoaderNotFoundError.js +0 -17
- package/dist/errors/LoaderValidationError.js +0 -15
- package/dist/errors/OptionsValidationError.js +0 -15
- package/dist/file-options-schemas-legacy.js +0 -136
- package/dist/file-options-schemas-legacy.test.js +0 -126
- package/dist/file-options-schemas.js +0 -322
- package/dist/file-options-schemas.test.js +0 -23
- package/dist/hooks.js +0 -215
- package/dist/joint-file-types-legacy.js +0 -278
- package/dist/joint-file-types-legacy.test.js +0 -400
- package/dist/joint-file-types.js +0 -148
- package/dist/joint-file-types.test.js +0 -139
- package/dist/plugins.test.fixtures.js +0 -76
- package/dist/plugins.test.js +0 -30
- package/dist/schemas/config-0.1.0.schema.json +0 -84
- package/dist/schemas/config-1.0.0.schema.json +0 -733
- package/dist/schemas/config-1.0.1.schema.json +0 -909
- package/dist/schemas/config-1.0.10.schema.json +0 -969
- package/dist/schemas/config-1.0.11.schema.json +0 -990
- package/dist/schemas/config-1.0.12.schema.json +0 -997
- package/dist/schemas/config-1.0.13.schema.json +0 -1013
- package/dist/schemas/config-1.0.14.schema.json +0 -1048
- package/dist/schemas/config-1.0.15.schema.json +0 -1048
- package/dist/schemas/config-1.0.15.schema.test.js +0 -22
- package/dist/schemas/config-1.0.2.schema.json +0 -910
- package/dist/schemas/config-1.0.3.schema.json +0 -910
- package/dist/schemas/config-1.0.4.schema.json +0 -949
- package/dist/schemas/config-1.0.5.schema.json +0 -949
- package/dist/schemas/config-1.0.6.schema.json +0 -949
- package/dist/schemas/config-1.0.7.schema.json +0 -949
- package/dist/schemas/config-1.0.8.schema.json +0 -965
- package/dist/schemas/config-1.0.9.schema.json +0 -965
- package/dist/schemas/obsSets.schema.js +0 -195
- package/dist/schemas/obsSetsTabular.schema.js +0 -38
- package/dist/schemas/raster.schema.js +0 -120
- package/dist/shared-mui/components.js +0 -35
- package/dist/shared-mui/container.js +0 -211
- package/dist/shared-mui/styles.js +0 -73
- package/dist/shared-plot-options/CellColorEncodingOption.js +0 -18
- package/dist/shared-plot-options/OptionSelect.js +0 -12
- package/dist/shared-plot-options/OptionsContainer.js +0 -12
- package/dist/shared-plot-options/styles.js +0 -48
- package/dist/state/hooks.js +0 -549
- package/dist/view-config-upgraders.js +0 -525
- package/dist/view-config-utils.js +0 -286
- package/dist/view-config-utils.test.fixtures.js +0 -765
- package/dist/view-config-utils.test.js +0 -66
- package/dist/view-config-versions.js +0 -47
- package/dist/vitessce-grid-layout/VitessceGridLayout.js +0 -95
- package/dist/vitessce-grid-layout/VitessceGridLayout.test.js +0 -40
- package/dist/vitessce-grid-layout/layout-utils.js +0 -60
- package/dist/vitessce-grid-layout/layout-utils.test.js +0 -146
- package/dist/vitessce-grid-utils.js +0 -140
|
@@ -1,195 +0,0 @@
|
|
|
1
|
-
const schema = {
|
|
2
|
-
$schema: 'http://json-schema.org/draft-07/schema#',
|
|
3
|
-
$id: 'https://github.com/vitessce/vitessce/#cell-sets',
|
|
4
|
-
title: 'Vitessce obs sets data',
|
|
5
|
-
type: 'object',
|
|
6
|
-
definitions: {
|
|
7
|
-
stringArray: {
|
|
8
|
-
type: 'array',
|
|
9
|
-
items: {
|
|
10
|
-
type: 'string',
|
|
11
|
-
},
|
|
12
|
-
},
|
|
13
|
-
stringProbabilityTupleArray: {
|
|
14
|
-
type: 'array',
|
|
15
|
-
items: {
|
|
16
|
-
type: 'array',
|
|
17
|
-
additionalItems: false,
|
|
18
|
-
items: [
|
|
19
|
-
{
|
|
20
|
-
type: 'string',
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
oneOf: [
|
|
24
|
-
{
|
|
25
|
-
type: 'number',
|
|
26
|
-
minimum: 0.0,
|
|
27
|
-
maximum: 1.0,
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
type: 'null',
|
|
31
|
-
},
|
|
32
|
-
],
|
|
33
|
-
},
|
|
34
|
-
],
|
|
35
|
-
},
|
|
36
|
-
},
|
|
37
|
-
colorArray: {
|
|
38
|
-
type: 'array',
|
|
39
|
-
items: {
|
|
40
|
-
type: 'integer',
|
|
41
|
-
minimum: 0,
|
|
42
|
-
maximum: 255,
|
|
43
|
-
},
|
|
44
|
-
minItems: 3,
|
|
45
|
-
maxItems: 3,
|
|
46
|
-
},
|
|
47
|
-
treeNodeLeaf: {
|
|
48
|
-
type: 'object',
|
|
49
|
-
additionalProperties: false,
|
|
50
|
-
required: ['name'],
|
|
51
|
-
properties: {
|
|
52
|
-
name: {
|
|
53
|
-
type: 'string',
|
|
54
|
-
},
|
|
55
|
-
color: {
|
|
56
|
-
$ref: '#/definitions/colorArray',
|
|
57
|
-
},
|
|
58
|
-
set: {
|
|
59
|
-
$ref: '#/definitions/stringArray',
|
|
60
|
-
},
|
|
61
|
-
},
|
|
62
|
-
},
|
|
63
|
-
treeNodeNonLeaf: {
|
|
64
|
-
type: 'object',
|
|
65
|
-
additionalProperties: false,
|
|
66
|
-
required: ['name'],
|
|
67
|
-
properties: {
|
|
68
|
-
name: {
|
|
69
|
-
type: 'string',
|
|
70
|
-
},
|
|
71
|
-
color: {
|
|
72
|
-
$ref: '#/definitions/colorArray',
|
|
73
|
-
},
|
|
74
|
-
children: {
|
|
75
|
-
type: 'array',
|
|
76
|
-
items: {
|
|
77
|
-
$ref: '#/definitions/treeNode',
|
|
78
|
-
},
|
|
79
|
-
},
|
|
80
|
-
},
|
|
81
|
-
},
|
|
82
|
-
treeNode: {
|
|
83
|
-
oneOf: [
|
|
84
|
-
{
|
|
85
|
-
$ref: '#/definitions/treeNodeNonLeaf',
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
$ref: '#/definitions/treeNodeLeaf',
|
|
89
|
-
},
|
|
90
|
-
],
|
|
91
|
-
},
|
|
92
|
-
'version0.1.2': {
|
|
93
|
-
type: 'object',
|
|
94
|
-
additionalProperties: false,
|
|
95
|
-
required: ['version', 'datatype', 'tree'],
|
|
96
|
-
properties: {
|
|
97
|
-
dataset: {
|
|
98
|
-
type: 'string',
|
|
99
|
-
},
|
|
100
|
-
version: {
|
|
101
|
-
type: 'string',
|
|
102
|
-
enum: ['0.1.2'],
|
|
103
|
-
},
|
|
104
|
-
datatype: {
|
|
105
|
-
type: 'string',
|
|
106
|
-
enum: ['cell', 'obs'],
|
|
107
|
-
},
|
|
108
|
-
tree: {
|
|
109
|
-
type: 'array',
|
|
110
|
-
items: {
|
|
111
|
-
$ref: '#/definitions/treeNodeNonLeaf',
|
|
112
|
-
},
|
|
113
|
-
},
|
|
114
|
-
},
|
|
115
|
-
},
|
|
116
|
-
treeNodeLeafProbabilistic: {
|
|
117
|
-
type: 'object',
|
|
118
|
-
additionalProperties: false,
|
|
119
|
-
required: ['name'],
|
|
120
|
-
properties: {
|
|
121
|
-
name: {
|
|
122
|
-
type: 'string',
|
|
123
|
-
},
|
|
124
|
-
color: {
|
|
125
|
-
$ref: '#/definitions/colorArray',
|
|
126
|
-
},
|
|
127
|
-
set: {
|
|
128
|
-
$ref: '#/definitions/stringProbabilityTupleArray',
|
|
129
|
-
},
|
|
130
|
-
},
|
|
131
|
-
},
|
|
132
|
-
treeNodeNonLeafProbabilistic: {
|
|
133
|
-
type: 'object',
|
|
134
|
-
additionalProperties: false,
|
|
135
|
-
required: ['name'],
|
|
136
|
-
properties: {
|
|
137
|
-
name: {
|
|
138
|
-
type: 'string',
|
|
139
|
-
},
|
|
140
|
-
color: {
|
|
141
|
-
$ref: '#/definitions/colorArray',
|
|
142
|
-
},
|
|
143
|
-
children: {
|
|
144
|
-
type: 'array',
|
|
145
|
-
items: {
|
|
146
|
-
$ref: '#/definitions/treeNodeProbabilistic',
|
|
147
|
-
},
|
|
148
|
-
},
|
|
149
|
-
},
|
|
150
|
-
},
|
|
151
|
-
treeNodeProbabilistic: {
|
|
152
|
-
oneOf: [
|
|
153
|
-
{
|
|
154
|
-
$ref: '#/definitions/treeNodeNonLeafProbabilistic',
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
$ref: '#/definitions/treeNodeLeafProbabilistic',
|
|
158
|
-
},
|
|
159
|
-
],
|
|
160
|
-
},
|
|
161
|
-
'version0.1.3': {
|
|
162
|
-
type: 'object',
|
|
163
|
-
additionalProperties: false,
|
|
164
|
-
required: ['version', 'datatype', 'tree'],
|
|
165
|
-
properties: {
|
|
166
|
-
dataset: {
|
|
167
|
-
type: 'string',
|
|
168
|
-
},
|
|
169
|
-
version: {
|
|
170
|
-
type: 'string',
|
|
171
|
-
enum: ['0.1.3'],
|
|
172
|
-
},
|
|
173
|
-
datatype: {
|
|
174
|
-
type: 'string',
|
|
175
|
-
enum: ['cell', 'obs'],
|
|
176
|
-
},
|
|
177
|
-
tree: {
|
|
178
|
-
type: 'array',
|
|
179
|
-
items: {
|
|
180
|
-
$ref: '#/definitions/treeNodeNonLeafProbabilistic',
|
|
181
|
-
},
|
|
182
|
-
},
|
|
183
|
-
},
|
|
184
|
-
},
|
|
185
|
-
},
|
|
186
|
-
oneOf: [
|
|
187
|
-
{
|
|
188
|
-
$ref: '#/definitions/version0.1.2',
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
$ref: '#/definitions/version0.1.3',
|
|
192
|
-
},
|
|
193
|
-
],
|
|
194
|
-
};
|
|
195
|
-
export default schema;
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
const schema = {
|
|
2
|
-
$schema: 'http://json-schema.org/draft-07/schema#',
|
|
3
|
-
$id: 'https://github.com/vitessce/vitessce/#obsSetsTabular',
|
|
4
|
-
title: 'Vitessce obs sets data, tabular format',
|
|
5
|
-
definitions: {
|
|
6
|
-
colorArray: {
|
|
7
|
-
type: 'array',
|
|
8
|
-
items: { type: 'integer', minimum: 0, maximum: 255 },
|
|
9
|
-
minItems: 3,
|
|
10
|
-
maxItems: 3,
|
|
11
|
-
},
|
|
12
|
-
},
|
|
13
|
-
type: 'array',
|
|
14
|
-
items: {
|
|
15
|
-
type: 'object',
|
|
16
|
-
additionalProperties: false,
|
|
17
|
-
required: ['groupName', 'setName', 'obsId'],
|
|
18
|
-
properties: {
|
|
19
|
-
groupName: { type: 'string' },
|
|
20
|
-
setName: { type: 'string' },
|
|
21
|
-
setColor: { $ref: '#/definitions/colorArray' },
|
|
22
|
-
obsId: { type: 'string' },
|
|
23
|
-
predictionScore: {
|
|
24
|
-
oneOf: [
|
|
25
|
-
{
|
|
26
|
-
type: 'number',
|
|
27
|
-
minimum: 0.0,
|
|
28
|
-
maximum: 1.0,
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
type: 'null',
|
|
32
|
-
},
|
|
33
|
-
],
|
|
34
|
-
},
|
|
35
|
-
},
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
export default schema;
|
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
const schema = {
|
|
2
|
-
$schema: 'http://json-schema.org/draft-07/schema#',
|
|
3
|
-
$id: 'https://github.com/vitessce/vitessce/#raster',
|
|
4
|
-
title: 'Vitessce image data',
|
|
5
|
-
type: 'object',
|
|
6
|
-
definitions: {
|
|
7
|
-
transform: {
|
|
8
|
-
type: 'object',
|
|
9
|
-
additionalProperties: false,
|
|
10
|
-
oneOf: [{ required: ['scale', 'translate'] }, { required: ['matrix'] }],
|
|
11
|
-
properties: {
|
|
12
|
-
scale: { type: 'number' },
|
|
13
|
-
translate: {
|
|
14
|
-
type: 'object',
|
|
15
|
-
additionalProperties: false,
|
|
16
|
-
required: ['y', 'x'],
|
|
17
|
-
properties: {
|
|
18
|
-
y: { type: 'number' },
|
|
19
|
-
x: { type: 'number' },
|
|
20
|
-
},
|
|
21
|
-
},
|
|
22
|
-
matrix: {
|
|
23
|
-
type: 'array',
|
|
24
|
-
items: { type: 'number' },
|
|
25
|
-
minItems: 16,
|
|
26
|
-
maxItems: 16,
|
|
27
|
-
},
|
|
28
|
-
},
|
|
29
|
-
},
|
|
30
|
-
dimensions: {
|
|
31
|
-
type: 'array',
|
|
32
|
-
items: {
|
|
33
|
-
type: 'object',
|
|
34
|
-
additionalProperties: false,
|
|
35
|
-
required: ['field', 'type', 'values'],
|
|
36
|
-
properties: {
|
|
37
|
-
field: { type: 'string' },
|
|
38
|
-
type: {
|
|
39
|
-
type: 'string',
|
|
40
|
-
enum: ['quantitative', 'nominal', 'ordinal', 'temporal'],
|
|
41
|
-
},
|
|
42
|
-
values: {
|
|
43
|
-
type: ['array', 'null'],
|
|
44
|
-
items: { type: 'string' },
|
|
45
|
-
},
|
|
46
|
-
},
|
|
47
|
-
},
|
|
48
|
-
},
|
|
49
|
-
metadata: {
|
|
50
|
-
type: 'object',
|
|
51
|
-
additionalProperties: false,
|
|
52
|
-
anyOf: [{ required: ['dimensions', 'isPyramid'] }, { required: ['transform'] }, { required: ['omeTiffOffsetsUrl'] }, { required: ['isBitmask'] }],
|
|
53
|
-
properties: {
|
|
54
|
-
dimensions: { $ref: '#/definitions/dimensions' },
|
|
55
|
-
isPyramid: { type: 'boolean' },
|
|
56
|
-
transform: { $ref: '#/definitions/transform' },
|
|
57
|
-
isBitmask: { type: 'boolean' },
|
|
58
|
-
omeTiffOffsetsUrl: { type: 'string', format: 'uri' },
|
|
59
|
-
},
|
|
60
|
-
},
|
|
61
|
-
requestInit: {
|
|
62
|
-
type: 'object',
|
|
63
|
-
additionalProperties: false,
|
|
64
|
-
required: [],
|
|
65
|
-
properties: {
|
|
66
|
-
method: {
|
|
67
|
-
type: 'string',
|
|
68
|
-
},
|
|
69
|
-
headers: {
|
|
70
|
-
type: 'object',
|
|
71
|
-
},
|
|
72
|
-
body: {
|
|
73
|
-
type: 'string',
|
|
74
|
-
},
|
|
75
|
-
mode: {
|
|
76
|
-
type: 'string',
|
|
77
|
-
},
|
|
78
|
-
credentials: {
|
|
79
|
-
type: 'string',
|
|
80
|
-
},
|
|
81
|
-
cache: {
|
|
82
|
-
type: 'string',
|
|
83
|
-
},
|
|
84
|
-
redirect: {
|
|
85
|
-
type: 'string',
|
|
86
|
-
},
|
|
87
|
-
referrer: {
|
|
88
|
-
type: 'string',
|
|
89
|
-
},
|
|
90
|
-
integrity: {
|
|
91
|
-
type: 'string',
|
|
92
|
-
},
|
|
93
|
-
},
|
|
94
|
-
},
|
|
95
|
-
image: {
|
|
96
|
-
type: 'object',
|
|
97
|
-
additionalProperties: false,
|
|
98
|
-
required: ['name', 'url', 'type'],
|
|
99
|
-
properties: {
|
|
100
|
-
name: { type: 'string' },
|
|
101
|
-
url: { type: 'string', format: 'uri' },
|
|
102
|
-
type: { type: 'string' },
|
|
103
|
-
metadata: { $ref: '#/definitions/metadata' },
|
|
104
|
-
requestInit: { $ref: '#/definitions/requestInit' },
|
|
105
|
-
},
|
|
106
|
-
},
|
|
107
|
-
},
|
|
108
|
-
additionalProperties: false,
|
|
109
|
-
required: ['schemaVersion', 'images'],
|
|
110
|
-
properties: {
|
|
111
|
-
schemaVersion: { type: 'string' },
|
|
112
|
-
usePhysicalSizeScaling: { type: 'boolean', description: 'Default is false: passing true in will infer scaling from the reported physcial size' },
|
|
113
|
-
renderLayers: { type: 'array', items: { type: 'string' } },
|
|
114
|
-
images: {
|
|
115
|
-
type: 'array',
|
|
116
|
-
items: { $ref: '#/definitions/image' },
|
|
117
|
-
},
|
|
118
|
-
},
|
|
119
|
-
};
|
|
120
|
-
export default schema;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React, { useRef } from 'react';
|
|
3
|
-
import { makeStyles } from '@material-ui/core/styles';
|
|
4
|
-
import Paper from '@material-ui/core/Paper';
|
|
5
|
-
import Popper from '@material-ui/core/Popper';
|
|
6
|
-
import IconButton from '@material-ui/core/IconButton';
|
|
7
|
-
import MenuList from '@material-ui/core/MenuList';
|
|
8
|
-
import ClickAwayListener from '@material-ui/core/ClickAwayListener';
|
|
9
|
-
import Fade from '@material-ui/core/Fade';
|
|
10
|
-
import { useVitessceContainer } from '../hooks';
|
|
11
|
-
const useStyles = makeStyles(() => ({
|
|
12
|
-
paper: {
|
|
13
|
-
maxHeight: 200,
|
|
14
|
-
overflow: 'auto',
|
|
15
|
-
},
|
|
16
|
-
container: {
|
|
17
|
-
position: 'relative',
|
|
18
|
-
left: 0,
|
|
19
|
-
top: 0,
|
|
20
|
-
},
|
|
21
|
-
}));
|
|
22
|
-
export function PopperMenu(props) {
|
|
23
|
-
const { buttonIcon, open, setOpen, children, buttonClassName, placement = 'bottom-end', } = props;
|
|
24
|
-
const classes = useStyles();
|
|
25
|
-
const anchorRef = useRef();
|
|
26
|
-
const handleClick = () => {
|
|
27
|
-
setOpen(prev => !prev);
|
|
28
|
-
};
|
|
29
|
-
const handleClose = () => {
|
|
30
|
-
setOpen(false);
|
|
31
|
-
};
|
|
32
|
-
const id = open ? 'v-popover-menu' : undefined;
|
|
33
|
-
const getTooltipContainer = useVitessceContainer(anchorRef);
|
|
34
|
-
return (_jsxs("div", { ref: anchorRef, className: classes.container, children: [_jsx(IconButton, { "aria-describedby": id, onClick: handleClick, size: "small", className: buttonClassName, children: buttonIcon }), _jsx(Popper, { id: id, open: open, anchorEl: anchorRef && anchorRef.current, container: getTooltipContainer, onClose: handleClose, placement: placement, transition: true, children: ({ TransitionProps }) => (_jsx(ClickAwayListener, { onClickAway: handleClose, children: _jsx(Fade, { ...TransitionProps, timeout: 100, children: _jsx(Paper, { elevation: 4, className: classes.paper, children: _jsx(MenuList, { children: children }) }) }) })) })] }));
|
|
35
|
-
}
|
|
@@ -1,211 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from '@material-ui/core/styles';
|
|
2
|
-
export const useVitessceContainerStyles = makeStyles(theme => ({
|
|
3
|
-
vitessceContainer: {
|
|
4
|
-
position: 'relative',
|
|
5
|
-
margin: '0',
|
|
6
|
-
textAlign: 'left',
|
|
7
|
-
backgroundColor: theme.palette.gridLayoutBackground,
|
|
8
|
-
'& div': {
|
|
9
|
-
fontFamily: '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"',
|
|
10
|
-
fontSize: '1rem',
|
|
11
|
-
fontWeight: '400',
|
|
12
|
-
lineHeight: '1.5',
|
|
13
|
-
textAlign: 'left',
|
|
14
|
-
},
|
|
15
|
-
'& p': {
|
|
16
|
-
marginTop: '0',
|
|
17
|
-
marginBottom: '1rem',
|
|
18
|
-
},
|
|
19
|
-
'& *, ::after, ::before': {
|
|
20
|
-
boxSizing: 'border-box',
|
|
21
|
-
},
|
|
22
|
-
// Manually converted styles from 'react-grid-layout/css/styles.css',
|
|
23
|
-
// using https://cssinjs.org/jss-plugin-global/?v=v10.9.2
|
|
24
|
-
// so that no CSS or SCSS import is required.
|
|
25
|
-
'@global .react-grid-layout': {
|
|
26
|
-
transition: 'height 200ms ease',
|
|
27
|
-
// Custom
|
|
28
|
-
height: 'auto',
|
|
29
|
-
position: 'absolute',
|
|
30
|
-
width: '100%',
|
|
31
|
-
},
|
|
32
|
-
'@global .react-grid-item': {
|
|
33
|
-
transition: 'all 200ms ease',
|
|
34
|
-
transitionProperty: 'left, top',
|
|
35
|
-
// Custom
|
|
36
|
-
flexDirection: 'column!important',
|
|
37
|
-
display: 'flex!important',
|
|
38
|
-
/* So the resize handle position looks correct: */
|
|
39
|
-
paddingRight: '10px',
|
|
40
|
-
},
|
|
41
|
-
'@global .react-grid-item img': {
|
|
42
|
-
pointerEvents: 'none',
|
|
43
|
-
userSelect: 'none',
|
|
44
|
-
},
|
|
45
|
-
'@global .react-grid-item.cssTransforms': {
|
|
46
|
-
transitionProperty: 'transform',
|
|
47
|
-
},
|
|
48
|
-
'@global .react-grid-item.resizing': {
|
|
49
|
-
zIndex: '1',
|
|
50
|
-
willChange: 'width, height',
|
|
51
|
-
},
|
|
52
|
-
'@global .react-grid-item.react-draggable-dragging': {
|
|
53
|
-
transition: 'none',
|
|
54
|
-
zIndex: '3',
|
|
55
|
-
willChange: 'transform',
|
|
56
|
-
},
|
|
57
|
-
'@global .react-grid-item.dropping': {
|
|
58
|
-
visibility: 'hidden',
|
|
59
|
-
},
|
|
60
|
-
'@global .react-grid-item.react-grid-placeholder': {
|
|
61
|
-
background: 'red',
|
|
62
|
-
opacity: '0.2',
|
|
63
|
-
transitionDuration: '100ms',
|
|
64
|
-
zIndex: '2',
|
|
65
|
-
userSelect: 'none',
|
|
66
|
-
},
|
|
67
|
-
'@global .react-grid-item > .react-resizable-handle': {
|
|
68
|
-
position: 'absolute',
|
|
69
|
-
width: '20px',
|
|
70
|
-
height: '20px',
|
|
71
|
-
},
|
|
72
|
-
'@global .react-grid-item > .react-resizable-handle::after': {
|
|
73
|
-
content: '""',
|
|
74
|
-
position: 'absolute',
|
|
75
|
-
right: '3px',
|
|
76
|
-
bottom: '3px',
|
|
77
|
-
width: '5px',
|
|
78
|
-
height: '5px',
|
|
79
|
-
borderRight: '2px solid rgba(0, 0, 0, 0.4)',
|
|
80
|
-
borderBottom: '2px solid rgba(0, 0, 0, 0.4)',
|
|
81
|
-
},
|
|
82
|
-
'@global .react-resizable-hide > .react-resizable-handle': {
|
|
83
|
-
display: 'none',
|
|
84
|
-
},
|
|
85
|
-
'@global .react-grid-item > .react-resizable-handle.react-resizable-handle-sw': {
|
|
86
|
-
bottom: '0',
|
|
87
|
-
left: '0',
|
|
88
|
-
cursor: 'sw-resize',
|
|
89
|
-
transform: 'rotate(90deg)',
|
|
90
|
-
},
|
|
91
|
-
'@global .react-grid-item > .react-resizable-handle.react-resizable-handle-se': {
|
|
92
|
-
bottom: '0',
|
|
93
|
-
right: '0',
|
|
94
|
-
cursor: 'se-resize',
|
|
95
|
-
},
|
|
96
|
-
'@global .react-grid-item > .react-resizable-handle.react-resizable-handle-nw': {
|
|
97
|
-
top: '0',
|
|
98
|
-
left: '0',
|
|
99
|
-
cursor: 'nw-resize',
|
|
100
|
-
transform: 'rotate(180deg)',
|
|
101
|
-
},
|
|
102
|
-
'@global .react-grid-item > .react-resizable-handle.react-resizable-handle-ne': {
|
|
103
|
-
top: '0',
|
|
104
|
-
right: '0',
|
|
105
|
-
cursor: 'ne-resize',
|
|
106
|
-
transform: 'rotate(270deg)',
|
|
107
|
-
},
|
|
108
|
-
'@global .react-grid-item > .react-resizable-handle.react-resizable-handle-w': {
|
|
109
|
-
top: '50%',
|
|
110
|
-
marginTop: '-10px',
|
|
111
|
-
cursor: 'ew-resize',
|
|
112
|
-
left: '0',
|
|
113
|
-
transform: 'rotate(135deg)',
|
|
114
|
-
},
|
|
115
|
-
'@global .react-grid-item > .react-resizable-handle.react-resizable-handle-e': {
|
|
116
|
-
top: '50%',
|
|
117
|
-
marginTop: '-10px',
|
|
118
|
-
cursor: 'ew-resize',
|
|
119
|
-
right: '0',
|
|
120
|
-
transform: 'rotate(315deg)',
|
|
121
|
-
},
|
|
122
|
-
'@global .react-grid-item > .react-resizable-handle.react-resizable-handle-n': {
|
|
123
|
-
left: '50%',
|
|
124
|
-
marginLeft: '-10px',
|
|
125
|
-
cursor: 'ns-resize',
|
|
126
|
-
top: '0',
|
|
127
|
-
transform: 'rotate(225deg)',
|
|
128
|
-
},
|
|
129
|
-
'@global .react-grid-item > .react-resizable-handle.react-resizable-handle-s': {
|
|
130
|
-
left: '50%',
|
|
131
|
-
marginLeft: '-10px',
|
|
132
|
-
cursor: 'ns-resize',
|
|
133
|
-
bottom: '0',
|
|
134
|
-
transform: 'rotate(45deg)',
|
|
135
|
-
},
|
|
136
|
-
// Manually converted styles from 'react-resizable/css/styles.css',
|
|
137
|
-
'@global .react-resizable': {
|
|
138
|
-
position: 'relative',
|
|
139
|
-
},
|
|
140
|
-
'@global .react-resizable-handle': {
|
|
141
|
-
position: 'absolute',
|
|
142
|
-
width: '20px',
|
|
143
|
-
height: '20px',
|
|
144
|
-
backgroundRepeat: 'no-repeat',
|
|
145
|
-
backgroundOrigin: 'content-box',
|
|
146
|
-
boxSizing: 'border-box',
|
|
147
|
-
backgroundImage: "url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+')",
|
|
148
|
-
backgroundPosition: 'bottom right',
|
|
149
|
-
padding: '0 3px 3px 0',
|
|
150
|
-
},
|
|
151
|
-
'@global .react-resizable-handle-sw': {
|
|
152
|
-
bottom: '0',
|
|
153
|
-
left: '0',
|
|
154
|
-
cursor: 'sw-resize',
|
|
155
|
-
transform: 'rotate(90deg)',
|
|
156
|
-
},
|
|
157
|
-
'@global .react-resizable-handle-se': {
|
|
158
|
-
bottom: '0',
|
|
159
|
-
right: '0',
|
|
160
|
-
cursor: 'se-resize',
|
|
161
|
-
},
|
|
162
|
-
'@global .react-resizable-handle-nw': {
|
|
163
|
-
top: '0',
|
|
164
|
-
left: '0',
|
|
165
|
-
cursor: 'nw-resize',
|
|
166
|
-
transform: 'rotate(180deg)',
|
|
167
|
-
},
|
|
168
|
-
'@global .react-resizable-handle-ne': {
|
|
169
|
-
top: '0',
|
|
170
|
-
right: '0',
|
|
171
|
-
cursor: 'ne-resize',
|
|
172
|
-
transform: 'rotate(270deg)',
|
|
173
|
-
},
|
|
174
|
-
'@global .react-resizable-handle-w': {
|
|
175
|
-
top: '50%',
|
|
176
|
-
marginTop: '-10px',
|
|
177
|
-
cursor: 'ew-resize',
|
|
178
|
-
left: '0',
|
|
179
|
-
transform: 'rotate(135deg)',
|
|
180
|
-
},
|
|
181
|
-
'@global .react-resizable-handle-e': {
|
|
182
|
-
top: '50%',
|
|
183
|
-
marginTop: '-10px',
|
|
184
|
-
cursor: 'ew-resize',
|
|
185
|
-
right: '0',
|
|
186
|
-
transform: 'rotate(315deg)',
|
|
187
|
-
},
|
|
188
|
-
'@global .react-resizable-handle-n': {
|
|
189
|
-
left: '50%',
|
|
190
|
-
marginLeft: '-10px',
|
|
191
|
-
cursor: 'ns-resize',
|
|
192
|
-
top: '0',
|
|
193
|
-
transform: 'rotate(225deg)',
|
|
194
|
-
},
|
|
195
|
-
'@global .react-resizable-handle-s': {
|
|
196
|
-
left: '50%',
|
|
197
|
-
marginLeft: '-10px',
|
|
198
|
-
cursor: 'ns-resize',
|
|
199
|
-
bottom: '0',
|
|
200
|
-
transform: 'rotate(45deg)',
|
|
201
|
-
},
|
|
202
|
-
// Custom
|
|
203
|
-
'@global .react-draggable-transparent-selection .react-grid-item': {
|
|
204
|
-
/* These styles prevent text selection during resize drag interactions.
|
|
205
|
-
The react-draggable-transparent-selection class is added to the body
|
|
206
|
-
element during resizing and removed after resizing has finished.
|
|
207
|
-
Not part of mixin because acts outside of .vitessce-container. */
|
|
208
|
-
userSelect: 'none !important',
|
|
209
|
-
},
|
|
210
|
-
},
|
|
211
|
-
}));
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import { createTheme } from '@material-ui/core/styles';
|
|
2
|
-
import { grey } from '@material-ui/core/colors';
|
|
3
|
-
const globalColors = {
|
|
4
|
-
white: '#FFFFFF',
|
|
5
|
-
grayLight: '#D3D3D3',
|
|
6
|
-
grayMid: '#808080',
|
|
7
|
-
grayDark: '#555555',
|
|
8
|
-
black: '#000000',
|
|
9
|
-
grayDarkL5: 'rgb(98, 98, 98)',
|
|
10
|
-
grayDarkD15: 'rgb(47, 47, 47)',
|
|
11
|
-
grayMidL10: 'rgb(154, 154, 154)',
|
|
12
|
-
grayLightL10: 'rgb(237, 237, 237)', // lighten(map-get($global-colors, "gray-light"), 10%);
|
|
13
|
-
};
|
|
14
|
-
export const muiTheme = {
|
|
15
|
-
dark: createTheme({
|
|
16
|
-
palette: {
|
|
17
|
-
type: 'dark',
|
|
18
|
-
primary: grey,
|
|
19
|
-
secondary: grey,
|
|
20
|
-
primaryBackground: '#222222',
|
|
21
|
-
primaryBackgroundHighlight: '#000000',
|
|
22
|
-
primaryBackgroundInput: '#D3D3D3',
|
|
23
|
-
primaryBackgroundDim: '#333333',
|
|
24
|
-
primaryBackgroundLight: '#757575',
|
|
25
|
-
primaryForeground: '#D3D3D3',
|
|
26
|
-
primaryForegroundL5: 'rgb(224, 224, 224)',
|
|
27
|
-
primaryForegroundL10: 'rgb(237, 237, 237)',
|
|
28
|
-
primaryForegroundD15: 'rgb(173, 173, 173)',
|
|
29
|
-
primaryForegroundDim: '#000000',
|
|
30
|
-
primaryForegroundActive: '#9bb7d6',
|
|
31
|
-
secondaryBackground: '#000000',
|
|
32
|
-
secondaryBackgroundDim: '#444444',
|
|
33
|
-
secondaryForeground: '#D3D3D3',
|
|
34
|
-
gridLayoutBackground: '#333333',
|
|
35
|
-
cardBorder: 'rgba(0, 0, 0, 0.125)',
|
|
36
|
-
...globalColors,
|
|
37
|
-
},
|
|
38
|
-
props: {
|
|
39
|
-
MuiButtonBase: {
|
|
40
|
-
disableRipple: true,
|
|
41
|
-
},
|
|
42
|
-
},
|
|
43
|
-
}),
|
|
44
|
-
light: createTheme({
|
|
45
|
-
palette: {
|
|
46
|
-
type: 'light',
|
|
47
|
-
primary: grey,
|
|
48
|
-
secondary: grey,
|
|
49
|
-
primaryBackground: '#F1F1F1',
|
|
50
|
-
primaryBackgroundHighlight: '#FFFFFF',
|
|
51
|
-
primaryBackgroundInput: '#FFFFFF',
|
|
52
|
-
primaryBackgroundDim: '#8A8A8A',
|
|
53
|
-
primaryBackgroundLight: '#e0e0e0',
|
|
54
|
-
primaryForeground: '#333333',
|
|
55
|
-
primaryForegroundL5: 'rgb(64, 64, 64)',
|
|
56
|
-
primaryForegroundL10: 'rgb(77, 77, 77)',
|
|
57
|
-
primaryForegroundD15: 'rgb(13, 13, 13)',
|
|
58
|
-
primaryForegroundDim: '#808080',
|
|
59
|
-
primaryForegroundActive: '#0074D9',
|
|
60
|
-
secondaryBackground: '#F1F1F1',
|
|
61
|
-
secondaryBackgroundDim: '#C0C0C0',
|
|
62
|
-
secondaryForeground: '#222222',
|
|
63
|
-
gridLayoutBackground: '#FFFFFF',
|
|
64
|
-
cardBorder: 'rgba(241, 241, 241, 0.125)',
|
|
65
|
-
...globalColors,
|
|
66
|
-
},
|
|
67
|
-
props: {
|
|
68
|
-
MuiButtonBase: {
|
|
69
|
-
disableRipple: true,
|
|
70
|
-
},
|
|
71
|
-
},
|
|
72
|
-
}),
|
|
73
|
-
};
|