@panoramax/web-viewer 3.2.3 → 4.0.0-develop-9f9cf858

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.
Files changed (255) hide show
  1. package/.gitlab-ci.yml +13 -6
  2. package/CHANGELOG.md +56 -1
  3. package/CODE_OF_CONDUCT.md +1 -1
  4. package/README.md +1 -1
  5. package/build/editor.html +10 -1
  6. package/build/index.css +12 -12
  7. package/build/index.css.map +1 -1
  8. package/build/index.html +1 -1
  9. package/build/index.js +2126 -14
  10. package/build/index.js.map +1 -1
  11. package/build/map.html +1 -1
  12. package/build/photo.html +1 -0
  13. package/build/static/media/atkinson-hyperlegible-next-latin-400-normal..woff +0 -0
  14. package/build/static/media/atkinson-hyperlegible-next-latin-400-normal..woff2 +0 -0
  15. package/build/static/media/atkinson-hyperlegible-next-latin-ext-400-normal..woff +0 -0
  16. package/build/static/media/atkinson-hyperlegible-next-latin-ext-400-normal..woff2 +0 -0
  17. package/build/viewer.html +12 -1
  18. package/build/widgets.html +1 -0
  19. package/config/jest/mocks.js +201 -0
  20. package/config/paths.js +2 -0
  21. package/config/webpack.config.js +52 -0
  22. package/docs/03_URL_settings.md +14 -16
  23. package/docs/05_Compatibility.md +59 -76
  24. package/docs/09_Develop.md +46 -11
  25. package/docs/90_Releases.md +2 -2
  26. package/docs/images/class_diagram.drawio +60 -45
  27. package/docs/images/class_diagram.jpg +0 -0
  28. package/docs/images/screenshot.jpg +0 -0
  29. package/docs/index.md +135 -0
  30. package/docs/reference/components/core/Basic.md +196 -0
  31. package/docs/reference/components/core/CoverageMap.md +210 -0
  32. package/docs/reference/components/core/Editor.md +224 -0
  33. package/docs/reference/components/core/PhotoViewer.md +307 -0
  34. package/docs/reference/components/core/Viewer.md +350 -0
  35. package/docs/reference/components/layout/BottomDrawer.md +35 -0
  36. package/docs/reference/components/layout/CorneredGrid.md +29 -0
  37. package/docs/reference/components/layout/Mini.md +45 -0
  38. package/docs/reference/components/layout/Tabs.md +45 -0
  39. package/docs/reference/components/menus/MapBackground.md +32 -0
  40. package/docs/reference/components/menus/MapFilters.md +15 -0
  41. package/docs/reference/components/menus/MapLayers.md +15 -0
  42. package/docs/reference/components/menus/MapLegend.md +15 -0
  43. package/docs/reference/components/menus/PictureLegend.md +16 -0
  44. package/docs/reference/components/menus/PictureMetadata.md +15 -0
  45. package/docs/reference/components/menus/PlayerOptions.md +15 -0
  46. package/docs/reference/components/menus/QualityScoreDoc.md +15 -0
  47. package/docs/reference/components/menus/ReportForm.md +15 -0
  48. package/docs/reference/components/menus/ShareMenu.md +15 -0
  49. package/docs/reference/components/ui/Button.md +40 -0
  50. package/docs/reference/components/ui/ButtonGroup.md +36 -0
  51. package/docs/reference/components/ui/CopyButton.md +38 -0
  52. package/docs/reference/components/ui/Grade.md +32 -0
  53. package/docs/reference/components/ui/LinkButton.md +45 -0
  54. package/docs/reference/components/ui/ListGroup.md +22 -0
  55. package/docs/reference/components/ui/Loader.md +56 -0
  56. package/docs/reference/components/ui/Map.md +239 -0
  57. package/docs/reference/components/ui/MapMore.md +256 -0
  58. package/docs/reference/components/ui/Photo.md +385 -0
  59. package/docs/reference/components/ui/Popup.md +56 -0
  60. package/docs/reference/components/ui/ProgressBar.md +32 -0
  61. package/docs/reference/components/ui/QualityScore.md +45 -0
  62. package/docs/reference/components/ui/SearchBar.md +63 -0
  63. package/docs/reference/components/ui/TogglableGroup.md +39 -0
  64. package/docs/reference/components/ui/widgets/GeoSearch.md +32 -0
  65. package/docs/reference/components/ui/widgets/Legend.md +49 -0
  66. package/docs/reference/components/ui/widgets/MapFiltersButton.md +33 -0
  67. package/docs/reference/components/ui/widgets/MapLayersButton.md +15 -0
  68. package/docs/reference/components/ui/widgets/OSMEditors.md +15 -0
  69. package/docs/reference/components/ui/widgets/PictureLegendActions.md +32 -0
  70. package/docs/reference/components/ui/widgets/Player.md +33 -0
  71. package/docs/reference/components/ui/widgets/Zoom.md +15 -0
  72. package/docs/reference/utils/API.md +334 -0
  73. package/docs/reference/utils/InitParameters.md +68 -0
  74. package/docs/reference/utils/URLHandler.md +107 -0
  75. package/docs/reference.md +79 -0
  76. package/docs/shortcuts.md +11 -0
  77. package/docs/tutorials/aerial_imagery.md +19 -0
  78. package/docs/tutorials/authentication.md +10 -0
  79. package/docs/tutorials/custom_widgets.md +59 -0
  80. package/docs/tutorials/map_style.md +39 -0
  81. package/docs/tutorials/migrate_v4.md +153 -0
  82. package/docs/tutorials/synced_coverage.md +43 -0
  83. package/mkdocs.yml +66 -5
  84. package/package.json +22 -17
  85. package/public/editor.html +21 -29
  86. package/public/index.html +17 -12
  87. package/public/map.html +19 -18
  88. package/public/photo.html +55 -0
  89. package/public/viewer.html +22 -26
  90. package/public/widgets.html +306 -0
  91. package/scripts/doc.js +79 -0
  92. package/src/components/core/Basic.css +48 -0
  93. package/src/components/core/Basic.js +349 -0
  94. package/src/components/core/CoverageMap.css +9 -0
  95. package/src/components/core/CoverageMap.js +139 -0
  96. package/src/components/core/Editor.css +23 -0
  97. package/src/components/core/Editor.js +390 -0
  98. package/src/components/core/PhotoViewer.css +48 -0
  99. package/src/components/core/PhotoViewer.js +499 -0
  100. package/src/components/core/Viewer.css +98 -0
  101. package/src/components/core/Viewer.js +564 -0
  102. package/src/components/core/index.js +12 -0
  103. package/src/components/index.js +13 -0
  104. package/src/components/layout/BottomDrawer.js +257 -0
  105. package/src/components/layout/CorneredGrid.js +112 -0
  106. package/src/components/layout/Mini.js +117 -0
  107. package/src/components/layout/Tabs.js +133 -0
  108. package/src/components/layout/index.js +9 -0
  109. package/src/components/menus/MapBackground.js +106 -0
  110. package/src/components/menus/MapFilters.js +400 -0
  111. package/src/components/menus/MapLayers.js +143 -0
  112. package/src/components/menus/MapLegend.js +34 -0
  113. package/src/components/menus/PictureLegend.js +257 -0
  114. package/src/components/menus/PictureMetadata.js +317 -0
  115. package/src/components/menus/PlayerOptions.js +95 -0
  116. package/src/components/menus/QualityScoreDoc.js +36 -0
  117. package/src/components/menus/ReportForm.js +133 -0
  118. package/src/components/menus/Share.js +100 -0
  119. package/src/components/menus/index.js +15 -0
  120. package/src/components/styles.js +383 -0
  121. package/src/components/ui/Button.js +77 -0
  122. package/src/components/ui/ButtonGroup.css +57 -0
  123. package/src/components/ui/ButtonGroup.js +68 -0
  124. package/src/components/ui/CopyButton.js +106 -0
  125. package/src/components/ui/Grade.js +54 -0
  126. package/src/components/ui/LinkButton.js +67 -0
  127. package/src/components/ui/ListGroup.js +66 -0
  128. package/src/components/ui/Loader.js +203 -0
  129. package/src/components/{Map.css → ui/Map.css} +5 -17
  130. package/src/components/{Map.js → ui/Map.js} +148 -156
  131. package/src/components/ui/MapMore.js +324 -0
  132. package/src/components/{Photo.css → ui/Photo.css} +6 -6
  133. package/src/components/{Photo.js → ui/Photo.js} +313 -101
  134. package/src/components/ui/Popup.js +145 -0
  135. package/src/components/ui/ProgressBar.js +104 -0
  136. package/src/components/ui/QualityScore.js +147 -0
  137. package/src/components/ui/SearchBar.js +367 -0
  138. package/src/components/ui/TogglableGroup.js +157 -0
  139. package/src/components/ui/index.js +22 -0
  140. package/src/components/ui/widgets/GeoSearch.css +21 -0
  141. package/src/components/ui/widgets/GeoSearch.js +139 -0
  142. package/src/components/ui/widgets/Legend.js +113 -0
  143. package/src/components/ui/widgets/MapFiltersButton.js +104 -0
  144. package/src/components/ui/widgets/MapLayersButton.js +79 -0
  145. package/src/components/ui/widgets/OSMEditors.js +155 -0
  146. package/src/components/ui/widgets/PictureLegendActions.js +117 -0
  147. package/src/components/ui/widgets/Player.css +7 -0
  148. package/src/components/ui/widgets/Player.js +151 -0
  149. package/src/components/ui/widgets/Zoom.js +82 -0
  150. package/src/components/ui/widgets/index.js +13 -0
  151. package/src/img/loader_base.jpg +0 -0
  152. package/src/img/panoramax.svg +13 -0
  153. package/src/img/switch_big.svg +20 -10
  154. package/src/index.js +7 -9
  155. package/src/translations/br.json +1 -0
  156. package/src/translations/da.json +38 -15
  157. package/src/translations/de.json +5 -3
  158. package/src/translations/en.json +35 -15
  159. package/src/translations/eo.json +38 -15
  160. package/src/translations/es.json +1 -1
  161. package/src/translations/fr.json +36 -16
  162. package/src/translations/hu.json +1 -1
  163. package/src/translations/it.json +39 -16
  164. package/src/translations/ja.json +182 -1
  165. package/src/translations/nl.json +106 -6
  166. package/src/translations/pl.json +1 -1
  167. package/src/translations/sv.json +182 -0
  168. package/src/translations/zh_Hant.json +35 -14
  169. package/src/utils/API.js +109 -49
  170. package/src/utils/InitParameters.js +388 -0
  171. package/src/utils/PhotoAdapter.js +1 -0
  172. package/src/utils/URLHandler.js +362 -0
  173. package/src/utils/geocoder.js +152 -0
  174. package/src/utils/{I18n.js → i18n.js} +7 -3
  175. package/src/utils/index.js +11 -0
  176. package/src/utils/{Map.js → map.js} +256 -77
  177. package/src/utils/picture.js +442 -0
  178. package/src/utils/utils.js +324 -0
  179. package/src/utils/widgets.js +55 -0
  180. package/tests/components/core/Basic.test.js +121 -0
  181. package/tests/components/core/BasicMock.js +25 -0
  182. package/tests/components/core/CoverageMap.test.js +20 -0
  183. package/tests/components/core/Editor.test.js +20 -0
  184. package/tests/components/core/PhotoViewer.test.js +57 -0
  185. package/tests/components/core/Viewer.test.js +84 -0
  186. package/tests/components/core/__snapshots__/PhotoViewer.test.js.snap +73 -0
  187. package/tests/components/core/__snapshots__/Viewer.test.js.snap +145 -0
  188. package/tests/components/ui/CopyButton.test.js +52 -0
  189. package/tests/components/ui/Loader.test.js +55 -0
  190. package/tests/components/{Map.test.js → ui/Map.test.js} +73 -61
  191. package/tests/components/{Photo.test.js → ui/Photo.test.js} +97 -63
  192. package/tests/components/ui/Popup.test.js +26 -0
  193. package/tests/components/ui/QualityScore.test.js +18 -0
  194. package/tests/components/ui/SearchBar.test.js +110 -0
  195. package/tests/components/ui/__snapshots__/CopyButton.test.js.snap +33 -0
  196. package/tests/components/ui/__snapshots__/Loader.test.js.snap +56 -0
  197. package/tests/components/{__snapshots__ → ui/__snapshots__}/Map.test.js.snap +11 -38
  198. package/tests/components/{__snapshots__ → ui/__snapshots__}/Photo.test.js.snap +70 -6
  199. package/tests/components/ui/__snapshots__/Popup.test.js.snap +29 -0
  200. package/tests/components/ui/__snapshots__/QualityScore.test.js.snap +11 -0
  201. package/tests/components/ui/__snapshots__/SearchBar.test.js.snap +65 -0
  202. package/tests/utils/API.test.js +83 -83
  203. package/tests/utils/InitParameters.test.js +499 -0
  204. package/tests/utils/URLHandler.test.js +401 -0
  205. package/tests/utils/__snapshots__/API.test.js.snap +10 -0
  206. package/tests/utils/__snapshots__/URLHandler.test.js.snap +21 -0
  207. package/tests/utils/__snapshots__/{Map.test.js.snap → geocoder.test.js.snap} +1 -1
  208. package/tests/utils/__snapshots__/map.test.js.snap +11 -0
  209. package/tests/utils/__snapshots__/picture.test.js.snap +327 -0
  210. package/tests/utils/__snapshots__/widgets.test.js.snap +19 -0
  211. package/tests/utils/geocoder.test.js +37 -0
  212. package/tests/utils/{I18n.test.js → i18n.test.js} +8 -8
  213. package/tests/utils/map.test.js +126 -0
  214. package/tests/utils/picture.test.js +745 -0
  215. package/tests/utils/utils.test.js +288 -0
  216. package/tests/utils/widgets.test.js +31 -0
  217. package/docs/01_Start.md +0 -149
  218. package/docs/02_Usage.md +0 -831
  219. package/docs/04_Advanced_examples.md +0 -216
  220. package/src/Editor.css +0 -37
  221. package/src/Editor.js +0 -361
  222. package/src/StandaloneMap.js +0 -114
  223. package/src/Viewer.css +0 -203
  224. package/src/Viewer.js +0 -1246
  225. package/src/components/CoreView.css +0 -70
  226. package/src/components/CoreView.js +0 -175
  227. package/src/components/Loader.css +0 -74
  228. package/src/components/Loader.js +0 -120
  229. package/src/img/loader_hd.jpg +0 -0
  230. package/src/utils/Exif.js +0 -193
  231. package/src/utils/Utils.js +0 -631
  232. package/src/utils/Widgets.js +0 -562
  233. package/src/viewer/URLHash.js +0 -469
  234. package/src/viewer/Widgets.css +0 -880
  235. package/src/viewer/Widgets.js +0 -1470
  236. package/tests/Editor.test.js +0 -126
  237. package/tests/StandaloneMap.test.js +0 -45
  238. package/tests/Viewer.test.js +0 -366
  239. package/tests/__snapshots__/Editor.test.js.snap +0 -298
  240. package/tests/__snapshots__/StandaloneMap.test.js.snap +0 -30
  241. package/tests/__snapshots__/Viewer.test.js.snap +0 -195
  242. package/tests/components/CoreView.test.js +0 -92
  243. package/tests/components/Loader.test.js +0 -38
  244. package/tests/components/__snapshots__/Loader.test.js.snap +0 -15
  245. package/tests/utils/Exif.test.js +0 -124
  246. package/tests/utils/Map.test.js +0 -113
  247. package/tests/utils/Utils.test.js +0 -300
  248. package/tests/utils/Widgets.test.js +0 -107
  249. package/tests/utils/__snapshots__/Exif.test.js.snap +0 -43
  250. package/tests/utils/__snapshots__/Utils.test.js.snap +0 -41
  251. package/tests/utils/__snapshots__/Widgets.test.js.snap +0 -44
  252. package/tests/viewer/URLHash.test.js +0 -559
  253. package/tests/viewer/Widgets.test.js +0 -127
  254. package/tests/viewer/__snapshots__/URLHash.test.js.snap +0 -108
  255. package/tests/viewer/__snapshots__/Widgets.test.js.snap +0 -403
