@map-colonies/react-components 3.8.1 → 3.10.2
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/.env +1 -0
- package/.storybook/main.js +2 -5
- package/CHANGELOG.md +54 -0
- package/dist/assets/img/dragIcon.png +0 -0
- package/dist/assets/img/dragIconLight.png +0 -0
- package/dist/assets/img/glyphicons_067_cleaning.png +0 -0
- package/dist/assets/img/glyphicons_094_vector_path_square.png +0 -0
- package/dist/assets/img/glyphicons_095_vector_path_circle.png +0 -0
- package/dist/assets/img/glyphicons_096_vector_path_polygon.png +0 -0
- package/dist/assets/img/glyphicons_097_vector_path_line.png +0 -0
- package/dist/assets/img/glyphicons_242_google_maps.png +0 -0
- package/dist/assets/img/map-marker.gif +0 -0
- package/dist/autocomplete/autocomplete.css +25 -0
- package/dist/autocomplete/autocomplete.d.ts +33 -0
- package/dist/autocomplete/autocomplete.js +480 -0
- package/dist/autocomplete/index.d.ts +1 -0
- package/dist/autocomplete/index.js +5 -0
- package/dist/box/box.d.ts +3 -0
- package/dist/box/box.js +35 -0
- package/dist/box/index.d.ts +1 -0
- package/dist/box/index.js +5 -0
- package/dist/cesium-map/data-sources/custom.data-source.d.ts +5 -0
- package/dist/cesium-map/data-sources/custom.data-source.js +23 -0
- package/dist/cesium-map/data-sources/drawings.data-source.d.ts +34 -0
- package/dist/cesium-map/data-sources/drawings.data-source.js +187 -0
- package/dist/cesium-map/data-sources/index.d.ts +2 -0
- package/dist/cesium-map/data-sources/index.js +14 -0
- package/dist/cesium-map/entities/entity.d.ts +5 -0
- package/dist/cesium-map/entities/entity.description.d.ts +6 -0
- package/dist/cesium-map/entities/entity.description.js +27 -0
- package/dist/cesium-map/entities/entity.js +23 -0
- package/dist/cesium-map/entities/graphics/polygon.graphics.d.ts +5 -0
- package/dist/cesium-map/entities/graphics/polygon.graphics.js +23 -0
- package/dist/cesium-map/entities/graphics/polyline.graphics.d.ts +5 -0
- package/dist/cesium-map/entities/graphics/polyline.graphics.js +23 -0
- package/dist/cesium-map/entities/graphics/rectangle.graphics.d.ts +5 -0
- package/dist/cesium-map/entities/graphics/rectangle.graphics.js +23 -0
- package/dist/cesium-map/entities/index.d.ts +4 -0
- package/dist/cesium-map/entities/index.js +16 -0
- package/dist/cesium-map/index.d.ts +7 -0
- package/dist/cesium-map/index.js +19 -0
- package/dist/cesium-map/layers/3d.tileset.d.ts +7 -0
- package/dist/cesium-map/layers/3d.tileset.js +39 -0
- package/dist/cesium-map/layers/3d.tileset.update.d.ts +1 -0
- package/dist/cesium-map/layers/3d.tileset.update.js +5 -0
- package/dist/cesium-map/layers/geojson.layer.d.ts +5 -0
- package/dist/cesium-map/layers/geojson.layer.js +23 -0
- package/dist/cesium-map/layers/imagery.layer.d.ts +6 -0
- package/dist/cesium-map/layers/imagery.layer.js +64 -0
- package/dist/cesium-map/layers/index.d.ts +7 -0
- package/dist/cesium-map/layers/index.js +19 -0
- package/dist/cesium-map/layers/osm.layer.d.ts +9 -0
- package/dist/cesium-map/layers/osm.layer.js +36 -0
- package/dist/cesium-map/layers/wms.layer.d.ts +9 -0
- package/dist/cesium-map/layers/wms.layer.js +36 -0
- package/dist/cesium-map/layers/wmts.layer.d.ts +9 -0
- package/dist/cesium-map/layers/wmts.layer.js +36 -0
- package/dist/cesium-map/layers/xyz.layer.d.ts +9 -0
- package/dist/cesium-map/layers/xyz.layer.js +36 -0
- package/dist/cesium-map/layers-manager.d.ts +47 -0
- package/dist/cesium-map/layers-manager.js +228 -0
- package/dist/cesium-map/map.css +54 -0
- package/dist/cesium-map/map.d.ts +46 -0
- package/dist/cesium-map/map.js +273 -0
- package/dist/cesium-map/map.types.d.ts +8 -0
- package/dist/cesium-map/map.types.js +12 -0
- package/dist/cesium-map/proxied.types.d.ts +19 -0
- package/dist/cesium-map/proxied.types.js +89 -0
- package/dist/cesium-map/settings/base-maps.css +37 -0
- package/dist/cesium-map/settings/base-maps.d.ts +7 -0
- package/dist/cesium-map/settings/base-maps.js +78 -0
- package/dist/cesium-map/settings/scene-modes.css +19 -0
- package/dist/cesium-map/settings/scene-modes.d.ts +7 -0
- package/dist/cesium-map/settings/scene-modes.js +65 -0
- package/dist/cesium-map/settings/settings.css +49 -0
- package/dist/cesium-map/settings/settings.d.ts +23 -0
- package/dist/cesium-map/settings/settings.js +79 -0
- package/dist/cesium-map/terrain-providers/custom/dummy-quantized-mesh-tile.d.ts +3 -0
- package/dist/cesium-map/terrain-providers/custom/dummy-quantized-mesh-tile.js +245 -0
- package/dist/cesium-map/terrain-providers/custom/quantized-mesh-decoder.d.ts +9 -0
- package/dist/cesium-map/terrain-providers/custom/quantized-mesh-decoder.js +202 -0
- package/dist/cesium-map/terrain-providers/custom/quantized-mesh-terrain-provider.d.ts +50 -0
- package/dist/cesium-map/terrain-providers/custom/quantized-mesh-terrain-provider.js +136 -0
- package/dist/cesium-map/tools/cesium/primitives-conversions.cesium.d.ts +2 -0
- package/dist/cesium-map/tools/cesium/primitives-conversions.cesium.js +38 -0
- package/dist/cesium-map/tools/coordinates-tracker.tool.css +11 -0
- package/dist/cesium-map/tools/coordinates-tracker.tool.d.ts +7 -0
- package/dist/cesium-map/tools/coordinates-tracker.tool.js +78 -0
- package/dist/cesium-map/tools/draw/drawHelper.css +101 -0
- package/dist/cesium-map/tools/draw/drawHelper.d.ts +28 -0
- package/dist/cesium-map/tools/draw/drawHelper.js +1694 -0
- package/dist/cesium-map/tools/geojson/geojson-to-primitive.d.ts +4 -0
- package/dist/cesium-map/tools/geojson/geojson-to-primitive.js +41 -0
- package/dist/cesium-map/tools/geojson/index.d.ts +2 -0
- package/dist/cesium-map/tools/geojson/index.js +14 -0
- package/dist/cesium-map/tools/geojson/point.geojson.d.ts +3 -0
- package/dist/cesium-map/tools/geojson/point.geojson.js +21 -0
- package/dist/cesium-map/tools/geojson/polygon.geojson.d.ts +3 -0
- package/dist/cesium-map/tools/geojson/polygon.geojson.js +24 -0
- package/dist/cesium-map/tools/geojson/rectangle.geojson.d.ts +3 -0
- package/dist/cesium-map/tools/geojson/rectangle.geojson.js +44 -0
- package/dist/cesium-map/tools/inspector.tool.d.ts +4 -0
- package/dist/cesium-map/tools/inspector.tool.js +33 -0
- package/dist/cesium-map/tools/scale-tracker.tool.css +16 -0
- package/dist/cesium-map/tools/scale-tracker.tool.d.ts +8 -0
- package/dist/cesium-map/tools/scale-tracker.tool.js +158 -0
- package/dist/cesium-map/tools/terranian-height.tool.d.ts +4 -0
- package/dist/cesium-map/tools/terranian-height.tool.js +113 -0
- package/dist/cssbaseline/cssbaseline.d.ts +5 -0
- package/dist/cssbaseline/cssbaseline.js +41 -0
- package/dist/cssbaseline/index.d.ts +1 -0
- package/dist/cssbaseline/index.js +6 -0
- package/dist/date-picker/date-picker.css +9 -0
- package/dist/date-picker/date-picker.d.ts +14 -0
- package/dist/date-picker/date-picker.js +78 -0
- package/dist/date-picker/index.d.ts +1 -0
- package/dist/date-picker/index.js +13 -0
- package/dist/date-range-picker/date-range-picker.css +9 -0
- package/dist/date-range-picker/date-range-picker.d.ts +26 -0
- package/dist/date-range-picker/date-range-picker.form-control.css +3 -0
- package/dist/date-range-picker/date-range-picker.form-control.d.ts +28 -0
- package/dist/date-range-picker/date-range-picker.form-control.js +95 -0
- package/dist/date-range-picker/date-range-picker.js +104 -0
- package/dist/date-range-picker/index.d.ts +2 -0
- package/dist/date-range-picker/index.js +14 -0
- package/dist/file-picker/file-picker.css +62 -0
- package/dist/file-picker/file-picker.d.ts +276 -0
- package/dist/file-picker/file-picker.js +151 -0
- package/dist/file-picker/fs-map.json +1557 -0
- package/dist/file-picker/index.d.ts +2 -0
- package/dist/file-picker/index.js +14 -0
- package/dist/file-picker/localization.d.ts +11 -0
- package/dist/file-picker/localization.js +124 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +23 -16
- package/dist/map-filter-container/container-map.css +5 -0
- package/dist/map-filter-container/container-map.d.ts +11 -0
- package/dist/map-filter-container/container-map.js +31 -0
- package/dist/map-filter-container/index.d.ts +1 -0
- package/dist/map-filter-container/index.js +13 -0
- package/dist/map-filter-container/map-filter-container.d.ts +9 -0
- package/dist/map-filter-container/map-filter-container.js +78 -0
- package/dist/map-filter-container/polygon-selection-ui.d.ts +12 -0
- package/dist/map-filter-container/polygon-selection-ui.js +62 -0
- package/dist/models/defaults.d.ts +28 -0
- package/dist/models/defaults.js +32 -0
- package/dist/models/enums.d.ts +14 -0
- package/dist/models/enums.js +20 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +13 -0
- package/dist/ol-map/feature.d.ts +6 -0
- package/dist/ol-map/feature.js +20 -0
- package/dist/ol-map/index.d.ts +6 -0
- package/dist/ol-map/index.js +18 -0
- package/dist/ol-map/interactions/draw.d.ts +8 -0
- package/dist/ol-map/interactions/draw.js +44 -0
- package/dist/ol-map/interactions/index.d.ts +1 -0
- package/dist/ol-map/interactions/index.js +13 -0
- package/dist/ol-map/layers/index.d.ts +3 -0
- package/dist/ol-map/layers/index.js +15 -0
- package/dist/ol-map/layers/tile-layer.d.ts +9 -0
- package/dist/ol-map/layers/tile-layer.js +48 -0
- package/dist/ol-map/layers/vector-layer.d.ts +4 -0
- package/dist/ol-map/layers/vector-layer.js +48 -0
- package/dist/ol-map/layers/vector-tile-layer.d.ts +10 -0
- package/dist/ol-map/layers/vector-tile-layer.js +66 -0
- package/dist/ol-map/map.css +17 -0
- package/dist/ol-map/map.d.ts +14 -0
- package/dist/ol-map/map.js +117 -0
- package/dist/ol-map/source/index.d.ts +6 -0
- package/dist/ol-map/source/index.js +18 -0
- package/dist/ol-map/source/mvt.d.ts +11 -0
- package/dist/ol-map/source/mvt.js +37 -0
- package/dist/ol-map/source/osm.d.ts +2 -0
- package/dist/ol-map/source/osm.js +14 -0
- package/dist/ol-map/source/vector-source.d.ts +4 -0
- package/dist/ol-map/source/vector-source.js +45 -0
- package/dist/ol-map/source/wms.d.ts +17 -0
- package/dist/ol-map/source/wms.js +30 -0
- package/dist/ol-map/source/wmts.d.ts +21 -0
- package/dist/ol-map/source/wmts.js +59 -0
- package/dist/ol-map/source/xyz.d.ts +12 -0
- package/dist/ol-map/source/xyz.js +27 -0
- package/dist/ol-map/style.d.ts +4 -0
- package/dist/ol-map/style.js +22 -0
- package/dist/popover/index.d.ts +1 -0
- package/dist/popover/index.js +5 -0
- package/dist/popover/popover.d.ts +3 -0
- package/dist/popover/popover.js +35 -0
- package/dist/smart-table/__mock-data__/smartTableMocks.d.ts +7 -0
- package/dist/smart-table/__mock-data__/smartTableMocks.js +17 -0
- package/dist/smart-table/index.d.ts +2 -0
- package/dist/smart-table/index.js +14 -0
- package/dist/smart-table/smart-table-head.d.ts +11 -0
- package/dist/smart-table/smart-table-head.js +22 -0
- package/dist/smart-table/smart-table-row.d.ts +12 -0
- package/dist/smart-table/smart-table-row.js +46 -0
- package/dist/smart-table/smart-table-types.d.ts +9 -0
- package/dist/smart-table/smart-table-types.js +2 -0
- package/dist/smart-table/smart-table.d.ts +17 -0
- package/dist/smart-table/smart-table.js +51 -0
- package/dist/theme/index.d.ts +1 -0
- package/dist/theme/index.js +13 -0
- package/dist/theme/theme.d.ts +8 -0
- package/dist/theme/theme.js +124 -0
- package/dist/utils/map.d.ts +3 -0
- package/dist/utils/map.js +21 -0
- package/dist/utils/projections.d.ts +6 -0
- package/dist/utils/projections.js +10 -0
- package/dist/utils/story.d.ts +12 -0
- package/dist/utils/story.js +2 -0
- package/package.json +103 -100
- package/public/assets/img/map-marker.gif +0 -0
- package/src/lib/cesium-map/map.tsx +22 -12
- package/src/lib/cesium-map/terrain-providers/terrain-provider-heights-tool.stories.tsx +155 -0
- package/src/lib/cesium-map/terrain-providers/terrain-provider.stories.tsx +5 -3
- package/src/lib/cesium-map/tools/coordinates-tracker.tool.tsx +1 -1
- package/src/lib/cesium-map/tools/inspector.tool.tsx +15 -0
- package/src/lib/cesium-map/tools/terranian-height.tool.tsx +167 -0
- package/src/lib/date-range-picker/{stories/DateRangePicker.stories.tsx → date-range-picker.stories.tsx} +5 -5
- package/src/lib/file-picker/file-picker.css +62 -0
- package/src/lib/file-picker/file-picker.stories.tsx +447 -0
- package/src/lib/file-picker/file-picker.tsx +180 -0
- package/src/lib/file-picker/fs-map.json +1557 -0
- package/src/lib/file-picker/index.ts +2 -0
- package/src/lib/file-picker/localization.ts +164 -0
- package/src/lib/index.ts +1 -0
- package/src/lib/models/enums.ts +1 -0
- package/src/lib/smart-table/smart-table-row.spec.tsx +1 -1
- package/tsbuildconfig.json +2 -2
- package/tsconfig.json +2 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("./file-picker"), exports);
|
|
14
|
+
__exportStar(require("./localization"), exports);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ChonkyFormatters, FileData, I18nConfig } from 'chonky';
|
|
2
|
+
import { IntlShape } from 'react-intl';
|
|
3
|
+
export interface FilePickerFormatters extends ChonkyFormatters {
|
|
4
|
+
formatFileSize: (intl: IntlShape | null, file: FileData | null) => string | null;
|
|
5
|
+
}
|
|
6
|
+
export declare const defaultFormatters: FilePickerFormatters;
|
|
7
|
+
interface ILocalization {
|
|
8
|
+
[key: string]: I18nConfig;
|
|
9
|
+
}
|
|
10
|
+
declare const localization: ILocalization;
|
|
11
|
+
export default localization;
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
|
+
};
|
|
16
|
+
var _a, _b, _c;
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.defaultFormatters = void 0;
|
|
19
|
+
/* eslint-disable */
|
|
20
|
+
var chonky_1 = require("chonky");
|
|
21
|
+
var filesize_1 = __importDefault(require("filesize"));
|
|
22
|
+
var models_1 = require("../models");
|
|
23
|
+
exports.defaultFormatters = {
|
|
24
|
+
formatFileModDate: function (intl, file) {
|
|
25
|
+
var safeModDate = chonky_1.FileHelper.getModDate(file);
|
|
26
|
+
if (safeModDate) {
|
|
27
|
+
return intl.formatDate(safeModDate, {
|
|
28
|
+
dateStyle: 'short',
|
|
29
|
+
timeStyle: 'short',
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
else {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
formatFileSize: function (_intl, file) {
|
|
37
|
+
if (!file || typeof file.size !== 'number')
|
|
38
|
+
return null;
|
|
39
|
+
var size = file.size;
|
|
40
|
+
var sizeData = filesize_1.default(size, {
|
|
41
|
+
bits: false,
|
|
42
|
+
output: 'object',
|
|
43
|
+
});
|
|
44
|
+
if (sizeData.symbol === 'B') {
|
|
45
|
+
// eslint-disable-next-line @typescript-eslint/no-magic-numbers
|
|
46
|
+
return Math.round(sizeData.value / 10) / 100.0 + " KB";
|
|
47
|
+
}
|
|
48
|
+
else if (sizeData.symbol === 'KB') {
|
|
49
|
+
return Math.round(sizeData.value) + " " + sizeData.symbol;
|
|
50
|
+
}
|
|
51
|
+
return sizeData.value + " " + sizeData.symbol.toUpperCase();
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
var englishI18n = {
|
|
55
|
+
locale: models_1.SupportedLocales.EN,
|
|
56
|
+
formatters: __assign({}, exports.defaultFormatters),
|
|
57
|
+
};
|
|
58
|
+
var russianI18n = {
|
|
59
|
+
locale: models_1.SupportedLocales.RU,
|
|
60
|
+
formatters: __assign({}, exports.defaultFormatters),
|
|
61
|
+
messages: (_a = {
|
|
62
|
+
'chonky.toolbar.searchPlaceholder': 'Поиск',
|
|
63
|
+
'chonky.toolbar.visibleFileCount': "{fileCount, plural,\n one {# \u0444\u0430\u0439\u043B}\n few {# \u0444\u0430\u0439\u043B\u0430}\n other {# \u0444\u0430\u0439\u043B\u043E\u0432}\n }",
|
|
64
|
+
'chonky.toolbar.selectedFileCount': "{fileCount, plural,\n =0 {}\n one {# \u0432\u044B\u0434\u0435\u043B\u0435\u043D}\n other {# \u0432\u044B\u0434\u0435\u043B\u0435\u043D\u043E}\n }",
|
|
65
|
+
'chonky.toolbar.hiddenFileCount': "{fileCount, plural,\n =0 {}\n one {# \u0441\u043A\u0440\u044B\u0442}\n other {# \u0441\u043A\u0440\u044B\u0442\u043E}\n }",
|
|
66
|
+
'chonky.fileList.nothingToShow': 'Здесь пусто!',
|
|
67
|
+
'chonky.contextMenu.browserMenuShortcut': 'Меню браузера: {shortcut}'
|
|
68
|
+
},
|
|
69
|
+
// Actions
|
|
70
|
+
_a["chonky.actionGroups.Actions"] = 'Действия',
|
|
71
|
+
_a["chonky.actionGroups.Options"] = 'Опции',
|
|
72
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.OpenParentFolder.id + ".button.name"] = 'Открыть родительскую папку',
|
|
73
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.CreateFolder.id + ".button.name"] = 'Новая папка',
|
|
74
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.CreateFolder.id + ".button.tooltip"] = 'Создать новую папку',
|
|
75
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.DeleteFiles.id + ".button.name"] = 'Удалить файлы',
|
|
76
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.OpenSelection.id + ".button.name"] = 'Открыть выделение',
|
|
77
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.SelectAllFiles.id + ".button.name"] = 'Выделить все',
|
|
78
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.ClearSelection.id + ".button.name"] = 'Сбросить выделение',
|
|
79
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.EnableListView.id + ".button.name"] = 'Показать список',
|
|
80
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.EnableGridView.id + ".button.name"] = 'Показать иконки',
|
|
81
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.SortFilesByName.id + ".button.name"] = 'Сорт. по имени',
|
|
82
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.SortFilesBySize.id + ".button.name"] = 'Сорт. по размеру',
|
|
83
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.SortFilesByDate.id + ".button.name"] = 'Сорт. по дате',
|
|
84
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.ToggleHiddenFiles.id + ".button.name"] = 'Скрытые файлы',
|
|
85
|
+
_a["chonky.actions." + chonky_1.ChonkyActions.ToggleShowFoldersFirst.id + ".button.name"] = 'Папки в начале',
|
|
86
|
+
_a),
|
|
87
|
+
};
|
|
88
|
+
var hebrewI18n = {
|
|
89
|
+
locale: models_1.SupportedLocales.HE,
|
|
90
|
+
formatters: __assign({}, exports.defaultFormatters),
|
|
91
|
+
messages: (_b = {
|
|
92
|
+
'chonky.toolbar.searchPlaceholder': 'חיפוש',
|
|
93
|
+
'chonky.toolbar.visibleFileCount': "{fileCount, plural,\n one {\u05E4\u05E8\u05D9\u05D8 #}\n other {# \u05E4\u05E8\u05D9\u05D8\u05D9\u05DD}\n }",
|
|
94
|
+
'chonky.toolbar.selectedFileCount': "{fileCount, plural,\n =0 {}\n one {# \u05E0\u05D1\u05D7\u05E8}\n other {# \u05E0\u05D1\u05D7\u05E8\u05D5}\n }",
|
|
95
|
+
'chonky.toolbar.hiddenFileCount': "{fileCount, plural,\n =0 {}\n one {# \u05E0\u05E1\u05EA\u05E8}\n other {# \u05E0\u05E1\u05EA\u05E8\u05D9\u05DD}\n }",
|
|
96
|
+
'chonky.fileList.nothingToShow': 'ריק',
|
|
97
|
+
'chonky.contextMenu.browserMenuShortcut': 'תפריט דפדפן: {shortcut}'
|
|
98
|
+
},
|
|
99
|
+
// Actions
|
|
100
|
+
_b["chonky.actionGroups.Actions"] = 'פעולות',
|
|
101
|
+
_b["chonky.actionGroups.Options"] = 'אפשרויות',
|
|
102
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.OpenParentFolder.id + ".button.name"] = 'פתח סיפריית אב',
|
|
103
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.CreateFolder.id + ".button.name"] = 'סיפרייה חדשה',
|
|
104
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.CreateFolder.id + ".button.tooltip"] = 'צור סיפרייה חדשה',
|
|
105
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.DeleteFiles.id + ".button.name"] = 'מחק',
|
|
106
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.OpenSelection.id + ".button.name"] = 'פתח את הבחירה',
|
|
107
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.SelectAllFiles.id + ".button.name"] = 'בחר הכל',
|
|
108
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.ClearSelection.id + ".button.name"] = 'אפס את הבחירה',
|
|
109
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.EnableListView.id + ".button.name"] = 'תצוגת רשימה',
|
|
110
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.EnableGridView.id + ".button.name"] = 'תצוגת גריד',
|
|
111
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.SortFilesByName.id + ".button.name"] = 'מיון לפי שם',
|
|
112
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.SortFilesBySize.id + ".button.name"] = 'מיון לפי גודל',
|
|
113
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.SortFilesByDate.id + ".button.name"] = 'מיון לפי תאריך',
|
|
114
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.ToggleHiddenFiles.id + ".button.name"] = 'קבצים נסתרים',
|
|
115
|
+
_b["chonky.actions." + chonky_1.ChonkyActions.ToggleShowFoldersFirst.id + ".button.name"] = 'הצגת תיקיות בראש הרשימה',
|
|
116
|
+
_b),
|
|
117
|
+
};
|
|
118
|
+
var localization = (_c = {},
|
|
119
|
+
_c[models_1.SupportedLocales.EN] = englishI18n,
|
|
120
|
+
_c[models_1.SupportedLocales.RU] = russianI18n,
|
|
121
|
+
_c[models_1.SupportedLocales.HE] = hebrewI18n,
|
|
122
|
+
_c);
|
|
123
|
+
exports.default = localization;
|
|
124
|
+
/* eslint-enable */
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from './date-range-picker';
|
|
2
|
+
export * from './date-picker';
|
|
3
|
+
export * from './map-filter-container';
|
|
4
|
+
export * from './models';
|
|
5
|
+
export * from './ol-map';
|
|
6
|
+
export * from './smart-table';
|
|
7
|
+
export * from './popover';
|
|
8
|
+
export * from './box';
|
|
9
|
+
export * from './cssbaseline';
|
|
10
|
+
export * from './theme';
|
|
11
|
+
export * from './cesium-map';
|
|
12
|
+
export * from './autocomplete';
|
|
13
|
+
export * from './file-picker';
|
package/dist/index.js
CHANGED
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
function
|
|
3
|
-
|
|
4
|
-
}
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
5
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
__exportStar(require("./date-range-picker"), exports);
|
|
14
|
+
__exportStar(require("./date-picker"), exports);
|
|
15
|
+
__exportStar(require("./map-filter-container"), exports);
|
|
16
|
+
__exportStar(require("./models"), exports);
|
|
17
|
+
__exportStar(require("./ol-map"), exports);
|
|
18
|
+
__exportStar(require("./smart-table"), exports);
|
|
19
|
+
__exportStar(require("./popover"), exports);
|
|
20
|
+
__exportStar(require("./box"), exports);
|
|
21
|
+
__exportStar(require("./cssbaseline"), exports);
|
|
22
|
+
__exportStar(require("./theme"), exports);
|
|
23
|
+
__exportStar(require("./cesium-map"), exports);
|
|
24
|
+
__exportStar(require("./autocomplete"), exports);
|
|
25
|
+
__exportStar(require("./file-picker"), exports);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Polygon } from 'geojson';
|
|
3
|
+
import { DrawType } from '../models/enums';
|
|
4
|
+
import './container-map.css';
|
|
5
|
+
interface ContainerMapProps {
|
|
6
|
+
drawType?: DrawType;
|
|
7
|
+
selectionPolygon?: Polygon;
|
|
8
|
+
onPolygonSelection: (polygon: Polygon) => void;
|
|
9
|
+
}
|
|
10
|
+
export declare const ContainerMap: React.FC<ContainerMapProps>;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ContainerMap = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
var rewind_1 = __importDefault(require("@turf/rewind"));
|
|
9
|
+
var map_1 = require("../ol-map/map");
|
|
10
|
+
var tile_layer_1 = require("../ol-map/layers/tile-layer");
|
|
11
|
+
var vector_source_1 = require("../ol-map/source/vector-source");
|
|
12
|
+
var feature_1 = require("../ol-map/feature");
|
|
13
|
+
var osm_1 = require("../ol-map/source/osm");
|
|
14
|
+
var vector_layer_1 = require("../ol-map/layers/vector-layer");
|
|
15
|
+
var draw_1 = require("../ol-map/interactions/draw");
|
|
16
|
+
require("./container-map.css");
|
|
17
|
+
var ContainerMap = function (props) {
|
|
18
|
+
var handlePolygonSelected = function (geometry) {
|
|
19
|
+
var rewindedPolygon = rewind_1.default(geometry);
|
|
20
|
+
props.onPolygonSelection(rewindedPolygon);
|
|
21
|
+
};
|
|
22
|
+
return (react_1.default.createElement(map_1.Map, { allowFullScreen: true, showMousePosition: true },
|
|
23
|
+
react_1.default.createElement(tile_layer_1.TileLayer, null,
|
|
24
|
+
react_1.default.createElement(osm_1.TileOsm, null)),
|
|
25
|
+
props.selectionPolygon && (react_1.default.createElement(vector_layer_1.VectorLayer, null,
|
|
26
|
+
react_1.default.createElement(vector_source_1.VectorSource, null,
|
|
27
|
+
react_1.default.createElement(feature_1.GeoJSONFeature, { geometry: props.selectionPolygon })))),
|
|
28
|
+
props.children,
|
|
29
|
+
props.drawType !== undefined && (react_1.default.createElement(draw_1.DrawInteraction, { drawType: props.drawType, onPolygonSelected: handlePolygonSelected }))));
|
|
30
|
+
};
|
|
31
|
+
exports.ContainerMap = ContainerMap;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './map-filter-container';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("./map-filter-container"), exports);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Polygon } from 'geojson';
|
|
3
|
+
export interface MapFilterContainerProps {
|
|
4
|
+
handlePolygonSelected: (polygon: Polygon) => void;
|
|
5
|
+
handlePolygonReset: () => void;
|
|
6
|
+
mapContent?: React.ReactNode;
|
|
7
|
+
filters?: React.ReactNode[];
|
|
8
|
+
}
|
|
9
|
+
export declare const MapFilterContainer: React.FC<MapFilterContainerProps>;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
exports.MapFilterContainer = void 0;
|
|
23
|
+
var react_1 = __importStar(require("react"));
|
|
24
|
+
var styles_1 = require("@material-ui/core/styles");
|
|
25
|
+
var core_1 = require("@material-ui/core");
|
|
26
|
+
var polygon_selection_ui_1 = require("./polygon-selection-ui");
|
|
27
|
+
var container_map_1 = require("./container-map");
|
|
28
|
+
var PLACEMENT_SPACING_FACTOR = 1.5;
|
|
29
|
+
var WIDTH_SPACING_FACTOR = 80;
|
|
30
|
+
var useStyle = styles_1.makeStyles(function (theme) {
|
|
31
|
+
return styles_1.createStyles({
|
|
32
|
+
map: {
|
|
33
|
+
height: '100%',
|
|
34
|
+
width: '100%',
|
|
35
|
+
position: 'absolute',
|
|
36
|
+
},
|
|
37
|
+
absolute: {
|
|
38
|
+
position: 'absolute',
|
|
39
|
+
zIndex: 1000,
|
|
40
|
+
left: theme.spacing(PLACEMENT_SPACING_FACTOR),
|
|
41
|
+
top: theme.spacing(PLACEMENT_SPACING_FACTOR),
|
|
42
|
+
},
|
|
43
|
+
contentContainer: {
|
|
44
|
+
marginTop: theme.spacing(PLACEMENT_SPACING_FACTOR),
|
|
45
|
+
width: theme.spacing(WIDTH_SPACING_FACTOR),
|
|
46
|
+
},
|
|
47
|
+
filtersContainer: {
|
|
48
|
+
display: 'flex',
|
|
49
|
+
padding: theme.spacing(1),
|
|
50
|
+
},
|
|
51
|
+
filtersMargin: {
|
|
52
|
+
marginLeft: theme.spacing(1),
|
|
53
|
+
},
|
|
54
|
+
});
|
|
55
|
+
});
|
|
56
|
+
var MapFilterContainer = function (props) {
|
|
57
|
+
var _a;
|
|
58
|
+
var _b = react_1.useState(), drawType = _b[0], setDrawType = _b[1];
|
|
59
|
+
var _c = react_1.useState(), selectionPolygon = _c[0], setSelectionPolygon = _c[1];
|
|
60
|
+
var classes = useStyle();
|
|
61
|
+
var onPolygonSelection = function (polygon) {
|
|
62
|
+
setSelectionPolygon(polygon);
|
|
63
|
+
setDrawType(undefined);
|
|
64
|
+
props.handlePolygonSelected(polygon);
|
|
65
|
+
};
|
|
66
|
+
var onReset = function () {
|
|
67
|
+
setSelectionPolygon(undefined);
|
|
68
|
+
props.handlePolygonReset();
|
|
69
|
+
};
|
|
70
|
+
return (react_1.default.createElement("div", { className: classes.map },
|
|
71
|
+
react_1.default.createElement("div", { className: "" + classes.absolute },
|
|
72
|
+
react_1.default.createElement(core_1.Paper, { className: classes.filtersContainer },
|
|
73
|
+
react_1.default.createElement(polygon_selection_ui_1.PolygonSelectionUi, { onCancelDraw: function () { return setDrawType(undefined); }, onReset: onReset, onStartDraw: setDrawType, isSelectionEnabled: drawType !== undefined }), (_a = props.filters) === null || _a === void 0 ? void 0 :
|
|
74
|
+
_a.map(function (filter, index) { return (react_1.default.createElement("div", { key: index, className: classes.filtersMargin }, filter)); })),
|
|
75
|
+
react_1.default.createElement(core_1.Paper, { color: "red", className: "" + classes.contentContainer }, props.children)),
|
|
76
|
+
react_1.default.createElement(container_map_1.ContainerMap, { children: props.mapContent, onPolygonSelection: onPolygonSelection, drawType: drawType, selectionPolygon: selectionPolygon })));
|
|
77
|
+
};
|
|
78
|
+
exports.MapFilterContainer = MapFilterContainer;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import '@map-colonies/react-core/dist/button/styles';
|
|
3
|
+
import '@map-colonies/react-core/dist/tooltip/styles';
|
|
4
|
+
import '@map-colonies/react-core/dist/menu/styles';
|
|
5
|
+
import { DrawType } from '../models/enums';
|
|
6
|
+
export interface PolygonSelectionUiProps {
|
|
7
|
+
isSelectionEnabled: boolean;
|
|
8
|
+
onStartDraw: (type: DrawType) => void;
|
|
9
|
+
onCancelDraw: () => void;
|
|
10
|
+
onReset: () => void;
|
|
11
|
+
}
|
|
12
|
+
export declare const PolygonSelectionUi: React.FC<PolygonSelectionUiProps>;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.PolygonSelectionUi = void 0;
|
|
7
|
+
var react_1 = __importDefault(require("react"));
|
|
8
|
+
var react_core_1 = require("@map-colonies/react-core");
|
|
9
|
+
require("@map-colonies/react-core/dist/button/styles");
|
|
10
|
+
require("@map-colonies/react-core/dist/tooltip/styles");
|
|
11
|
+
require("@map-colonies/react-core/dist/menu/styles");
|
|
12
|
+
var styles_1 = require("@material-ui/core/styles");
|
|
13
|
+
var enums_1 = require("../models/enums");
|
|
14
|
+
var box_1 = require("../box");
|
|
15
|
+
var WIDTH_SPACING_FACTOR = 18;
|
|
16
|
+
var useStyle = styles_1.makeStyles(function (theme) {
|
|
17
|
+
return styles_1.createStyles({
|
|
18
|
+
drawingButton: {
|
|
19
|
+
width: theme.spacing(WIDTH_SPACING_FACTOR),
|
|
20
|
+
},
|
|
21
|
+
fullWidth: {
|
|
22
|
+
width: '100%',
|
|
23
|
+
marginTop: '36px',
|
|
24
|
+
},
|
|
25
|
+
});
|
|
26
|
+
});
|
|
27
|
+
var PolygonSelectionUi = function (props) {
|
|
28
|
+
var classes = useStyle();
|
|
29
|
+
var _a = react_1.default.useState(null), anchorEl = _a[0], setAnchorEl = _a[1];
|
|
30
|
+
var isSelectionEnabled = props.isSelectionEnabled, onCancelDraw = props.onCancelDraw, onStartDraw = props.onStartDraw, onReset = props.onReset;
|
|
31
|
+
var handleClick = function (event) {
|
|
32
|
+
setAnchorEl(event.currentTarget);
|
|
33
|
+
};
|
|
34
|
+
var handleClose = function () {
|
|
35
|
+
setAnchorEl(null);
|
|
36
|
+
};
|
|
37
|
+
if (isSelectionEnabled) {
|
|
38
|
+
return (react_1.default.createElement(react_core_1.Tooltip, { content: "Cancel the ongoing draw", align: 'bottomLeft' },
|
|
39
|
+
react_1.default.createElement(react_core_1.Button, { className: classes.drawingButton, raised: true, onClick: onCancelDraw }, "Cancel Draw")));
|
|
40
|
+
}
|
|
41
|
+
else {
|
|
42
|
+
return (react_1.default.createElement(box_1.Box, { position: "relative" },
|
|
43
|
+
react_1.default.createElement(react_core_1.Tooltip, { content: "draw an Area of interest to limit the search", align: 'bottomLeft' },
|
|
44
|
+
react_1.default.createElement(react_core_1.Button, { className: classes.drawingButton, raised: true, onClick: handleClick }, "Draw AOI")),
|
|
45
|
+
react_1.default.createElement(react_core_1.Menu, { className: classes.fullWidth, open: Boolean(anchorEl),
|
|
46
|
+
// keepMounted
|
|
47
|
+
onClose: handleClose },
|
|
48
|
+
react_1.default.createElement(react_core_1.MenuItem, { onClick: function () {
|
|
49
|
+
onStartDraw(enums_1.DrawType.POLYGON);
|
|
50
|
+
handleClose();
|
|
51
|
+
} }, "Polygon"),
|
|
52
|
+
react_1.default.createElement(react_core_1.MenuItem, { onClick: function () {
|
|
53
|
+
onStartDraw(enums_1.DrawType.BOX);
|
|
54
|
+
handleClose();
|
|
55
|
+
} }, "Box"),
|
|
56
|
+
react_1.default.createElement(react_core_1.MenuItem, { onClick: function () {
|
|
57
|
+
onReset();
|
|
58
|
+
handleClose();
|
|
59
|
+
} }, "Clear"))));
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
exports.PolygonSelectionUi = PolygonSelectionUi;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { SupportedLocales } from './enums';
|
|
2
|
+
declare const DEFAULTS: {
|
|
3
|
+
DATE_PICKER: {
|
|
4
|
+
dateFormat: string;
|
|
5
|
+
local: {
|
|
6
|
+
setText: string;
|
|
7
|
+
placeHolderText: string;
|
|
8
|
+
calendarLocale: SupportedLocales;
|
|
9
|
+
};
|
|
10
|
+
disableFuture: boolean;
|
|
11
|
+
showTime: boolean;
|
|
12
|
+
variant: string;
|
|
13
|
+
};
|
|
14
|
+
DATE_RANGE_PICKER: {
|
|
15
|
+
dateFormat: string;
|
|
16
|
+
controlsLayout: string;
|
|
17
|
+
local: {
|
|
18
|
+
setText: string;
|
|
19
|
+
startPlaceHolderText: string;
|
|
20
|
+
endPlaceHolderText: string;
|
|
21
|
+
calendarLocale: SupportedLocales;
|
|
22
|
+
};
|
|
23
|
+
renderAsButton: boolean;
|
|
24
|
+
offset: number;
|
|
25
|
+
disableFuture: boolean;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
export default DEFAULTS;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var enums_1 = require("./enums");
|
|
4
|
+
var DEFAULTS = {
|
|
5
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
6
|
+
DATE_PICKER: {
|
|
7
|
+
dateFormat: 'dd/MM/yyyy',
|
|
8
|
+
local: {
|
|
9
|
+
setText: 'set',
|
|
10
|
+
placeHolderText: 'Enter the Date',
|
|
11
|
+
calendarLocale: enums_1.SupportedLocales.EN,
|
|
12
|
+
},
|
|
13
|
+
disableFuture: true,
|
|
14
|
+
showTime: false,
|
|
15
|
+
variant: 'inline',
|
|
16
|
+
},
|
|
17
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
18
|
+
DATE_RANGE_PICKER: {
|
|
19
|
+
dateFormat: 'dd/MM/yyyy HH:mm',
|
|
20
|
+
controlsLayout: 'row',
|
|
21
|
+
local: {
|
|
22
|
+
setText: 'set',
|
|
23
|
+
startPlaceHolderText: 'Start of time',
|
|
24
|
+
endPlaceHolderText: 'End of time',
|
|
25
|
+
calendarLocale: enums_1.SupportedLocales.EN,
|
|
26
|
+
},
|
|
27
|
+
renderAsButton: true,
|
|
28
|
+
offset: 0,
|
|
29
|
+
disableFuture: true,
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
exports.default = DEFAULTS;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare enum DrawType {
|
|
2
|
+
BOX = "BOX",
|
|
3
|
+
POLYGON = "POLYGON",
|
|
4
|
+
UNKNOWN = "UNKNOWN"
|
|
5
|
+
}
|
|
6
|
+
export declare enum SupportedLocales {
|
|
7
|
+
HE = "he",
|
|
8
|
+
EN = "en",
|
|
9
|
+
RU = "ru"
|
|
10
|
+
}
|
|
11
|
+
export declare enum BboxCorner {
|
|
12
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
13
|
+
BOTTOM_LEFT = "BOTTOM_LEFT"
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BboxCorner = exports.SupportedLocales = exports.DrawType = void 0;
|
|
4
|
+
var DrawType;
|
|
5
|
+
(function (DrawType) {
|
|
6
|
+
DrawType["BOX"] = "BOX";
|
|
7
|
+
DrawType["POLYGON"] = "POLYGON";
|
|
8
|
+
DrawType["UNKNOWN"] = "UNKNOWN";
|
|
9
|
+
})(DrawType = exports.DrawType || (exports.DrawType = {}));
|
|
10
|
+
var SupportedLocales;
|
|
11
|
+
(function (SupportedLocales) {
|
|
12
|
+
SupportedLocales["HE"] = "he";
|
|
13
|
+
SupportedLocales["EN"] = "en";
|
|
14
|
+
SupportedLocales["RU"] = "ru";
|
|
15
|
+
})(SupportedLocales = exports.SupportedLocales || (exports.SupportedLocales = {}));
|
|
16
|
+
var BboxCorner;
|
|
17
|
+
(function (BboxCorner) {
|
|
18
|
+
BboxCorner["TOP_RIGHT"] = "TOP_RIGHT";
|
|
19
|
+
BboxCorner["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
20
|
+
})(BboxCorner = exports.BboxCorner || (exports.BboxCorner = {}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './enums';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("./enums"), exports);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GeoJSONFeature = void 0;
|
|
4
|
+
var react_1 = require("react");
|
|
5
|
+
var format_1 = require("ol/format");
|
|
6
|
+
var vector_source_1 = require("./source/vector-source");
|
|
7
|
+
var GeoJSONFeature = function (_a) {
|
|
8
|
+
var geometry = _a.geometry;
|
|
9
|
+
var source = vector_source_1.useVectorSource();
|
|
10
|
+
react_1.useEffect(function () {
|
|
11
|
+
var geoJSON = new format_1.GeoJSON();
|
|
12
|
+
var feature = geoJSON.readFeature(geometry);
|
|
13
|
+
source.addFeature(feature);
|
|
14
|
+
return function () {
|
|
15
|
+
source.removeFeature(feature);
|
|
16
|
+
};
|
|
17
|
+
}, [geometry, source]);
|
|
18
|
+
return null;
|
|
19
|
+
};
|
|
20
|
+
exports.GeoJSONFeature = GeoJSONFeature;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("./interactions"), exports);
|
|
14
|
+
__exportStar(require("./layers"), exports);
|
|
15
|
+
__exportStar(require("./source"), exports);
|
|
16
|
+
__exportStar(require("./feature"), exports);
|
|
17
|
+
__exportStar(require("./map"), exports);
|
|
18
|
+
__exportStar(require("../utils/projections"), exports);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Geometry } from 'geojson';
|
|
3
|
+
import { DrawType } from '../../models/enums';
|
|
4
|
+
export interface DrawProps {
|
|
5
|
+
drawType: DrawType;
|
|
6
|
+
onPolygonSelected?: (geometry: Geometry) => void;
|
|
7
|
+
}
|
|
8
|
+
export declare const DrawInteraction: React.FC<DrawProps>;
|