@dotcms/angular 0.0.1-alpha.40 → 0.0.1-alpha.42

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 (78) hide show
  1. package/dotcms-angular.d.ts.map +1 -0
  2. package/esm2022/dotcms-angular.mjs +5 -0
  3. package/esm2022/index.mjs +5 -0
  4. package/esm2022/lib/components/dot-editable-text/dot-editable-text.component.mjs +225 -0
  5. package/esm2022/lib/components/dot-editable-text/utils.mjs +43 -0
  6. package/esm2022/lib/components/no-component/no-component.component.mjs +32 -0
  7. package/esm2022/lib/layout/column/column.component.mjs +45 -0
  8. package/esm2022/lib/layout/container/container.component.mjs +126 -0
  9. package/esm2022/lib/layout/contentlet/contentlet.component.mjs +120 -0
  10. package/esm2022/lib/layout/dotcms-layout/dotcms-layout.component.mjs +100 -0
  11. package/esm2022/lib/layout/row/row.component.mjs +29 -0
  12. package/esm2022/lib/models/dotcms.model.mjs +3 -0
  13. package/esm2022/lib/models/index.mjs +3 -0
  14. package/esm2022/lib/services/dotcms-context/page-context.service.mjs +75 -0
  15. package/esm2022/lib/utils/index.mjs +79 -0
  16. package/fesm2022/dotcms-angular.mjs +858 -0
  17. package/fesm2022/dotcms-angular.mjs.map +1 -0
  18. package/{src/index.ts → index.d.ts} +1 -0
  19. package/index.d.ts.map +1 -0
  20. package/lib/components/dot-editable-text/dot-editable-text.component.d.ts +129 -0
  21. package/lib/components/dot-editable-text/dot-editable-text.component.d.ts.map +1 -0
  22. package/lib/components/dot-editable-text/utils.d.ts +7 -0
  23. package/lib/components/dot-editable-text/utils.d.ts.map +1 -0
  24. package/lib/components/no-component/no-component.component.d.ts +22 -0
  25. package/lib/components/no-component/no-component.component.d.ts.map +1 -0
  26. package/lib/layout/column/column.component.d.ts +29 -0
  27. package/lib/layout/column/column.component.d.ts.map +1 -0
  28. package/lib/layout/container/container.component.d.ts +88 -0
  29. package/lib/layout/container/container.component.d.ts.map +1 -0
  30. package/{src/lib/layout/contentlet/contentlet.component.ts → lib/layout/contentlet/contentlet.component.d.ts} +17 -32
  31. package/lib/layout/contentlet/contentlet.component.d.ts.map +1 -0
  32. package/lib/layout/dotcms-layout/dotcms-layout.component.d.ts +67 -0
  33. package/lib/layout/dotcms-layout/dotcms-layout.component.d.ts.map +1 -0
  34. package/lib/layout/row/row.component.d.ts +20 -0
  35. package/lib/layout/row/row.component.d.ts.map +1 -0
  36. package/{src/lib/models/dotcms.model.ts → lib/models/dotcms.model.d.ts} +3 -21
  37. package/lib/models/dotcms.model.d.ts.map +1 -0
  38. package/{src/lib/models/index.ts → lib/models/index.d.ts} +1 -8
  39. package/lib/models/index.d.ts.map +1 -0
  40. package/{src/lib/services/dotcms-context/page-context.service.ts → lib/services/dotcms-context/page-context.service.d.ts} +12 -41
  41. package/lib/services/dotcms-context/page-context.service.d.ts.map +1 -0
  42. package/lib/utils/index.d.ts +63 -0
  43. package/lib/utils/index.d.ts.map +1 -0
  44. package/package.json +21 -4
  45. package/.eslintrc.json +0 -18
  46. package/jest.config.ts +0 -22
  47. package/ng-package.json +0 -7
  48. package/project.json +0 -33
  49. package/src/lib/components/dot-editable-text/dot-editable-text.component.css +0 -4
  50. package/src/lib/components/dot-editable-text/dot-editable-text.component.html +0 -8
  51. package/src/lib/components/dot-editable-text/dot-editable-text.component.spec.ts +0 -424
  52. package/src/lib/components/dot-editable-text/dot-editable-text.component.ts +0 -269
  53. package/src/lib/components/dot-editable-text/utils.ts +0 -51
  54. package/src/lib/components/no-component/no-component.component.css +0 -3
  55. package/src/lib/components/no-component/no-component.component.spec.ts +0 -24
  56. package/src/lib/components/no-component/no-component.component.ts +0 -31
  57. package/src/lib/layout/column/column.component.css +0 -99
  58. package/src/lib/layout/column/column.component.spec.ts +0 -33
  59. package/src/lib/layout/column/column.component.ts +0 -49
  60. package/src/lib/layout/container/container.component.css +0 -9
  61. package/src/lib/layout/container/container.component.html +0 -26
  62. package/src/lib/layout/container/container.component.spec.ts +0 -205
  63. package/src/lib/layout/container/container.component.ts +0 -140
  64. package/src/lib/layout/contentlet/contentlet.component.spec.ts +0 -22
  65. package/src/lib/layout/dotcms-layout/dotcms-layout.component.css +0 -3
  66. package/src/lib/layout/dotcms-layout/dotcms-layout.component.spec.ts +0 -195
  67. package/src/lib/layout/dotcms-layout/dotcms-layout.component.ts +0 -150
  68. package/src/lib/layout/row/row.component.css +0 -6
  69. package/src/lib/layout/row/row.component.spec.ts +0 -28
  70. package/src/lib/layout/row/row.component.ts +0 -32
  71. package/src/lib/services/dotcms-context/page-context.spec.ts +0 -80
  72. package/src/lib/utils/index.ts +0 -92
  73. package/src/lib/utils/testing.utils.ts +0 -1019
  74. package/src/test-setup.ts +0 -8
  75. package/tsconfig.json +0 -29
  76. package/tsconfig.lib.json +0 -12
  77. package/tsconfig.lib.prod.json +0 -9
  78. package/tsconfig.spec.json +0 -11