@@ -0,0 +1,499 @@
1
+ import {
2
+ default as InitParameters, getMapPositionFromString, xyzParamToPSVPosition, paramsToMapFilters,
3
+ alterPSVState, alterMapState, alterViewerState,
4
+ } from "../../src/utils/InitParameters";
5
+
6
+ describe("InitParameters", () => {
7
+ let componentAttrs, urlParams, browserStorage;
8
+
9
+ beforeEach(() => {
10
+ console.warn = jest.fn();
11
+
12
+ componentAttrs = {
13
+ psv: { transitionDuration: 1000, picturesNavigation: "seq" },
14
+ map: { theme: "age", background: "aerial", center: [0, 0], zoom: 10 },
15
+ focus: "pic",
16
+ picture: "pic1",
17
+ users: "user1,user2",
18
+ geocoder: true,
19
+ widgets: true,
20
+ sequence: true,
21
+ fetchOptions: {},
22
+ style: {},
23
+ lang: "en",
24
+ endpoint: "https://panoramax.testapi.fr",
25
+ };
26
+
27
+ urlParams = {
28
+ map: "15/30/70",
29
+ focus: "map",
30
+ pic: "pic2",
31
+ users: "user3,user4",
32
+ speed: 2000,
33
+ nav: "any",
34
+ theme: "default",
35
+ background: "streets",
36
+ xyz: "1/2/3",
37
+ date_from: "2023-01-01",
38
+ date_to: "2023-12-31",
39
+ pic_type: "type1",
40
+ camera: "cam1",
41
+ pic_score: "high",
42
+ };
43
+
44
+ browserStorage = {
45
+ map: { theme: "qualityscore", background: "aerial", center: [-10, -20], zoom: 19 },
46
+ };
47
+ });
48
+
49
+ afterEach(() => jest.clearAllMocks());
50
+
51
+ it("should initialize with componentAttrs and urlParams", () => {
52
+ const initParams = new InitParameters(componentAttrs, urlParams, browserStorage);
53
+
54
+ expect(initParams._parentInit).toEqual({
55
+ map: true,
56
+ users: "user3,user4",
57
+ fetchOptions: {},
58
+ style: {},
59
+ lang: "en",
60
+ endpoint: "https://panoramax.testapi.fr",
61
+ });
62
+ expect(initParams._parentPostInit).toEqual({
63
+ focus: "map",
64
+ picture: "pic2",
65
+ sequence: true,
66
+ geocoder: true,
67
+ widgets: true,
68
+ forceFocus: true,
69
+ });
70
+ expect(initParams._psvInit).toEqual({});
71
+ expect(initParams._psvAny).toEqual({
72
+ transitionDuration: 2000,
73
+ picturesNavigation: "any",
74
+ });
75
+ expect(initParams._psvPostInit).toEqual({ xyz: "1/2/3" });
76
+ expect(initParams._mapInit).toEqual({ raster: undefined });
77
+ expect(initParams._mapAny).toEqual({
78
+ theme: "default",
79
+ background: "streets",
80
+ center: [70, 30],
81
+ zoom: 15,
82
+ pitch: undefined,
83
+ bearing: undefined,
84
+ users: "user3,user4",
85
+ });
86
+ expect(initParams._mapPostInit).toEqual({
87
+ date_from: "2023-01-01",
88
+ date_to: "2023-12-31",
89
+ pic_type: "type1",
90
+ camera: "cam1",
91
+ pic_score: "high",
92
+ });
93
+ });
94
+
95
+ it("should skip URL parameters if disabled by component", () => {
96
+ componentAttrs["url-parameters"] = "false";
97
+ const initParams = new InitParameters(componentAttrs, urlParams);
98
+
99
+ expect(initParams._parentInit).toEqual({
100
+ map: true,
101
+ users: "user1,user2",
102
+ fetchOptions: {},
103
+ style: {},
104
+ lang: "en",
105
+ endpoint: "https://panoramax.testapi.fr",
106
+ });
107
+ expect(initParams._parentPostInit).toEqual({
108
+ focus: "pic",
109
+ picture: "pic1",
110
+ sequence: true,
111
+ geocoder: true,
112
+ widgets: true,
113
+ forceFocus: true,
114
+ });
115
+ });
116
+
117
+ it("uses browserStorage parameters if no URL parameter is available", () => {
118
+ componentAttrs.map.raster = {};
119
+ const initParams = new InitParameters(componentAttrs, undefined, browserStorage);
120
+ expect(initParams._mapAny).toEqual({
121
+ theme: "qualityscore",
122
+ background: "aerial",
123
+ center: [-10,-20],
124
+ zoom: 19,
125
+ pitch: undefined,
126
+ bearing: undefined,
127
+ users: "user1,user2",
128
+ });
129
+ });
130
+
131
+ it("should sanitize objects correctly", () => {
132
+ const initParams = new InitParameters(componentAttrs, urlParams);
133
+ const obj = { a: 1, b: undefined, c: 3 };
134
+ const sanitizedObj = initParams._sanitize(obj);
135
+
136
+ expect(sanitizedObj).toEqual({ a: 1, c: 3 });
137
+ });
138
+
139
+ it("should get parent initialization parameters", () => {
140
+ const initParams = new InitParameters(componentAttrs, urlParams);
141
+ const parentInit = initParams.getParentInit();
142
+
143
+ expect(parentInit).toEqual({
144
+ map: true,
145
+ users: "user3,user4",
146
+ fetchOptions: {},
147
+ style: {},
148
+ lang: "en",
149
+ endpoint: "https://panoramax.testapi.fr",
150
+ });
151
+ });
152
+
153
+ it("should get parent post-initialization parameters", () => {
154
+ const initParams = new InitParameters(componentAttrs, urlParams);
155
+ const parentPostInit = initParams.getParentPostInit();
156
+
157
+ expect(parentPostInit).toEqual({
158
+ focus: "map",
159
+ picture: "pic2",
160
+ sequence: true,
161
+ geocoder: true,
162
+ widgets: true,
163
+ forceFocus: true,
164
+ });
165
+ });
166
+
167
+ it("should get PSV initialization parameters", () => {
168
+ const initParams = new InitParameters(componentAttrs, urlParams);
169
+ const psvInit = initParams.getPSVInit();
170
+
171
+ expect(psvInit).toEqual({
172
+ transitionDuration: 2000,
173
+ picturesNavigation: "any",
174
+ });
175
+ });
176
+
177
+ it("should get PSV post-initialization parameters", () => {
178
+ const initParams = new InitParameters(componentAttrs, urlParams);
179
+ const psvPostInit = initParams.getPSVPostInit();
180
+
181
+ expect(psvPostInit).toEqual({
182
+ transitionDuration: 2000,
183
+ picturesNavigation: "any",
184
+ xyz: "1/2/3",
185
+ });
186
+ });
187
+
188
+ it("should get map initialization parameters", () => {
189
+ const initParams = new InitParameters(componentAttrs, urlParams);
190
+ const mapInit = initParams.getMapInit();
191
+
192
+ expect(mapInit).toEqual({
193
+ theme: "default",
194
+ background: "streets",
195
+ center: [70, 30],
196
+ zoom: 15,
197
+ pitch: undefined,
198
+ bearing: undefined,
199
+ users: "user3,user4",
200
+ raster: undefined,
201
+ });
202
+ });
203
+
204
+ it("should get map post-initialization parameters", () => {
205
+ const initParams = new InitParameters(componentAttrs, urlParams);
206
+ const mapPostInit = initParams.getMapPostInit();
207
+
208
+ expect(mapPostInit).toEqual({
209
+ theme: "default",
210
+ background: "streets",
211
+ center: [70, 30],
212
+ zoom: 15,
213
+ pitch: undefined,
214
+ bearing: undefined,
215
+ users: "user3,user4",
216
+ date_from: "2023-01-01",
217
+ date_to: "2023-12-31",
218
+ pic_type: "type1",
219
+ camera: "cam1",
220
+ pic_score: "high",
221
+ });
222
+ });
223
+
224
+ it("should handle invalid focus parameter", () => {
225
+ urlParams.focus = "invalid";
226
+ const initParams = new InitParameters(componentAttrs, urlParams);
227
+ expect(initParams._parentPostInit.focus).toBe("pic");
228
+ expect(console.warn).toHaveBeenCalledWith("Invalid value for parameter focus:", "invalid");
229
+ });
230
+
231
+ it("should handle focus parameter when map is disabled", () => {
232
+ componentAttrs.map = "false";
233
+ urlParams.focus = "map";
234
+ const initParams = new InitParameters(componentAttrs, urlParams);
235
+ expect(initParams._parentPostInit.focus).toBe("pic");
236
+ expect(console.warn).toHaveBeenCalledWith("Parameter focus can't be 'map' as map is disabled");
237
+ });
238
+
239
+ it("should handle background parameter when aerial imagery is not available", () => {
240
+ componentAttrs.map.raster = false;
241
+ urlParams.background = "aerial";
242
+ const initParams = new InitParameters(componentAttrs, urlParams);
243
+ expect(initParams._mapAny.background).toBe("streets");
244
+ expect(console.warn).toHaveBeenCalledWith("Parameter background can't be 'aerial' as no aerial imagery is available");
245
+ });
246
+ });
247
+
248
+ describe("getMapPositionFromString", () => {
249
+ it("works without map", () => {
250
+ expect(getMapPositionFromString("18/-12.5/48.7")).toEqual({ center: [48.7, -12.5], zoom: 18, pitch: 0 });
251
+ });
252
+
253
+ it("works with map", () => {
254
+ const map = {
255
+ dragRotate: { isEnabled: () => true },
256
+ touchZoomRotate: { isEnabled: () => true },
257
+ };
258
+ expect(getMapPositionFromString("18/-12.5/48.7/15/12", map)).toEqual({ center: [48.7, -12.5], zoom: 18, pitch: 12, bearing: 15 });
259
+ });
260
+
261
+ it("nulls if string is invalid", () => {
262
+ expect(getMapPositionFromString("bla/bla/bla")).toBeNull();
263
+ });
264
+ });
265
+
266
+ describe("xyzParamToPSVPosition", () => {
267
+ it("works", () => {
268
+ expect(xyzParamToPSVPosition("18/-12.5/48.7")).toEqual({ x: 18, y: -12.5, z: 48.7 });
269
+ });
270
+
271
+ it("nulls if string is invalid", () => {
272
+ expect(xyzParamToPSVPosition("bla/bla/bla")).toBeNull();
273
+ });
274
+ });
275
+
276
+ describe("paramsToMapFilters", () => {
277
+ it("works", () => {
278
+ const vals = {
279
+ "date_from": "2023-01-01",
280
+ "date_to": "2023-05-05",
281
+ "pic_type": "equirectangular",
282
+ "camera": "sony",
283
+ "whatever": "whenever",
284
+ "theme": "type",
285
+ };
286
+ expect(paramsToMapFilters(vals)).toEqual({
287
+ "minDate": "2023-01-01",
288
+ "maxDate": "2023-05-05",
289
+ "pic_type": "equirectangular",
290
+ "camera": "sony",
291
+ "theme": "type",
292
+ });
293
+ });
294
+ });
295
+
296
+ describe("alterPSVState", () => {
297
+ let psv;
298
+
299
+ beforeEach(() => {
300
+ psv = {
301
+ addEventListener: jest.fn(),
302
+ setXYZ: jest.fn(),
303
+ setTransitionDuration: jest.fn(),
304
+ setPicturesNavigation: jest.fn(),
305
+ };
306
+ });
307
+
308
+ afterEach(() => jest.clearAllMocks());
309
+
310
+ it("should set XYZ position when xyz param is provided", () => {
311
+ const params = { xyz: "1/2/3" };
312
+ alterPSVState(psv, params);
313
+
314
+ expect(psv.addEventListener).toHaveBeenCalledWith("picture-loaded", expect.any(Function), { once: true });
315
+ const listener = psv.addEventListener.mock.calls[0][1];
316
+ listener();
317
+ expect(psv.setXYZ).toHaveBeenCalledWith(1, 2, 3);
318
+ });
319
+
320
+ it("should set transition duration when transitionDuration param is provided", () => {
321
+ const params = { transitionDuration: 1000 };
322
+ alterPSVState(psv, params);
323
+ expect(psv.setTransitionDuration).toHaveBeenCalledWith(1000);
324
+ });
325
+
326
+ it("should set pictures navigation mode when picturesNavigation param is provided", () => {
327
+ const params = { picturesNavigation: "pic" };
328
+ alterPSVState(psv, params);
329
+ expect(psv.setPicturesNavigation).toHaveBeenCalledWith("pic");
330
+ });
331
+
332
+ it("should set pictures navigation mode when picturesNavigation=none", () => {
333
+ const params = { picturesNavigation: "none" };
334
+ alterPSVState(psv, params);
335
+ expect(psv.setPicturesNavigation).toHaveBeenCalledWith("none");
336
+ });
337
+
338
+ it("should not set pictures navigation mode when picturesNavigation param is invalid", () => {
339
+ const params = { picturesNavigation: "invalid" };
340
+ alterPSVState(psv, params);
341
+ expect(psv.setPicturesNavigation).not.toHaveBeenCalled();
342
+ });
343
+
344
+ it("should handle multiple params correctly", () => {
345
+ const params = { xyz: "1/2/3", transitionDuration: 1000, picturesNavigation: "seq" };
346
+ alterPSVState(psv, params);
347
+
348
+ expect(psv.addEventListener).toHaveBeenCalledWith("picture-loaded", expect.any(Function), { once: true });
349
+ const listener = psv.addEventListener.mock.calls[0][1];
350
+ listener();
351
+ expect(psv.setXYZ).toHaveBeenCalledWith(1, 2, 3);
352
+ expect(psv.setTransitionDuration).toHaveBeenCalledWith(1000);
353
+ expect(psv.setPicturesNavigation).toHaveBeenCalledWith("seq");
354
+ });
355
+ });
356
+
357
+ describe("alterMapState", () => {
358
+ let map;
359
+
360
+ beforeEach(() => {
361
+ map = {
362
+ jumpTo: jest.fn(),
363
+ setVisibleUsers: jest.fn(),
364
+ setFilters: jest.fn(),
365
+ setBackground: jest.fn(),
366
+ getBearing: jest.fn(),
367
+ dragRotate: {
368
+ isEnabled: jest.fn(),
369
+ },
370
+ };
371
+ });
372
+
373
+ afterEach(() => jest.clearAllMocks());
374
+
375
+ it("should jump to map position when map param is provided", () => {
376
+ const params = { map: "10/20/30" };
377
+ const mapOpts = { center: [30,20], zoom: 10, pitch: 0 };
378
+
379
+ alterMapState(map, params);
380
+ expect(map.jumpTo).toHaveBeenCalledWith(mapOpts);
381
+ });
382
+
383
+ it("should set visible users when users param is provided", () => {
384
+ const params = { users: "user1,user2" };
385
+ alterMapState(map, params);
386
+ expect(map.setVisibleUsers).toHaveBeenCalledWith(["user1", "user2"]);
387
+ });
388
+
389
+ it("should set default visible user when users param is empty", () => {
390
+ const params = { users: "" };
391
+ alterMapState(map, params);
392
+ expect(map.setVisibleUsers).toHaveBeenCalledWith(["geovisio"]);
393
+ });
394
+
395
+ it("should set map filters when params are provided", () => {
396
+ const params = { "date_from": "2024-01-01", "pic_score": "ABC" };
397
+ const filters = { "minDate": "2024-01-01", "qualityscore": [5,4,3] };
398
+
399
+ alterMapState(map, params);
400
+ expect(map.setFilters).toHaveBeenCalledWith(filters);
401
+ });
402
+
403
+ it("should set map background when background param is valid", () => {
404
+ const params = { background: "aerial" };
405
+ alterMapState(map, params);
406
+ expect(map.setBackground).toHaveBeenCalledWith("aerial");
407
+ });
408
+
409
+ it("should not set map background when background param is invalid", () => {
410
+ const params = { background: "invalid" };
411
+ alterMapState(map, params);
412
+ expect(map.setBackground).not.toHaveBeenCalled();
413
+ });
414
+
415
+ it("should handle multiple params correctly", () => {
416
+ const params = {
417
+ map: "15/7/6",
418
+ users: "user1,user2",
419
+ camera: "value1",
420
+ background: "streets",
421
+ };
422
+ const mapOpts = { center: [6, 7], zoom: 15, pitch: 0 };
423
+ const filters = { camera: "value1" };
424
+
425
+ alterMapState(map, params);
426
+ expect(map.jumpTo).toHaveBeenCalledWith(mapOpts);
427
+ expect(map.setVisibleUsers).toHaveBeenCalledWith(["user1", "user2"]);
428
+ expect(map.setFilters).toHaveBeenCalledWith(filters);
429
+ expect(map.setBackground).toHaveBeenCalledWith("streets");
430
+ });
431
+ });
432
+
433
+ describe("alterViewerState", () => {
434
+ let viewer;
435
+
436
+ beforeEach(() => {
437
+ console.warn = jest.fn();
438
+ viewer = {
439
+ psv: {
440
+ addEventListener: jest.fn(),
441
+ },
442
+ select: jest.fn(),
443
+ setPopup: jest.fn(),
444
+ _setFocus: jest.fn(),
445
+ mini: {},
446
+ };
447
+ });
448
+
449
+ afterEach(() => jest.clearAllMocks());
450
+
451
+ it("should select the first picture ID when picture param is provided", () => {
452
+ const params = { picture: "pic1;pic2" };
453
+ alterViewerState(viewer, params);
454
+ expect(viewer.select).toHaveBeenCalledWith(null, "pic1", true);
455
+ expect(console.warn).toHaveBeenCalledWith("Multiple picture IDs passed in URL, only first one kept");
456
+ });
457
+
458
+ it("should select no picture when picture param is not provided", () => {
459
+ const params = {};
460
+ alterViewerState(viewer, params);
461
+ expect(viewer.select).toHaveBeenCalledWith();
462
+ });
463
+
464
+ it("should set focus to map when focus param is map and map exists", () => {
465
+ const params = { focus: "map", forceFocus: true };
466
+ viewer.map = {};
467
+ alterViewerState(viewer, params);
468
+ expect(viewer.setPopup).toHaveBeenCalledWith(false);
469
+ expect(viewer._setFocus).toHaveBeenCalledWith("map", null, true);
470
+ });
471
+
472
+ it("should set focus to pic when focus param is pic", () => {
473
+ const params = { focus: "pic", forceFocus: true };
474
+ alterViewerState(viewer, params);
475
+ expect(viewer.setPopup).toHaveBeenCalledWith(false);
476
+ expect(viewer._setFocus).toHaveBeenCalledWith("pic", null, true);
477
+ });
478
+
479
+ it("should set focus to pic when focus param is meta", () => {
480
+ const params = { focus: "meta", forceFocus: true };
481
+ alterViewerState(viewer, params);
482
+ expect(viewer._setFocus).toHaveBeenCalledWith("pic", null, true);
483
+ });
484
+
485
+ it("should not set focus when focus param is invalid", () => {
486
+ const params = { focus: "invalid", forceFocus: true };
487
+ alterViewerState(viewer, params);
488
+ expect(viewer._setFocus).not.toHaveBeenCalled();
489
+ });
490
+
491
+ it("should handle multiple params correctly", () => {
492
+ const params = { picture: "pic1", focus: "map", forceFocus: true };
493
+ viewer.map = {};
494
+ alterViewerState(viewer, params);
495
+ expect(viewer.select).toHaveBeenCalledWith(null, "pic1", true);
496
+ expect(viewer.setPopup).toHaveBeenCalledWith(false);
497
+ expect(viewer._setFocus).toHaveBeenCalledWith("map", null, true);
498
+ });
499
+ });