@@ -1,1019 +0,0 @@
1
- import { DotCMSContentlet } from '../models';
2
-
3
- export const PageResponseMock = {
4
- canCreateTemplate: true,
5
- containers: {
6
- '//demo.dotcms.com/application/containers/default/': {
7
- containerStructures: [
8
- {
9
- id: '77ec7720-bad8-431c-a0a3-6443fe87af73',
10
- structureId: 'ce7295c8-df36-46c0-9c98-2fb764e9ec1c',
11
- containerInode: 'f6a7e729-56f5-4fc0-a045-9711960b7427',
12
- containerId: '69b3d24d-7e80-4be6-b04a-d352d16493ee',
13
- code: '#dotParse("//demo.dotcms.com/application/containers/default/calltoaction.vtl")',
14
- contentTypeVar: 'CallToAction'
15
- }
16
- ],
17
- contentlets: {
18
- 'uuid-1': [
19
- {
20
- hostName: 'demo.dotcms.com',
21
- modDate: 1599064929560,
22
- imageMetaData: {
23
- modDate: 1716268464265,
24
- sha256: '041e8f2a721bf85fc833db50666a892ca9c5fcf816091cb6b6123a08ca701085',
25
- length: 33386,
26
- title: 'diving.jpg',
27
- editableAsText: false,
28
- version: 20220201,
29
- isImage: true,
30
- fileSize: 33386,
31
- name: 'diving.jpg',
32
- width: 270,
33
- contentType: 'image/jpeg',
34
- height: 270
35
- },
36
- publishDate: 1599064929608,
37
- description:
38
- 'World-class diving is at your doorstep. From shore or by boat, you have exclusive access to miles of pristine reefs, where diverse and dramatic undersea landscapes harbor the highest level of marine biodiversity on the planet.',
39
- title: 'Diving',
40
- body: '<p>Our dive destinations where created to deliver the ultimate dive experience and was established following an extensive search to identify the perfect location for a dive resort in terms of geography, climate, oceanic topography and marine biodiversity. Having identified the premier location, we developed resorts that, despite its remote position, offers a plenitude of facilities and comforts to make a dive trip, and all that surrounds it, an experience that you will cherish.</p>\n<p><strong>Scuba</strong><br />Unlimited diving on pristine, protected coral reefs for all divers be they open-circuit, technical or rebreather.</p>\n<p><strong>Snorkeling</strong><br />Ideal place for snorkelers. The house reef and many dive sites have beautiful shallows on the coral tops.</p>\n<p><strong>Private Dive/Snorkel Guides</strong><br />Let us fulfill your innermost wishes and tailor an exclusive, personalised diving experience to fit your individual needs and desires.</p>\n<p><strong>Underwater photography</strong><br />The photo opportunities here are stupendous and we offer support and equipment of a level that satisfies the many pros who visit us.</p>',
41
- baseType: 'CONTENT',
42
- inode: 'b77151f2-7206-4b03-862d-68217432d54d',
43
- archived: false,
44
- ownerName: 'Admin User',
45
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
46
- working: true,
47
- locked: false,
48
- stInode: '778f3246-9b11-4a2a-a101-e7fdf111bdad',
49
- contentType: 'Activity',
50
- live: true,
51
- owner: 'dotcms.org.1',
52
- imageVersion: '/dA/b77151f2-7206-4b03-862d-68217432d54d/image/diving.jpg',
53
- identifier: '4694d40b-d9be-4e09-b031-64ee3e7c9642',
54
- image: '/dA/4694d40b-d9be-4e09-b031-64ee3e7c9642/image/diving.jpg',
55
- imageContentAsset: '4694d40b-d9be-4e09-b031-64ee3e7c9642/image',
56
- urlTitle: 'diving',
57
- publishUserName: 'Admin User',
58
- publishUser: 'dotcms.org.1',
59
- languageId: 1,
60
- URL_MAP_FOR_CONTENT: '/activities/diving',
61
- creationDate: 1599064929560,
62
- url: '/content.e9332c43-dfc2-4aa1-b0d6-60ca3df7cb76',
63
- tags: 'snorkeling,waterenthusiast,diving,scuba',
64
- titleImage: 'image',
65
- modUserName: 'Admin User',
66
- urlMap: '/activities/diving',
67
- hasLiveVersion: true,
68
- folder: 'SYSTEM_FOLDER',
69
- hasTitleImage: true,
70
- sortOrder: 0,
71
- modUser: 'dotcms.org.1',
72
- onNumberOfPages: 3
73
- },
74
- {
75
- hostName: 'demo.dotcms.com',
76
- modDate: 1599064928581,
77
- imageMetaData: {
78
- modDate: 1716268464311,
79
- sha256: '4cfeea66800ea90921d311c342ce98223786fa5eb31dc04871bcfe8dc4515800',
80
- length: 21426,
81
- title: 'box-info-3-270x270.jpg',
82
- editableAsText: false,
83
- version: 20220201,
84
- isImage: true,
85
- fileSize: 21426,
86
- name: 'box-info-3-270x270.jpg',
87
- width: 270,
88
- contentType: 'image/jpeg',
89
- height: 270
90
- },
91
- publishDate: 1599064928624,
92
- description:
93
- 'All winter locations have a variety of snowmobiles available for rent to all our registered guests.',
94
- title: 'Snowmobiling',
95
- body: '<p>Experience the rush of snowmobiling through spectacular terrain. With thousands of miles of groomed and ungroomed trails to choose from, you&rsquo;ll never run out of new places to ride. When you&rsquo;ve had your fill of thrills in the unmatched scenery, head back to town and warm up with hot cocoa&mdash;or a local brew&mdash;by a crackling fire.</p>\n<p>Discover the scenic backwoods with our experienced guides! Use one of our machines or bring you own!<br /><br />A full service vacation that includes all meals, lodging, amenities, and guide service to 1500+ miles of groomed, secondary, and mountain snowmobile trails from your cabin door. There is also ample opportunity for you to enjoy &ldquo;off trail &rdquo; play areas. Guests enjoy our hideaway location - with lots of places to snowmobile, awesome scenery, abundant wildlife, and no crowds. From our ranch you can access over 600 miles of groomed trails - with another1000 miles of secondary trails - and lots of off-trail play areas.<br /><br />You could easily spend a week here and ride different country every day. Annual snowfall ranges from 140&rdquo; at the ranch and up to 500&rdquo; in the surrounding mountains!</p>',
96
- baseType: 'CONTENT',
97
- inode: 'bec05965-653e-4148-a59c-ac9682d91e54',
98
- archived: false,
99
- ownerName: 'Admin User',
100
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
101
- working: true,
102
- locked: false,
103
- stInode: '778f3246-9b11-4a2a-a101-e7fdf111bdad',
104
- contentType: 'Activity',
105
- live: true,
106
- altTag: 'Snowmobiling',
107
- owner: 'dotcms.org.1',
108
- imageVersion:
109
- '/dA/bec05965-653e-4148-a59c-ac9682d91e54/image/box-info-3-270x270.jpg',
110
- identifier: '6ac5921e-e062-49a6-9808-f41aff9343c5',
111
- image: '/dA/6ac5921e-e062-49a6-9808-f41aff9343c5/image/box-info-3-270x270.jpg',
112
- imageContentAsset: '6ac5921e-e062-49a6-9808-f41aff9343c5/image',
113
- urlTitle: 'snowmobiling',
114
- publishUserName: 'Admin User',
115
- publishUser: 'dotcms.org.1',
116
- languageId: 1,
117
- URL_MAP_FOR_CONTENT: '/activities/snowmobiling',
118
- creationDate: 1599064928581,
119
- url: '/content.3614c9b2-f329-4d94-9c8e-143d5b254870',
120
- tags: 'snowmobile,winterenthusiast',
121
- titleImage: 'image',
122
- modUserName: 'Admin User',
123
- urlMap: '/activities/snowmobiling',
124
- hasLiveVersion: true,
125
- folder: 'SYSTEM_FOLDER',
126
- hasTitleImage: true,
127
- sortOrder: 0,
128
- modUser: 'dotcms.org.1',
129
- onNumberOfPages: 2
130
- }
131
- ],
132
- 'uuid-2': [
133
- {
134
- hostName: 'demo.dotcms.com',
135
- modDate: 1617890012618,
136
- imageMetaData: {
137
- modDate: 1716268463813,
138
- sha256: '01bed04a0807b45245d38188da3bece44e42fcdd0cf8e8bfe0585e8bd7a61913',
139
- length: 15613,
140
- title: 'box-info-2-270x270.jpg',
141
- editableAsText: false,
142
- version: 20220201,
143
- isImage: true,
144
- fileSize: 15613,
145
- name: 'box-info-2-270x270.jpg',
146
- width: 270,
147
- contentType: 'image/jpeg',
148
- height: 270
149
- },
150
- publishDate: 1617890012681,
151
- description:
152
- "Snowboarding, once a prime route for teen rebellion, today is definitely mainstream. Those teens — both guys and Shred Bettys, who took up snowboarding in the late '80s and '90s now are riding with their kids.",
153
- title: 'Snowboarding',
154
- body: "<p>As with skiing, there are different styles of riding. Free-riding is all-mountain snowboarding on the slopes, in the trees, down the steeps and through the moguls. Freestyle is snowboarding in a pipe or park filled with rails, fun boxes and other features.<br /><br />Snowboarding parks are designed for specific skill levels, from beginner parks with tiny rails hugging the ground to terrain parks with roller-coaster rails, fun boxes and tabletops for more experienced snowboarders.<br /><br />Whether you're a first-timer or already comfortable going lip-to-lip in a pipe, there are classes and special clinics for you at our ski and snowboard resorts. Our resorts offer multiday clinics, so if you're headed to ski this winter, consider wrapping your vacation dates around a snowboarding clinic.</p>",
155
- baseType: 'CONTENT',
156
- inode: 'd77576ce-6e3a-4cf3-b412-8e5209f56cae',
157
- archived: false,
158
- ownerName: 'Admin User',
159
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
160
- working: true,
161
- locked: false,
162
- stInode: '778f3246-9b11-4a2a-a101-e7fdf111bdad',
163
- contentType: 'Activity',
164
- live: true,
165
- altTag: 'Snowboarding',
166
- owner: 'dotcms.org.1',
167
- imageVersion:
168
- '/dA/d77576ce-6e3a-4cf3-b412-8e5209f56cae/image/box-info-2-270x270.jpg',
169
- identifier: '574f0aec-185a-4160-9c17-6d037b298318',
170
- image: '/dA/574f0aec-185a-4160-9c17-6d037b298318/image/box-info-2-270x270.jpg',
171
- imageContentAsset: '574f0aec-185a-4160-9c17-6d037b298318/image',
172
- urlTitle: 'snowboarding',
173
- publishUserName: 'Admin User',
174
- publishUser: 'dotcms.org.1',
175
- languageId: 1,
176
- URL_MAP_FOR_CONTENT: '/activities/snowboarding',
177
- creationDate: 1599064927605,
178
- url: '/content.2f6fe5b8-a2cc-4ecb-a868-db632d695fca',
179
- tags: 'snowboarding,winterenthusiast',
180
- titleImage: 'image',
181
- modUserName: 'Admin User',
182
- urlMap: '/activities/snowboarding',
183
- hasLiveVersion: true,
184
- folder: 'SYSTEM_FOLDER',
185
- hasTitleImage: true,
186
- sortOrder: 0,
187
- modUser: 'dotcms.org.1',
188
- onNumberOfPages: 2
189
- },
190
- {
191
- hostName: 'demo.dotcms.com',
192
- modDate: 1599064928089,
193
- imageMetaData: {
194
- modDate: 1716268463631,
195
- sha256: '07b3d78da174c14744c865ac82e34cdada87f846f8e48cf55f9cc6731da0dc1b',
196
- length: 18643,
197
- title: 'surfing.jpg',
198
- editableAsText: false,
199
- version: 20220201,
200
- isImage: true,
201
- fileSize: 18643,
202
- name: 'surfing.jpg',
203
- width: 270,
204
- contentType: 'image/jpeg',
205
- height: 270
206
- },
207
- publishDate: 1599064928140,
208
- description:
209
- 'The search for the perfect wave is never-ending, but the journey itself is incredibly fulfilling. Visit one of our surf resorts and get one step closer to finding nirvana.',
210
- title: 'Surfing',
211
- body: '<p>Is your surfboard always leaning against the wall next to the door, waiting to be grabbed on the run? Do you organize your whole week around those hours spent outdoors doing what you love most? Are you happy when there&rsquo;s an offshore wind and do you feel irritated when wind conditions are not quite right? Well, my friend, I&rsquo;m afraid that you may already be addicted to surfing.<br /><br />Regardless of your level, whether you&rsquo;re into big wave surfing or still a kook, there&rsquo;s no denying that surfing gives you quite the adrenaline rush. But it&rsquo;s not necessarily the danger that gets you hooked, there are a bunch of other factors that contribute to the natural high: the setting, the anticipation, the rewards, all result in a surge of feel-good chemicals &ndash; endorphins, dopamine, and serotonin.</p>',
212
- baseType: 'CONTENT',
213
- inode: '3bf914e1-1f42-4ee1-8264-9e7b807af712',
214
- archived: false,
215
- ownerName: 'Admin User',
216
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
217
- working: true,
218
- locked: false,
219
- stInode: '778f3246-9b11-4a2a-a101-e7fdf111bdad',
220
- contentType: 'Activity',
221
- live: true,
222
- altTag: 'Surfing Vactions',
223
- owner: 'dotcms.org.1',
224
- imageVersion: '/dA/3bf914e1-1f42-4ee1-8264-9e7b807af712/image/surfing.jpg',
225
- identifier: '8ccfa397-4369-44bb-b450-33151387eb02',
226
- image: '/dA/8ccfa397-4369-44bb-b450-33151387eb02/image/surfing.jpg',
227
- imageContentAsset: '8ccfa397-4369-44bb-b450-33151387eb02/image',
228
- urlTitle: 'surfing',
229
- publishUserName: 'Admin User',
230
- publishUser: 'dotcms.org.1',
231
- languageId: 1,
232
- URL_MAP_FOR_CONTENT: '/activities/surfing',
233
- creationDate: 1599064928089,
234
- url: '/content.6def68a6-67f4-4f56-b8fc-118b3daab841',
235
- tags: 'surfing,waterenthusiast',
236
- titleImage: 'image',
237
- modUserName: 'Admin User',
238
- urlMap: '/activities/surfing',
239
- hasLiveVersion: true,
240
- folder: 'SYSTEM_FOLDER',
241
- hasTitleImage: true,
242
- sortOrder: 0,
243
- modUser: 'dotcms.org.1',
244
- onNumberOfPages: 2
245
- }
246
- ],
247
- 'uuid-3': [
248
- {
249
- hostName: 'demo.dotcms.com',
250
- modDate: 1599064929068,
251
- imageMetaData: {
252
- modDate: 1716268464105,
253
- sha256: '028e5fa94f67eecdac5616925246dfd713c8ddbe710fc1a6349512f1c59f378d',
254
- length: 14358,
255
- title: 'box-info-1-270x270.jpg',
256
- editableAsText: false,
257
- version: 20220201,
258
- isImage: true,
259
- fileSize: 14358,
260
- name: 'box-info-1-270x270.jpg',
261
- width: 270,
262
- contentType: 'image/jpeg',
263
- height: 270
264
- },
265
- publishDate: 1599064929116,
266
- description:
267
- "Skiing is the best family sport because it's so much more than a sport: it's a medium of shared experiences in a living, breathing culture of connection.",
268
- title: 'Skiing',
269
- body: "<p>Admiring the dramatic mountain landscape from atop the ski lift, feeling the cold air nipping at your cheeks, experiencing the rush of adrenaline as you carve the snow &ndash; there's nothing quite like a day on the slopes. And while the mountain conditions are top priority, our ski vacation spots also boast charming towns and lively apr&egrave;s-ski scenes to explore. Factors like resort variety, scenic beauty, annual snowfall and overall atmosphere, we have the world's best places to ski. Wondering where to go? Take a peek at the destinations, and don't forget to vote for your favorites.</p>",
270
- baseType: 'CONTENT',
271
- inode: '278aa6dc-57cd-4cf6-ac18-df48c2430cb1',
272
- archived: false,
273
- ownerName: 'Admin User',
274
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
275
- working: true,
276
- locked: false,
277
- stInode: '778f3246-9b11-4a2a-a101-e7fdf111bdad',
278
- contentType: 'Activity',
279
- live: true,
280
- altTag: 'Skiing',
281
- owner: 'dotcms.org.1',
282
- imageVersion:
283
- '/dA/278aa6dc-57cd-4cf6-ac18-df48c2430cb1/image/box-info-1-270x270.jpg',
284
- identifier: '6a8102b5-fdb0-4ad5-9a5d-e982bcdb54c8',
285
- image: '/dA/6a8102b5-fdb0-4ad5-9a5d-e982bcdb54c8/image/box-info-1-270x270.jpg',
286
- imageContentAsset: '6a8102b5-fdb0-4ad5-9a5d-e982bcdb54c8/image',
287
- urlTitle: 'skiing',
288
- publishUserName: 'Admin User',
289
- publishUser: 'dotcms.org.1',
290
- languageId: 1,
291
- URL_MAP_FOR_CONTENT: '/activities/skiing',
292
- creationDate: 1599064929068,
293
- url: '/content.97dded8a-f260-4730-aa99-56c9ea01c16d',
294
- tags: 'skiing,winterenthusiast',
295
- titleImage: 'image',
296
- modUserName: 'Admin User',
297
- urlMap: '/activities/skiing',
298
- hasLiveVersion: true,
299
- folder: 'SYSTEM_FOLDER',
300
- hasTitleImage: true,
301
- sortOrder: 0,
302
- modUser: 'dotcms.org.1',
303
- onNumberOfPages: 2
304
- },
305
- {
306
- hostName: 'demo.dotcms.com',
307
- modDate: 1599064927114,
308
- imageMetaData: {
309
- modDate: 1716268463430,
310
- sha256: 'd87e67d27c4f1b431d44ef5fdcadc2b1f816d55e60796bba0ae0dd9b90cfe02c',
311
- length: 22168,
312
- title: 'costa-rica-fishing.jpg',
313
- editableAsText: false,
314
- version: 20220201,
315
- isImage: true,
316
- fileSize: 22168,
317
- name: 'costa-rica-fishing.jpg',
318
- width: 270,
319
- contentType: 'image/jpeg',
320
- height: 270
321
- },
322
- publishDate: 1599064927161,
323
- description:
324
- 'Do you know exactly which fish you are trying to catch? If not, you can learn about all the different types of fish you can catch in Costa Rica. Plus we let you know where the best places to catch them.',
325
- title: 'Sport Fishing',
326
- body: '<p>Encompassing an area as vast as the European continent, French Polynesia is a playground for amateur sport fishermen. French Polynesian fishermen head out armed only with a fishing pole and a harness to the great blue where they confront species known for their fighting qualities: tuna, swordfish and of course the Marlin (Haura,in Tahitian). The largest of the catch can weigh over 500 kilos!</p>\n<p>The fact that Polynesian waters harbor so many of these giants, draws in many sport fishermen. At the end of March, the 11th Tahitian Billfish Tournament will bring together over 60 fishing boats and expects to attract many foreign crews. During the four-day tournament, the boats will search out these huge fish along the coasts of Tahiti for a truly adrenalin charged experience.</p>',
327
- baseType: 'CONTENT',
328
- inode: 'aeb77b14-02ab-42ec-aea6-499c8e0bcba1',
329
- archived: false,
330
- ownerName: 'Admin User',
331
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
332
- working: true,
333
- locked: false,
334
- stInode: '778f3246-9b11-4a2a-a101-e7fdf111bdad',
335
- contentType: 'Activity',
336
- live: true,
337
- altTag: 'Costa Rica boasts some of the best sportfishing',
338
- owner: 'dotcms.org.1',
339
- imageVersion:
340
- '/dA/aeb77b14-02ab-42ec-aea6-499c8e0bcba1/image/costa-rica-fishing.jpg',
341
- identifier: '50351143-3ba6-4c54-9e9b-0d8a90d2f9b0',
342
- image: '/dA/50351143-3ba6-4c54-9e9b-0d8a90d2f9b0/image/costa-rica-fishing.jpg',
343
- imageContentAsset: '50351143-3ba6-4c54-9e9b-0d8a90d2f9b0/image',
344
- urlTitle: 'sport-fishing',
345
- publishUserName: 'Admin User',
346
- publishUser: 'dotcms.org.1',
347
- languageId: 1,
348
- URL_MAP_FOR_CONTENT: '/activities/sport-fishing',
349
- creationDate: 1599064927114,
350
- url: '/content.b1dcbe8a-d81f-405e-a176-4aa4a6a0b0a3',
351
- tags: 'sport fishing,fishing',
352
- titleImage: 'image',
353
- modUserName: 'Admin User',
354
- urlMap: '/activities/sport-fishing',
355
- hasLiveVersion: true,
356
- folder: 'SYSTEM_FOLDER',
357
- hasTitleImage: true,
358
- sortOrder: 0,
359
- modUser: 'dotcms.org.1',
360
- onNumberOfPages: 2
361
- }
362
- ],
363
- 'uuid-4': [
364
- {
365
- hostName: 'demo.dotcms.com',
366
- modDate: 1599064926137,
367
- imageMetaData: {
368
- modDate: 1716268463519,
369
- sha256: '729049464994cc3b93b27f9478e907107e7407a14544c619d6efa90dd19a16f3',
370
- length: 24219,
371
- title: 'white-water-raft-2.jpg',
372
- editableAsText: false,
373
- version: 20220201,
374
- isImage: true,
375
- fileSize: 24219,
376
- name: 'white-water-raft-2.jpg',
377
- width: 270,
378
- contentType: 'image/jpeg',
379
- height: 270
380
- },
381
- publishDate: 1599064926184,
382
- description:
383
- 'For those looking for a thrill, we offer some of the worlds bets white water rafting. Class II - IV rivers.',
384
- title: 'White Water Rafting',
385
- body: '<p>Between the year-round warm water and the natural beauty the country has to offer, a trip to Costa Rica presents the opportunity for world-class rafting in a tropical paradise. Costa Rica has 14 major river systems that begin in the volcanic mountain ranges and flow out towards the Caribbean Sea, the Pacific Ocean, the San Juan River, or Lake Nicaragua &mdash; with plenty of waterfalls along the way. These rivers produce world-famous white-water rapids, as well as beautiful scenery along the banks.<br /><br /><strong>Choose Your White Water Rafting Adventure.</strong><br />We have a wide range of options when it comes to rafting adventures, with both single day tours and multi-day white water excursions available, and river difficulties varying from the calm stroll of Class I rivers to the extreme thrill of Class V rivers. So, whether you&rsquo;d like to take an easy float down the river to spot wildlife with the whole family, or you&rsquo;re interested in challenging yourself on adrenaline-packed rapids with nicknames such as &ldquo;La Boca del Diablo,&rdquo; there&rsquo;s a whitewater rafting trip for you.</p>',
386
- baseType: 'CONTENT',
387
- inode: '72736205-e217-4f69-a28c-4e3496512d73',
388
- archived: false,
389
- ownerName: 'Admin User',
390
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
391
- working: true,
392
- locked: false,
393
- stInode: '778f3246-9b11-4a2a-a101-e7fdf111bdad',
394
- contentType: 'Activity',
395
- live: true,
396
- altTag: 'White Water Rafting in Tropical Rain Forests',
397
- owner: 'dotcms.org.1',
398
- imageVersion:
399
- '/dA/72736205-e217-4f69-a28c-4e3496512d73/image/white-water-raft-2.jpg',
400
- identifier: '0e9340f8-08d2-46e3-ae25-be0137c575d0',
401
- image: '/dA/0e9340f8-08d2-46e3-ae25-be0137c575d0/image/white-water-raft-2.jpg',
402
- imageContentAsset: '0e9340f8-08d2-46e3-ae25-be0137c575d0/image',
403
- urlTitle: 'white-water-rafting',
404
- publishUserName: 'Admin User',
405
- publishUser: 'dotcms.org.1',
406
- languageId: 1,
407
- URL_MAP_FOR_CONTENT: '/activities/white-water-rafting',
408
- creationDate: 1599064926137,
409
- url: '/content.a5f36908-8c57-46c0-9ee5-c37e065087d9',
410
- tags: 'white water rafting,ecoenthusiast',
411
- titleImage: 'image',
412
- modUserName: 'Admin User',
413
- urlMap: '/activities/white-water-rafting',
414
- hasLiveVersion: true,
415
- folder: 'SYSTEM_FOLDER',
416
- hasTitleImage: true,
417
- sortOrder: 0,
418
- modUser: 'dotcms.org.1',
419
- onNumberOfPages: 3
420
- },
421
- {
422
- hostName: 'demo.dotcms.com',
423
- modDate: 1599064930049,
424
- imageMetaData: {
425
- modDate: 1716268463545,
426
- sha256: '7e1cf9d3c8c144f592af72658456031c8283bfe4a5ecce3e188c71aa7b1e590e',
427
- length: 37207,
428
- title: 'zip-line.jpg',
429
- editableAsText: false,
430
- version: 20220201,
431
- isImage: true,
432
- fileSize: 37207,
433
- name: 'zip-line.jpg',
434
- width: 270,
435
- contentType: 'image/jpeg',
436
- height: 270
437
- },
438
- publishDate: 1599064930101,
439
- description:
440
- 'Ever wondered what it is like to fly through the forest canopy? Zip-lining ais the best way to explore the forest canopy, where thick branches serve as platforms for the adventurous traveler, more than 100 feet above the forest floor.',
441
- title: 'Zip-Lining',
442
- body: '<p>Ever wondered what it is a monkey finds so fascinating about the forest canopy? Costa Rica is a pioneer in canopy exploration, where thick branches serve as platforms for the adventurous traveler, more than 100 feet above the jungle floor. If you&rsquo;re wondering why you&rsquo;d want to head to the top of a tree just to look around, remember that 90% of Costa Rica animals and 50% of plant species in rainforests live in the upper levels of the trees. When you explore that far off the ground, the view is something you&rsquo;ll never forget! A Costa Rica zip line tour, hanging bridges hike, or aerial tram tour are all fantastic ways to take advantage of Costa Rica&rsquo;s stunning forest canopy views.</p>\n<p>Almost anyone of any age and physical condition can enjoy a Costa Rica zip line adventure as it is not strenuous. Secured into a harness and attached to a sturdy cable, you will have the opportunity to fly through the rainforest canopy and experience a bird&rsquo;s eye view of the lively forest below. A Costa Rica zip line is about a five hour adventure that operates rain or shine all year and is led by bilingual guides. For the non-adrenaline junkie, the aerial tram can take you through the rainforest in comfort and safety. Prefer to linger? Hanging bridges offer panoramic views for acres, and an experienced guide will be happy to point out a variety of birds and animals.</p>',
443
- baseType: 'CONTENT',
444
- inode: '8df9a375-0386-401c-b5d6-da21c1c5c301',
445
- archived: false,
446
- ownerName: 'Admin User',
447
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
448
- working: true,
449
- locked: false,
450
- stInode: '778f3246-9b11-4a2a-a101-e7fdf111bdad',
451
- contentType: 'Activity',
452
- live: true,
453
- altTag: 'Zip-line',
454
- owner: 'dotcms.org.1',
455
- imageVersion: '/dA/8df9a375-0386-401c-b5d6-da21c1c5c301/image/zip-line.jpg',
456
- identifier: '50757fb4-75df-4e2c-8335-35d36bdb944b',
457
- image: '/dA/50757fb4-75df-4e2c-8335-35d36bdb944b/image/zip-line.jpg',
458
- imageContentAsset: '50757fb4-75df-4e2c-8335-35d36bdb944b/image',
459
- urlTitle: 'zip-lining',
460
- publishUserName: 'Admin User',
461
- publishUser: 'dotcms.org.1',
462
- languageId: 1,
463
- URL_MAP_FOR_CONTENT: '/activities/zip-lining',
464
- creationDate: 1599064930050,
465
- url: '/content.c17f9c4c-ad14-4777-ae61-334ee6c9fcbf',
466
- tags: 'ecoenthusiast,zip-lining',
467
- titleImage: 'image',
468
- modUserName: 'Admin User',
469
- urlMap: '/activities/zip-lining',
470
- hasLiveVersion: true,
471
- folder: 'SYSTEM_FOLDER',
472
- hasTitleImage: true,
473
- sortOrder: 0,
474
- modUser: 'dotcms.org.1',
475
- onNumberOfPages: 2
476
- }
477
- ]
478
- },
479
- container: {
480
- archived: false,
481
- categoryId: 'f6a7e729-56f5-4fc0-a045-9711960b7427',
482
- deleted: false,
483
- friendlyName: 'container',
484
- hostId: '48190c8c-42c4-46af-8d1a-0cd5db894797',
485
- hostName: 'demo.dotcms.com',
486
- iDate: 1687784158222,
487
- idate: 1687784158222,
488
- identifier: '69b3d24d-7e80-4be6-b04a-d352d16493ee',
489
- inode: 'f6a7e729-56f5-4fc0-a045-9711960b7427',
490
- languageId: 1,
491
- live: true,
492
- locked: false,
493
- maxContentlets: 25,
494
- title: 'Default'
495
- }
496
- },
497
- '//demo.dotcms.com/application/containers/banner/': {
498
- containerStructures: [
499
- {
500
- id: 'f87da091-44eb-4662-8cd1-16d31afa14a8',
501
- structureId: '4c441ada-944a-43af-a653-9bb4f3f0cb2b',
502
- containerInode: '1d9165ad-f8ea-4006-8017-b103eb0d9f9b',
503
- containerId: '5e8c9a71-8cae-4d96-a2f7-d25b9cf69a83',
504
- code: '#dotParse("//demo.dotcms.com/application/containers/banner/banner.vtl")',
505
- contentTypeVar: 'Banner'
506
- }
507
- ],
508
- contentlets: {
509
- 'uuid-1': [
510
- {
511
- hostName: 'demo.dotcms.com',
512
- modDate: 1716324004216,
513
- imageMetaData: {
514
- modDate: 1716268463471,
515
- sha256: 'd9c3c87a691fe062ce370ddda2e9a71fa333739260711f93d5a82f56a08c1703',
516
- length: 1158082,
517
- title: 'adventure-boat-exotic-1371360.jpg',
518
- editableAsText: false,
519
- version: 20220201,
520
- isImage: true,
521
- fileSize: 1158082,
522
- name: 'adventure-boat-exotic-1371360.jpg',
523
- width: 1400,
524
- contentType: 'image/jpeg',
525
- height: 679
526
- },
527
- link: '/store/category/apparel/#products-title',
528
- publishDate: 1716324004446,
529
- caption: 'Look Great Doing it. Stock up on New Apparel!!',
530
- title: 'Explore the World II',
531
- baseType: 'CONTENT',
532
- inode: '84534373-582a-4e62-8189-03abd0435778',
533
- archived: false,
534
- ownerName: 'Admin User',
535
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
536
- working: true,
537
- locked: false,
538
- stInode: '4c441ada-944a-43af-a653-9bb4f3f0cb2b',
539
- contentType: 'Banner',
540
- live: true,
541
- owner: 'dotcms.org.1',
542
- imageVersion:
543
- '/dA/84534373-582a-4e62-8189-03abd0435778/image/adventure-boat-exotic-1371360.jpg',
544
- identifier: '2e5d54e6-7ea3-4d72-8577-b8731b206ca0',
545
- buttonText: '20% Off - Shop Now',
546
- image: '/dA/2e5d54e6-7ea3-4d72-8577-b8731b206ca0/image/adventure-boat-exotic-1371360.jpg',
547
- imageContentAsset: '2e5d54e6-7ea3-4d72-8577-b8731b206ca0/image',
548
- publishUserName: 'Admin User',
549
- publishUser: 'dotcms.org.1',
550
- languageId: 1,
551
- creationDate: 1599247961410,
552
- textColor: '#FFFFFF',
553
- url: '/content.8b12d62d-5253-44b9-a2d0-8c4e5ec06e68',
554
- tags: 'beach',
555
- layout: '1',
556
- titleImage: 'image',
557
- modUserName: 'Admin User',
558
- hasLiveVersion: true,
559
- folder: 'SYSTEM_FOLDER',
560
- hasTitleImage: true,
561
- sortOrder: 0,
562
- modUser: 'dotcms.org.1',
563
- onNumberOfPages: 1
564
- }
565
- ]
566
- },
567
- container: {
568
- archived: false,
569
- categoryId: '1d9165ad-f8ea-4006-8017-b103eb0d9f9b',
570
- deleted: false,
571
- friendlyName: 'container',
572
- hostId: '48190c8c-42c4-46af-8d1a-0cd5db894797',
573
- hostName: 'demo.dotcms.com',
574
- iDate: 1600437115745,
575
- idate: 1600437115745,
576
- identifier: '5e8c9a71-8cae-4d96-a2f7-d25b9cf69a83',
577
- inode: '1d9165ad-f8ea-4006-8017-b103eb0d9f9b',
578
- languageId: 1,
579
- live: true,
580
- locked: false,
581
- maxContentlets: 25,
582
- sortOrder: 0,
583
- source: 'FILE',
584
- title: 'Banner',
585
- type: 'containers',
586
- useDiv: false,
587
- versionId: '5e8c9a71-8cae-4d96-a2f7-d25b9cf69a83',
588
- versionType: 'containers',
589
- working: true
590
- }
591
- },
592
- SYSTEM_CONTAINER: {
593
- containerStructures: [],
594
- contentlets: {
595
- 'uuid-1': []
596
- },
597
- container: {
598
- archived: false,
599
- categoryId: 'SYSTEM_CONTAINER',
600
- code: '<style>\n.system_container {\n border: 1px solid #b3b1b8;\n gap: 20px;\n padding: 10px;\n display: flex;\n background: white;\n margin: 20px;\n}\n\n.system_container .card_logo {\n width: 150px;\n height: 150px;\n overflow: hidden;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n \n.system_container .card_logo .material-icons {\n font-size: 150px\n}\n\n.system_container .card_logo img {\n width: 100%;\n height: 100%;\n object-fit: cover;\n object-position: center;\n}\n\n.system_container .card_body {\n width: calc(100% - 150px);\n flex-grow: 1;\n display: flex;\n flex-direction: column;\n}\n\n.system_container .card_header {\n flex-grow: 1;\n overflow: hidden;\n margin-bottom: 15px;\n}\n\n.system_container .card_footer {\n display: flex;\n align-items: center;\n gap: 10px;\n}\n\n.system_container .card_title h1 {\n overflow: hidden;\n font-size: 40px;\n margin: 0;\n margin-bottom: 10px;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.system_container .content_type {\n background-color: #b3b1b8;\n display: inline-block;\n color: white;\n padding: 4px 6px;\n text-align: center;\n border-radius: 5px;\n font-size: .75rem;\n}\n\n.system_container .lang {\n border-radius: 2px;\n font-size: 12px;\n padding: 0 0.25em;\n display: inline-block;\n background-color: transparent;\n border: solid 1px #6f5fa3;\n color: #6f5fa3;\n}\n\n.system_container .status {\n border-radius: 50%;\n border: solid 2px;\n box-sizing: border-box;\n height: 20px;\n width: 20px;\n}\n\n.system_container .status.live {\n background: #27b970;\n}\n\n.system_container .status.working {\n background: transparent;\n}\n\n@media (max-width: 640px) {\n .system_container {\n flex-direction: column;\n max-width: 250px;\n gap: 5px;\n padding: 0;\n margin: 20px auto;\n }\n \n .system_container .card_logo {\n width: 250px;\n height: 200px;\n overflow: hidden;\n font-size: 200px;\n }\n \n .system_container .card_logo .material-icons {\n font-size: 200px;\n }\n \n .system_container .card_body {\n padding: 10px;\n width: 100%;\n }\n \n .system_container .card_title {\n width: calc(100% - 20px);\n font-size: 40px;\n }\n}\n</style>\n\n\n#set($language = $languagewebapi.getLanguage("$!{dotContentMap.languageId}"))\n\n<div class="system_container">\n <div class="card_logo" id="logo-image-$!{dotContentMap.inode}"></div>\n <div class="card_body">\n <div class="card_header">\n <div class="card_title">\n <h1>$!{dotContentMap.title}</h1>\n </div>\n <span class="content_type">$!{dotContentMap.contentType.name}</span>\n </div>\n <div class="card_footer">\n <div class="status #if($dotContentMap.isLive())live#{else}working#end"></div>\n <span class="lang">$!{language}</span>\n </div>\n </div>\n</div>\n\n<script type="text/javascript">\n\n // Adding the image using JavaScript avoids displaying a broken image for milliseconds\n (function autoexecute() {\n const image = new Image();\n image.onload=imageFound;\n image.onerror=imageNotFound;\n image.src="/dA/$!{dotContentMap.inode}";\n\n function imageFound() {\n const div = document.getElementById(`logo-image-$!{dotContentMap.inode}`);\n div.appendChild(image);\n }\n\n function imageNotFound() {\n const div = document.getElementById(`logo-image-$!{dotContentMap.inode}`);\n div.innerHTML = `<span class="material-icons">$!{dotContentMap.contentType.icon}</span>`;\n }\n })()\n \n</script>',
601
- deleted: false,
602
- friendlyName: 'System Container',
603
- iDate: 1716356412597,
604
- idate: 1716356412597,
605
- identifier: 'SYSTEM_CONTAINER',
606
- inode: 'SYSTEM_CONTAINER',
607
- live: true,
608
- locked: false,
609
- useDiv: false,
610
- versionId: 'SYSTEM_CONTAINER',
611
- versionType: 'containers',
612
- working: false
613
- }
614
- }
615
- },
616
- layout: {
617
- width: '',
618
- title: 'anonymouslayout1600437132653',
619
- header: true,
620
- footer: true,
621
- body: {
622
- rows: [
623
- {
624
- columns: [
625
- {
626
- containers: [
627
- {
628
- identifier: '//demo.dotcms.com/application/containers/banner/',
629
- uuid: '1'
630
- }
631
- ],
632
- widthPercent: 100,
633
- leftOffset: 1,
634
- styleClass: 'banner-tall',
635
- preview: false,
636
- width: 12,
637
- left: 0
638
- }
639
- ],
640
- styleClass: 'p-0 banner-tall'
641
- },
642
- {
643
- columns: [
644
- {
645
- containers: [
646
- {
647
- identifier: '//demo.dotcms.com/application/containers/default/',
648
- uuid: '1'
649
- }
650
- ],
651
- widthPercent: 25,
652
- leftOffset: 1,
653
- styleClass: '',
654
- preview: false,
655
- width: 3,
656
- left: 0
657
- },
658
- {
659
- containers: [
660
- {
661
- identifier: '//demo.dotcms.com/application/containers/default/',
662
- uuid: '2'
663
- }
664
- ],
665
- widthPercent: 25,
666
- leftOffset: 4,
667
- styleClass: '',
668
- preview: false,
669
- width: 3,
670
- left: 3
671
- },
672
- {
673
- containers: [
674
- {
675
- identifier: '//demo.dotcms.com/application/containers/default/',
676
- uuid: '3'
677
- }
678
- ],
679
- widthPercent: 25,
680
- leftOffset: 7,
681
- styleClass: '',
682
- preview: false,
683
- width: 3,
684
- left: 6
685
- },
686
- {
687
- containers: [
688
- {
689
- identifier: '//demo.dotcms.com/application/containers/default/',
690
- uuid: '4'
691
- }
692
- ],
693
- widthPercent: 25,
694
- leftOffset: 10,
695
- styleClass: '',
696
- preview: false,
697
- width: 3,
698
- left: 9
699
- }
700
- ],
701
- styleClass: null
702
- },
703
- {
704
- columns: [
705
- {
706
- containers: [
707
- {
708
- identifier: 'SYSTEM_CONTAINER',
709
- uuid: '1'
710
- }
711
- ],
712
- widthPercent: 100,
713
- leftOffset: 1,
714
- styleClass: '',
715
- preview: false,
716
- width: 12,
717
- left: 0
718
- }
719
- ],
720
- styleClass: null
721
- }
722
- ]
723
- },
724
- sidebar: null
725
- },
726
- numberContents: 9,
727
- page: {
728
- __icon__: 'pageIcon',
729
- archived: false,
730
- baseType: 'HTMLPAGE',
731
- cachettl: '0',
732
- canEdit: true,
733
- canLock: true,
734
- canRead: true,
735
- canonicalUrl: '/',
736
- contentType: 'htmlpageasset',
737
- creationDate: 1599065449560,
738
- deleted: false,
739
- description: 'TravelLux - Your Destination for Exclusive Experiences',
740
- extension: 'page',
741
- folder: 'SYSTEM_FOLDER',
742
- friendlyName: 'TravelLux - Your Destination for Exclusive Experiences',
743
- hasLiveVersion: true,
744
- hasTitleImage: true,
745
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
746
- hostName: 'demo.dotcms.com',
747
- httpsRequired: false,
748
- identifier: 'a9f30020-54ef-494e-92ed-645e757171c2',
749
- inode: 'f9ce2b8e-eb06-4218-b036-9f266e2113b9',
750
- isContentlet: true,
751
- languageId: 1,
752
- live: true,
753
- liveInode: 'f9ce2b8e-eb06-4218-b036-9f266e2113b9',
754
- locked: true,
755
- lockedBy: 'dotcms.org.1',
756
- lockedByName: 'Admin User',
757
- lockedOn: 1690313868046,
758
- metaDescription:
759
- 'dotCMS provides a user-friendly interface for creating, editing, and publishing content. This starter site is designed to demonstrate some the basic features of dotCMS.',
760
- mimeType: 'application/dotpage',
761
- modDate: 1689887118429,
762
- modUser: 'dotcms.org.1',
763
- modUserName: 'Admin User',
764
- name: 'index',
765
- ogDescription:
766
- 'dotCMS provides a user-friendly interface for creating, editing, and publishing content. This starter site is designed to demonstrate some the basic features of dotCMS.',
767
- ogImage: 'eb372522595f11163666d29c786d5a9e',
768
- ogTitle: 'dotCMS Hybrid Content Management System Demo Site',
769
- ogType: 'website',
770
- owner: 'dotcms.org.1',
771
- ownerName: 'Admin User',
772
- pageTitle: 'dotCMS Demo Site',
773
- pageURI: '/index',
774
- pageUrl: 'index',
775
- path: '/index',
776
- publishDate: 1689887118802,
777
- publishUser: 'dotcms.org.1',
778
- publishUserName: 'Admin User',
779
- searchEngineIndex: 'index,follow,snippet',
780
- shortyLive: 'f9ce2b8eeb',
781
- shortyWorking: 'f9ce2b8eeb',
782
- sitemapImportance: '1.0',
783
- sortOrder: 0,
784
- stInode: 'c541abb1-69b3-4bc5-8430-5e09e5239cc8',
785
- statusIcons:
786
- "<span class='greyDotIcon' style='opacity:.4'></span><span class='liveIcon'></span><span class='lockIcon'></span>",
787
- template: 'fdc739f6-fe53-4271-9c8c-a3e05d12fcac',
788
- title: 'Home',
789
- titleImage: 'ogImage',
790
- type: 'htmlpage',
791
- url: '/index',
792
- working: true,
793
- workingInode: 'f9ce2b8e-eb06-4218-b036-9f266e2113b9'
794
- },
795
- site: {
796
- lowIndexPriority: false,
797
- variantId: 'DEFAULT',
798
- default: true,
799
- aliases: 'localhost\n127.0.0.1',
800
- inode: '59bb8831-6706-4589-9ca0-ff74016e02b2',
801
- hostname: 'demo.dotcms.com',
802
- tagStorage: 'SYSTEM_HOST',
803
- hostThumbnail: null,
804
- systemHost: false,
805
- parent: true,
806
- structureInode: '855a2d72-f2f3-4169-8b04-ac5157c4380c',
807
- name: 'demo.dotcms.com',
808
- owner: 'dotcms.org.1',
809
- permissionType: 'com.dotmarketing.portlets.contentlet.model.Contentlet',
810
- permissionId: '48190c8c-42c4-46af-8d1a-0cd5db894797',
811
- identifier: '48190c8c-42c4-46af-8d1a-0cd5db894797',
812
- modDate: 1634235141702,
813
- type: 'contentlet',
814
- live: true,
815
- host: 'SYSTEM_HOST',
816
- new: false,
817
- folder: 'SYSTEM_FOLDER',
818
- languageId: 1,
819
- modUser: 'dotcms.org.1',
820
- title: 'demo.dotcms.com',
821
- archived: false,
822
- sortOrder: 0,
823
- fileAsset: false,
824
- working: true,
825
- indexPolicyDependencies: 'DEFER',
826
- categoryId: '59bb8831-6706-4589-9ca0-ff74016e02b2',
827
- versionId: '48190c8c-42c4-46af-8d1a-0cd5db894797',
828
- contentTypeId: '855a2d72-f2f3-4169-8b04-ac5157c4380c',
829
- titleImage: null,
830
- htmlpage: false,
831
- dotAsset: false,
832
- persona: false,
833
- form: false,
834
- vanityUrl: false,
835
- keyValue: false,
836
- languageVariable: false,
837
- locked: false
838
- },
839
- template: {
840
- iDate: 1562013807321,
841
- type: 'template',
842
- owner: '',
843
- inode: '446da365-352f-4ac9-8d0d-4083e68a787e',
844
- identifier: 'fdc739f6-fe53-4271-9c8c-a3e05d12fcac',
845
- source: 'DB',
846
- title: 'anonymous_layout_1600437132653',
847
- friendlyName: '',
848
- modDate: 1716492043079,
849
- modUser: 'system',
850
- sortOrder: 0,
851
- showOnMenu: false,
852
- body: 'null',
853
- image: '',
854
- drawed: true,
855
- drawedBody:
856
- '{"width":"","title":"anonymouslayout1600437132653","header":true,"footer":true,"body":{"rows":[{"columns":[{"containers":[{"identifier":"//demo.dotcms.com/application/containers/banner/","uuid":"1"}],"widthPercent":100,"leftOffset":1,"styleClass":"banner-tall","preview":false,"width":12,"left":0}],"styleClass":"p-0 banner-tall"},{"columns":[{"containers":[{"identifier":"//demo.dotcms.com/application/containers/default/","uuid":"1"}],"widthPercent":25,"leftOffset":1,"styleClass":"","preview":false,"width":3,"left":0},{"containers":[{"identifier":"//demo.dotcms.com/application/containers/default/","uuid":"2"}],"widthPercent":25,"leftOffset":4,"styleClass":"","preview":false,"width":3,"left":3},{"containers":[{"identifier":"//demo.dotcms.com/application/containers/default/","uuid":"3"}],"widthPercent":25,"leftOffset":7,"styleClass":"","preview":false,"width":3,"left":6},{"containers":[{"identifier":"//demo.dotcms.com/application/containers/default/","uuid":"4"}],"widthPercent":25,"leftOffset":10,"styleClass":"","preview":false,"width":3,"left":9}]},{"columns":[{"containers":[{"identifier":"SYSTEM_CONTAINER","uuid":"1"}],"widthPercent":100,"leftOffset":1,"styleClass":"","preview":false,"width":12,"left":0}]}]}}',
857
- countAddContainer: 0,
858
- countContainers: 0,
859
- theme: 'd7b0ebc2-37ca-4a5a-b769-e8a3ff187661',
860
- header: 'null',
861
- footer: 'null',
862
- anonymous: true,
863
- template: false,
864
- live: false,
865
- archived: false,
866
- working: true,
867
- deleted: false,
868
- versionType: 'template',
869
- versionId: 'fdc739f6-fe53-4271-9c8c-a3e05d12fcac',
870
- permissionId: 'fdc739f6-fe53-4271-9c8c-a3e05d12fcac',
871
- name: 'anonymous_layout_1600437132653',
872
- locked: false,
873
- permissionType: 'com.dotmarketing.portlets.templates.model.Template',
874
- new: false,
875
- categoryId: '446da365-352f-4ac9-8d0d-4083e68a787e',
876
- idate: 1562013807321,
877
- canEdit: true
878
- },
879
- viewAs: {
880
- visitor: {
881
- tags: [],
882
- device: 'COMPUTER',
883
- isNew: true,
884
- userAgent: {
885
- operatingSystem: 'MAC_OS_X',
886
- browser: 'CHROME12',
887
- id: 50990865,
888
- browserVersion: {
889
- version: '0.0.0.0',
890
- majorVersion: '125',
891
- minorVersion: '0'
892
- }
893
- },
894
- referer: 'http://localhost:3000/',
895
- personas: {}
896
- },
897
- language: {
898
- id: 1,
899
- languageCode: 'en',
900
- countryCode: 'US',
901
- language: 'English',
902
- country: 'United States',
903
- isoCode: 'en-us'
904
- },
905
- mode: 'EDIT_MODE',
906
- variantId: 'DEFAULT'
907
- }
908
- };
909
-
910
- export const PageResponseOneRowMock = {
911
- ...PageResponseMock,
912
- layout: {
913
- ...PageResponseMock.layout,
914
- body: {
915
- ...PageResponseMock.layout.body,
916
- rows: [PageResponseMock.layout.body.rows[0]]
917
- }
918
- }
919
- };
920
-
921
- export const NavMock = {
922
- children: [
923
- {
924
- code: null,
925
- folder: 'fa455fb5-b961-4d0c-9e63-e79a8ba8622a',
926
- hash: 1851560015,
927
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
928
- href: '/blog',
929
- languageId: 1,
930
- order: 0,
931
- target: '_self',
932
- title: 'Travel Blog',
933
- type: 'folder'
934
- },
935
- {
936
- code: null,
937
- folder: '6c8a2ac4-36a7-4b01-b9c0-c2c1d91ddfdb',
938
- hash: 888578018,
939
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
940
- href: '/destinations',
941
- languageId: 1,
942
- order: 1,
943
- target: '_self',
944
- title: 'Destinations',
945
- type: 'folder'
946
- },
947
- {
948
- code: null,
949
- folder: '8027c7b2-61cb-46f0-ac81-3771efdfbe4c',
950
- hash: 1519987246,
951
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
952
- href: '/store',
953
- languageId: 1,
954
- order: 2,
955
- target: '_self',
956
- title: 'Store',
957
- type: 'folder'
958
- },
959
- {
960
- code: null,
961
- folder: 'd54e36f2-12da-4721-a7c5-45fd3fb652cd',
962
- hash: 1642975162,
963
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
964
- href: '/members',
965
- languageId: 1,
966
- order: 3,
967
- target: '_self',
968
- title: 'Members Only',
969
- type: 'folder'
970
- },
971
- {
972
- code: null,
973
- folder: '9c5e78a9-62ce-48e0-99ce-6817b0f5c2f3',
974
- hash: 1807344928,
975
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
976
- href: '/contact-us',
977
- languageId: 1,
978
- order: 4,
979
- target: '_self',
980
- title: 'Contact Us',
981
- type: 'folder'
982
- }
983
- ],
984
- code: null,
985
- folder: 'SYSTEM_FOLDER',
986
- hash: 994054630,
987
- host: '48190c8c-42c4-46af-8d1a-0cd5db894797',
988
- href: '/System foldersystem folder',
989
- languageId: 1,
990
- order: 0,
991
- target: '_self',
992
- title: 'System folder',
993
- type: 'folder'
994
- };
995
-
996
- export const dotcmsContentletMock: DotCMSContentlet = {
997
- archived: false,
998
- baseType: '',
999
- contentType: '',
1000
- folder: '',
1001
- hasTitleImage: false,
1002
- host: '',
1003
- hostName: '',
1004
- identifier: '',
1005
- inode: '',
1006
- languageId: 1,
1007
- live: false,
1008
- locked: false,
1009
- modDate: '',
1010
- modUser: '',
1011
- modUserName: '',
1012
- owner: '',
1013
- sortOrder: 1,
1014
- stInode: '',
1015
- title: 'This is my editable title',
1016
- titleImage: '',
1017
- url: '',
1018
- working: false
1019
- };