-
Notifications
You must be signed in to change notification settings - Fork 77
/
shell.stories.ts
1883 lines (1834 loc) · 85.4 KB
/
shell.stories.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { ShellPanel } from "../shell-panel/shell-panel";
import { ShellCenterRow } from "../shell-center-row/shell-center-row";
import { placeholderImage } from "../../../.storybook/placeholder-image";
import { boolean, modesDarkDefault } from "../../../.storybook/utils";
import { html } from "../../../support/formatting";
import { ATTRIBUTES } from "../../../.storybook/resources";
const { shellDisplayMode, position, scale } = ATTRIBUTES;
interface ShellPanelArgs extends Pick<ShellPanel, "collapsed" | "displayMode" | "resizable"> {
leadingPanelPosition: ShellPanel["position"];
trailingPanelPosition: ShellPanel["position"];
}
interface ShellCenterRowArgs extends Pick<ShellCenterRow, "detached" | "heightScale"> {
shellCenterRowPosition: ShellCenterRow["position"];
}
type ShellStoryArgs = ShellPanelArgs & ShellCenterRowArgs;
export default {
title: "Components/Shell",
args: {
collapsed: false,
displayMode: shellDisplayMode.defaultValue,
leadingPanelPosition: position.values[0],
trailingPanelPosition: position.values[1],
resizable: true,
detached: false,
heightScale: scale.values[0],
shellCenterRowPosition: position.values[1],
},
argTypes: {
displayMode: {
options: shellDisplayMode.values,
control: { type: "select" },
},
leadingPanelPosition: {
options: position.values.filter((option) => option !== "top" && option !== "bottom"),
control: { type: "select" },
},
trailingPanelPosition: {
options: position.values.filter((option) => option !== "top" && option !== "bottom"),
control: { type: "select" },
},
heightScale: {
options: scale.values,
control: { type: "select" },
},
shellCenterRowPosition: {
options: position.values.filter((option) => option !== "top" && option !== "bottom"),
control: { type: "select" },
},
},
parameters: {
chromatic: {
delay: 1000,
},
},
};
const actionBarStartContentHTML = html`
<calcite-action-group>
<calcite-action text="Add" label="Add Item" icon="plus"></calcite-action>
<calcite-action text="Save" label="Save Item" icon="save"></calcite-action>
</calcite-action-group>
<calcite-action-group>
<calcite-action text="Layers" label="View Layers" icon="layers"></calcite-action>
</calcite-action-group>
`;
const actionBarEndContentHTML = html`
<calcite-action-group>
<calcite-action text="Idea" label="Add Item" icon="lightbulb"></calcite-action>
<calcite-action text="Information" label="Save Item" icon="information"></calcite-action>
</calcite-action-group>
<calcite-action-group>
<calcite-action text="Question" label="View Layers" icon="question"></calcite-action>
</calcite-action-group>
`;
const actionBarStartHTML = html`
<calcite-action-bar class="calcite-mode-dark" slot="action-bar"> ${actionBarStartContentHTML} </calcite-action-bar>
`;
const actionBarEndHTML = html`
<calcite-action-bar slot="action-bar"> ${actionBarEndContentHTML} </calcite-action-bar>
`;
const leadingPanelHTML = html`
${actionBarStartHTML}
<calcite-panel heading="Leading panel content">
<div>Content</div>
</calcite-panel>
`;
const centerRowHTML = html`
<calcite-panel heading="Center row content">
<div>Content</div>
</calcite-panel>
`;
const bottomPanelHTML = html`
<calcite-panel heading="Panel bottom content">
<div>Content</div>
</calcite-panel>
`;
const centerRowWithActionBarHTML = html`
<calcite-action-bar slot="action-bar">
<calcite-action-group>
<calcite-action text="Save" icon="save" indicator> </calcite-action>
<calcite-action text-enabled icon="map" text="New" slot="menu-actions"> </calcite-action>
<calcite-action text-enabled icon="collection" text="Open" slot="menu-actions"> </calcite-action>
</calcite-action-group>
<calcite-action-group>
<calcite-action icon="layers" text="Layers" active> </calcite-action>
<calcite-action icon="basemap" text="Basemaps"> </calcite-action>
<calcite-action icon="legend" text="Legend"> </calcite-action>
<calcite-action icon="bookmark" text="Bookmarks"> </calcite-action>
</calcite-action-group>
<calcite-action-group>
<calcite-action text="Share" icon="share"></calcite-action>
<calcite-action text="Print" icon="print"></calcite-action>
</calcite-action-group>
<calcite-action-group slot="actions-end">
<calcite-action text="Feedback" icon="speech-bubble-plus"></calcite-action>
<calcite-action text="What's next" icon="mega-phone"></calcite-action>
</calcite-action-group>
</calcite-action-bar>
<calcite-panel heading="Center row content">Panel</calcite-panel>
`;
const trailingPanelHTML = html`
${actionBarEndHTML}
<calcite-panel heading="Trailing panel content">
<div>Content</div>
</calcite-panel>
`;
const headerHTML = html`
<header slot="header">
<h2>My Shell Header</h2>
</header>
`;
const footerHTML = `<footer slot="footer">My Shell Footer</footer>`;
const contentHTML = html(`
<div
style="
width:100%;
height:100%;
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
linear-gradient(-45deg, #ccc 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #ccc 75%),
linear-gradient(-45deg, transparent 75%, #ccc 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
"
></div>
`);
const centerRowAdvancedHTML = html(`
<calcite-tip-manager slot="center-row">
<calcite-tip-group group-title="Astronomy">
<calcite-tip heading="The Red Rocks and Blue Water">
<img slot="thumbnail" src="${placeholderImage({ width: 1000, height: 600 })}" alt="This is an image." />
<p>
This tip is how a tip should really look. It has a landscape or square image and a small amount of text
content. This paragraph is in an "info" slot.
</p>
<p>
This is another paragraph in a subsequent "info" slot. In publishing and graphic design, Lorem ipsum is a
placeholder text commonly used to demonstrate the visual form of a document without relying on meaningful
content (also called greeking). Replacing the actual content with placeholder text allows designers to design
the form of the content before the content itself has been produced.
</p>
<a href="http://www.esri.com">This is the "link" slot.</a>
</calcite-tip>
<calcite-tip heading="The Long Trees">
<img slot="thumbnail" src="${placeholderImage({ width: 1000, height: 600 })}" alt="This is an image." />
<p>This tip has an image that is a pretty tall. And the text will run out before the end of the image.</p>
<p>In astronomy, the terms object and body are often used interchangeably.</p>
<a href="http://www.esri.com">View Esri</a>
</calcite-tip>
</calcite-tip-group>
<calcite-tip heading="Square Nature">
<img slot="thumbnail" src="${placeholderImage({ width: 1000, height: 1000 })}" alt="This is an image." />
<p>This tip has an image that is square. And the text will run out before the end of the image.</p>
<p>In astronomy, the terms object and body are often used interchangeably.</p>
<p>
In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form
of a document without relying on meaningful content (also called greeking). Replacing the actual content with
placeholder text allows designers to design the form of the content before the content itself has been produced.
</p>
<a href="http://www.esri.com">View Esri</a>
</calcite-tip>
<calcite-tip heading="The lack of imagery">
<p>This tip has no image. As such, the content area will take up the entire width of the tip.</p>
<p>
This is the next paragraph and should show how wide the content area is now. Of course, the width of the overall
tip will affect things. In astronomy, the terms object and body are often used interchangeably.
</p>
<a href="http://www.esri.com">View Esri</a>
</calcite-tip>
</calcite-tip-manager>
`);
const advancedLeadingPanelHTML = html(`
${actionBarStartHTML}
<calcite-panel heading="Advanced panel example">
<calcite-block collapsible open heading="Start Content" summary="This is the primary.">
<calcite-block-content>
<calcite-action text="Play" text-enabled indicator icon="play"></calcite-action>
<calcite-action text="Extent" text-enabled icon="extent"></calcite-action>
<calcite-action text="Chart" text-enabled icon="arrow-up-right"></calcite-action>
</calcite-block-content>
</calcite-block>
<calcite-block collapsible open heading="Another Block" summary="This is the primary.">
<calcite-block-content>
<div style="height: 300px;">
<p>Cool thing.</p>
</div>
</calcite-block-content>
</calcite-block>
<calcite-block collapsible open heading="Additional Block" summary="This is the primary.">
<calcite-block-content>
<div style="height: 300px;">
<p>Cool thing.</p>
</div>
</calcite-block-content>
</calcite-block>
<calcite-block collapsible open heading="More Block" summary="This is the primary.">
<calcite-block-content>
<div style="height: 300px;">
<p>Cool thang.</p>
</div>
</calcite-block-content>
</calcite-block>
</calcite-panel>
`);
// TODO: UPDATE
const advancedTrailingPanelHTMl = html(`
${actionBarEndHTML}
<calcite-flow>
<calcite-flow-item heading="Layer settings">
<calcite-action slot="header-menu-actions" text="Cool thing" text-enabled></calcite-action>
<calcite-action slot="header-menu-actions" text="Cool thing" text-enabled></calcite-action>
<calcite-action slot="header-menu-actions" text="Cool thing" text-enabled></calcite-action>
<calcite-block collapsible open heading="End Content" summary="Select goodness">
<calcite-block-content>
<img alt="demo" src="${placeholderImage({ width: 640, height: 480 })}" width="100%" />
<calcite-block-section text="Cool things">
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
</calcite-block-section>
<calcite-block-section text="Neat things">
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
</calcite-block-section>
</calcite-block-content>
</calcite-block>
<calcite-button slot="footer" width="half" appearance="outline">Cancel</calcite-button>
<calcite-button slot="footer" width="half">Save</calcite-button>
</calcite-flow-item>
<calcite-flow-item heading="Deeper flow item">
<calcite-block collapsible open heading="End Content" summary="Select goodness">
<calcite-block-content>
<calcite-block-section text="Cool things">
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
</calcite-block-section>
<img alt="demo" src="${placeholderImage({ width: 640, height: 480 })}" width="100%" />
<calcite-block-section text="Neat things">
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
</calcite-block-section>
</calcite-block-content>
</calcite-block>
<calcite-block collapsible open heading="Even more content" summary="Select goodness">
<calcite-block-content>
<calcite-block-section text="Cool things">
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
</calcite-block-section>
<img alt="demo" src="${placeholderImage({ width: 640, height: 480 })}" width="100%" />
<calcite-block-section text="Neat things">
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
<calcite-action text="Cool thing" text-enabled></calcite-action>
</calcite-block-section>
</calcite-block-content>
</calcite-block>
<calcite-button slot="footer" width="half" appearance="outline">Cancel</calcite-button>
<calcite-button slot="footer" width="half">Save</calcite-button>
</calcite-flow-item>
</calcite-flow>
`);
export const simple = (args: ShellStoryArgs): string => html`
<calcite-shell>
${headerHTML}
<calcite-shell-panel
slot="panel-start"
${boolean("collapsed", args.collapsed)}
displayMode="${args.displayMode}"
position="${args.leadingPanelPosition}"
${boolean("resizable", args.resizable)}
>
${advancedLeadingPanelHTML}
</calcite-shell-panel>
${contentHTML}
<calcite-shell-center-row
${boolean("detached", args.detached)}
height-scale="${args.heightScale}"
position="${args.shellCenterRowPosition}"
slot="center-row"
>
${centerRowHTML}
</calcite-shell-center-row>
${centerRowAdvancedHTML}
<calcite-shell-panel
slot="panel-end"
${boolean("collapsed", args.collapsed)}
displayMode="${args.displayMode}"
position="${args.trailingPanelPosition}"
${boolean("resizable", args.resizable)}
>
${advancedTrailingPanelHTMl}
</calcite-shell-panel>
${footerHTML}
</calcite-shell>
`;
export const darkModeRTL_TestOnly = (): string => html`
<calcite-shell dir="rtl" class="calcite-mode-dark">
${headerHTML}
<calcite-shell-panel slot="panel-start" displayMode="dock" position="start">
${advancedLeadingPanelHTML}
</calcite-shell-panel>
${contentHTML}
<calcite-shell-center-row height-scale="s" position="end" slot="center-row">
${centerRowHTML}
</calcite-shell-center-row>
${contentHTML} ${centerRowAdvancedHTML}
<calcite-shell-panel slot="panel-end" displayMode="dock" position="end">
${advancedTrailingPanelHTMl}
</calcite-shell-panel>
${footerHTML}
</calcite-shell>
`;
darkModeRTL_TestOnly.parameters = { themes: modesDarkDefault };
const closedPanelsHtml: string[] = [];
["float", "float-content"].forEach((d, i) => {
closedPanelsHtml[i] = html(`<calcite-shell content-behind>
<calcite-shell-panel slot="panel-start" display-mode="${d}">
<calcite-action-bar slot="action-bar">
<calcite-action data-action-id="layers" icon="layers" text="Layers"></calcite-action>
<calcite-action data-action-id="basemaps" icon="basemap" text="Basemaps"></calcite-action>
<calcite-action data-action-id="legend" icon="legend" text="Legend"></calcite-action>
<calcite-action data-action-id="bookmarks" icon="bookmark" text="Bookmarks"></calcite-action>
<calcite-action data-action-id="print" icon="print" text="Print"></calcite-action>
</calcite-action-bar>
<calcite-panel heading="Layers" height-scale="l" data-panel-id="layers" closable closed>
<div id="layers-container"></div>
</calcite-panel>
<calcite-panel heading="Basemaps" height-scale="l" data-panel-id="basemaps" closable closed>
<div id="basemaps-container"></div>
</calcite-panel>
<calcite-panel heading="Legend" height-scale="l" data-panel-id="legend" closable closed>
<div id="legend-container"></div>
</calcite-panel>
<calcite-panel heading="Bookmarks" height-scale="l" data-panel-id="bookmarks" closable closed>
<div id="bookmarks-container"></div>
</calcite-panel>
<calcite-panel heading="Print" height-scale="l" data-panel-id="print" closable closed>
<div id="print-container"></div>
</calcite-panel>
</calcite-shell-panel>
</calcite-shell>`);
});
export const closedPanelsFloat = (): string => closedPanelsHtml[0];
export const closedPanelsFloatContent = (): string => closedPanelsHtml[1];
const endPanelHtml: string[] = [];
["float", "float-content"].forEach((d, i) => {
endPanelHtml[i] = html(`<calcite-shell content-behind>
<header slot="header">
<h2>My Shell Header</h2>
</header>
<div
style="
width:100%;
height:100%;
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
linear-gradient(-45deg, #ccc 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #ccc 75%),
linear-gradient(-45deg, transparent 75%, #ccc 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
"
></div>
<calcite-shell-panel slot="panel-end" position="end" display-mode="${d}">
<calcite-action-bar slot="action-bar">
<calcite-action-group>
<calcite-action text="Idea" label="Add Item" icon="lightbulb" appearance="solid" scale="m"></calcite-action>
<calcite-action
text="Information"
label="Save Item"
icon="information"
appearance="solid"
scale="m"
></calcite-action>
</calcite-action-group>
<calcite-action-group>
<calcite-action
text="Question"
label="View Layers"
icon="question"
appearance="solid"
scale="m"
></calcite-action>
</calcite-action-group>
</calcite-action-bar>
<calcite-flow>
<calcite-flow-item heading="Layer settings">
<calcite-action
slot="header-menu-actions"
text="Cool thing"
text-enabled
appearance="solid"
scale="m"
></calcite-action>
<calcite-action
slot="header-menu-actions"
text="Cool thing"
text-enabled
appearance="solid"
scale="m"
></calcite-action>
<calcite-action
slot="header-menu-actions"
text="Cool thing"
text-enabled
appearance="solid"
scale="m"
></calcite-action>
<calcite-block collapsible open heading="End Content" summary="Select goodness">
<calcite-block-content>
<img
alt="demo"
src="data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22640%22%20height%3D%22480%22%20viewBox%3D%220%200%20640%20480%22%3E%20%3Crect%20fill%3D%22%23ddd%22%20width%3D%22640%22%20height%3D%22480%22%2F%3E%20%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2296%22%20dy%3D%2233.599999999999994%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E640%C3%97480%3C%2Ftext%3E%20%3C%2Fsvg%3E"
width="100%"
/>
<calcite-block-section text="Cool things" toggle-display="button">
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
</calcite-block-section>
<calcite-block-section text="Neat things" toggle-display="button">
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
</calcite-block-section>
</calcite-block-content>
</calcite-block>
<calcite-button
slot="footer"
width="half"
appearance="outline"
alignment="center"
kind="brand"
scale="m"
>
Cancel
</calcite-button>
<calcite-button
slot="footer"
width="half"
alignment="center"
appearance="solid"
kind="brand"
scale="m"
>
Save
</calcite-button>
</calcite-flow-item>
<calcite-flow-item heading="Deeper flow item" show-back-button>
<calcite-block collapsible open heading="End Content" summary="Select goodness">
<calcite-block-content>
<calcite-block-section text="Cool things" toggle-display="button">
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
</calcite-block-section>
<img
alt="demo"
src="data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22640%22%20height%3D%22480%22%20viewBox%3D%220%200%20640%20480%22%3E%20%3Crect%20fill%3D%22%23ddd%22%20width%3D%22640%22%20height%3D%22480%22%2F%3E%20%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2296%22%20dy%3D%2233.599999999999994%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E640%C3%97480%3C%2Ftext%3E%20%3C%2Fsvg%3E"
width="100%"
/>
<calcite-block-section text="Neat things" toggle-display="button">
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
</calcite-block-section>
</calcite-block-content>
</calcite-block>
<calcite-block collapsible open heading="Even more content" summary="Select goodness">
<calcite-block-content>
<calcite-block-section text="Cool things" toggle-display="button">
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
</calcite-block-section>
<img
alt="demo"
src="data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22640%22%20height%3D%22480%22%20viewBox%3D%220%200%20640%20480%22%3E%20%3Crect%20fill%3D%22%23ddd%22%20width%3D%22640%22%20height%3D%22480%22%2F%3E%20%3Ctext%20fill%3D%22rgba%280%2C0%2C0%2C0.5%29%22%20font-family%3D%22sans-serif%22%20font-size%3D%2296%22%20dy%3D%2233.599999999999994%22%20font-weight%3D%22bold%22%20x%3D%2250%25%22%20y%3D%2250%25%22%20text-anchor%3D%22middle%22%3E640%C3%97480%3C%2Ftext%3E%20%3C%2Fsvg%3E"
width="100%"
/>
<calcite-block-section text="Neat things" toggle-display="button">
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
<calcite-action text="Cool thing" text-enabled appearance="solid" scale="m"></calcite-action>
</calcite-block-section>
</calcite-block-content>
</calcite-block>
<calcite-button
slot="footer"
width="half"
appearance="outline"
alignment="center"
kind="brand"
scale="m"
>
Cancel
</calcite-button>
<calcite-button
slot="footer"
width="half"
alignment="center"
appearance="solid"
kind="brand"
scale="m"
>
Save
</calcite-button>
</calcite-flow-item>
</calcite-flow>
</calcite-shell-panel>
<footer slot="footer">My Shell Footer</footer>
</calcite-shell>`);
});
export const endPanelFloat_TestOnly = (): string => endPanelHtml[0];
export const endPanelFloatContent_TestOnly = (): string => endPanelHtml[1];
export const slottedModalAndAlert = (): string =>
html(`
<main>
<p class="padded-content">
<calcite-notice width="full" open><span slot="title">Other page content outside of shell</span></calcite-notice>
Master cleanse occupy lo-fi meh. Green juice williamsburg XOXO man bun ascot fit. Knausgaard heirloom four dollar
toast DSA chicharrones, typewriter chia raw denim. Bicycle rights mustache humblebrag, mixtape slow-carb retro
vibecession franzen chia. Bespoke coloring book hot chicken literally bushwick succulents wayfarers. Dreamcatcher
taiyaki celiac pork belly migas, fashion axe beard shabby chic. Forage chia twee bushwick readymade yuccie praxis
enamel pin cred mukbang bicycle rights VHS iPhone pour-over subway tile.
</p>
<calcite-shell
style="
width:100%;
height:500px;
max-height:80%;
position:relative;
"
>
<div class="gnav" slot="header">Header Example</div>
<calcite-modal open slot="modals" docked><span slot="header">Modal slotted in Shell</span></calcite-modal>
<calcite-alert open slot="alerts" placement="top-end"
><span slot="title">Alert slotted in Shell</span>
</calcite-alert>
<calcite-shell-panel id="primary-panel" slot="panel-start" position="start">
<calcite-action-bar slot="action-bar">
<calcite-action-group>
<calcite-action text="Save" icon="save" indicator> </calcite-action>
<calcite-action text-enabled icon="map" text="New" slot="menu-actions"> </calcite-action>
<calcite-action text-enabled icon="collection" text="Open" slot="menu-actions"> </calcite-action>
</calcite-action-group>
<calcite-action-group>
<calcite-action icon="layers" text="Layers" active> </calcite-action>
<calcite-action icon="basemap" text="Basemaps"> </calcite-action>
<calcite-action icon="legend" text="Legend"> </calcite-action>
<calcite-action icon="bookmark" text="Bookmarks"> </calcite-action>
</calcite-action-group>
</calcite-action-bar>
<calcite-panel heading="Panel">
<div class="padded-content">Panel content<br />Padding is fake.</div>
</calcite-panel>
</calcite-shell-panel>
<calcite-shell-panel slot="panel-end" position="end">
<calcite-action-bar slot="action-bar">
<calcite-tooltip slot="expand-tooltip" label="tooltip" disable-pointer>Add layers</calcite-tooltip>
<calcite-action-group>
<calcite-action text="Layer properties" icon="sliders-horizontal"> </calcite-action>
<calcite-action text="Styles" icon="shapes"> </calcite-action>
<calcite-action text="Filter" icon="layer-filter"> </calcite-action>
<calcite-action text="Configure pop-ups" icon="popup" active> </calcite-action>
<calcite-action text-enabled text="Configure attributes" icon="feature-details" slot="menu-actions">
</calcite-action>
<calcite-action text-enabled text="Labels" icon="label" slot="menu-actions"> </calcite-action>
<calcite-action text-enabled text="Tablew" icon="table" slot="menu-actions"> </calcite-action>
</calcite-action-group>
</calcite-action-bar>
<calcite-flow>
<calcite-flow-item heading="Flow 01">
<div class="padded-content">Flow 01 content<br />Padding is fake.</div>
</calcite-flow-item>
<calcite-flow-item heading="Flow 02">
<div class="padded-content">Flow 02 content<br />Padding is fake.</div>
</calcite-flow-item>
</calcite-flow>
</calcite-shell-panel>
<calcite-panel heading="Main content">
<div class="padded-content">The borders are only applied to "known" components.<br />Padding is fake.</div>
</calcite-panel>
<footer slot="footer">Footer Example</footer>
</calcite-shell>
<p class="padded-content">
<calcite-notice width="full" open><span slot="title">Notice outside of shell</span></calcite-notice>
Edison bulb iceland narwhal fit DSA. Activated charcoal dreamcatcher shabby chic, microdosing gluten-free locavore
chambray tumblr hella sus ugh cronut tofu. Vibecession air plant etsy, vape church-key narwhal activated charcoal
offal kombucha hella. Actually mumblecore butcher, iceland man bun prism blog taiyaki roof party portland hashtag.
</p>
</main>`);
export const slottedSheetOverlay = (): string =>
html(`
<p class="padded-content">
<calcite-notice width="full" open><span slot="title">Other page content outside of shell</span></calcite-notice>
Master cleanse occupy lo-fi meh. Green juice williamsburg XOXO man bun ascot fit. Knausgaard heirloom four dollar
toast DSA chicharrones, typewriter chia raw denim. Bicycle rights mustache humblebrag, mixtape slow-carb retro
vibecession franzen chia. Bespoke coloring book hot chicken literally bushwick succulents wayfarers. Dreamcatcher
taiyaki celiac pork belly migas, fashion axe beard shabby chic. Forage chia twee bushwick readymade yuccie praxis
enamel pin cred mukbang bicycle rights VHS iPhone pour-over subway tile.
</p>
<calcite-shell
style="
width:100%;
height:500px;
max-height:80%;
position:relative;
"
>
<div class="gnav" slot="header">Header Example</div>
<calcite-sheet open slot="sheets" label="libero nunc" position="inline-start" display-mode="overlay">
<calcite-panel closable heading="Ultrices neque"
><p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip
ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
</p>
<calcite-button slot="footer" width="half" appearance="outline">tincidunt lobortis</calcite-button>
<calcite-button slot="footer" width="half" appearance="outline">amet porttitor</calcite-button>
</calcite-panel>
</calcite-sheet>
<calcite-shell-panel id="primary-panel" slot="panel-start" position="start">
<calcite-action-bar slot="action-bar">
<calcite-action-group>
<calcite-action text="Save" icon="save" indicator> </calcite-action>
<calcite-action text-enabled icon="map" text="New" slot="menu-actions"> </calcite-action>
<calcite-action text-enabled icon="collection" text="Open" slot="menu-actions"> </calcite-action>
</calcite-action-group>
<calcite-action-group>
<calcite-action icon="layers" text="Layers" active> </calcite-action>
<calcite-action icon="basemap" text="Basemaps"> </calcite-action>
<calcite-action icon="legend" text="Legend"> </calcite-action>
<calcite-action icon="bookmark" text="Bookmarks"> </calcite-action>
</calcite-action-group>
</calcite-action-bar>
<calcite-panel heading="Panel">
<div class="padded-content">Panel content<br />Padding is fake.</div>
</calcite-panel>
</calcite-shell-panel>
<calcite-shell-panel slot="panel-end" position="end">
<calcite-action-bar slot="action-bar">
<calcite-tooltip slot="expand-tooltip" label="tooltip" disable-pointer>Add layers</calcite-tooltip>
<calcite-action-group>
<calcite-action text="Layer properties" icon="sliders-horizontal"> </calcite-action>
<calcite-action text="Styles" icon="shapes"> </calcite-action>
<calcite-action text="Filter" icon="layer-filter"> </calcite-action>
<calcite-action text="Configure pop-ups" icon="popup" active> </calcite-action>
<calcite-action text-enabled text="Configure attributes" icon="feature-details" slot="menu-actions">
</calcite-action>
<calcite-action text-enabled text="Labels" icon="label" slot="menu-actions"> </calcite-action>
<calcite-action text-enabled text="Tablew" icon="table" slot="menu-actions"> </calcite-action>
</calcite-action-group>
</calcite-action-bar>
<calcite-flow>
<calcite-flow-item heading="Flow 01">
<div class="padded-content">Flow 01 content<br />Padding is fake.</div>
</calcite-flow-item>
<calcite-flow-item heading="Flow 02">
<div class="padded-content">Flow 02 content<br />Padding is fake.</div>
</calcite-flow-item>
</calcite-flow>
</calcite-shell-panel>
<calcite-panel heading="Main content">
<div class="padded-content">The borders are only applied to "known" components.<br />Padding is fake.</div>
</calcite-panel>
<footer slot="footer">Footer Example</footer>
</calcite-shell>
<p class="padded-content">
<calcite-notice width="full" open><span slot="title">Notice outside of shell</span></calcite-notice>
Edison bulb iceland narwhal fit DSA. Activated charcoal dreamcatcher shabby chic, microdosing gluten-free locavore
chambray tumblr hella sus ugh cronut tofu. Vibecession air plant etsy, vape church-key narwhal activated charcoal
offal kombucha hella. Actually mumblecore butcher, iceland man bun prism blog taiyaki roof party portland hashtag.
</p>
<script>
document.addEventListener("calcitePanelClose", () => {
document.querySelector("calcite-sheet").open = false;
});
</script>
`);
const slottedSheetHtml: string[] = [];
["float", "float-content"].forEach((d, i) => {
slottedSheetHtml[i] = html(`
<p class="padded-content">
<calcite-notice width="full" open><span slot="title">Other page content outside of shell</span></calcite-notice>
Master cleanse occupy lo-fi meh. Green juice williamsburg XOXO man bun ascot fit. Knausgaard heirloom four dollar
toast DSA chicharrones, typewriter chia raw denim. Bicycle rights mustache humblebrag, mixtape slow-carb retro
vibecession franzen chia. Bespoke coloring book hot chicken literally bushwick succulents wayfarers. Dreamcatcher
taiyaki celiac pork belly migas, fashion axe beard shabby chic. Forage chia twee bushwick readymade yuccie praxis
enamel pin cred mukbang bicycle rights VHS iPhone pour-over subway tile.
</p>
<calcite-shell
style="
width:100%;
height:500px;
max-height:80%;
position:relative;
"
>
<div class="gnav" slot="header">Header Example</div>
<calcite-sheet open slot="sheets" label="libero nunc" position="inline-start" display-mode="${d}">
<calcite-panel closable heading="Ultrices neque"
><p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip
ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.
</p>
<calcite-button slot="footer" width="half" appearance="outline">tincidunt lobortis</calcite-button>
<calcite-button slot="footer" width="half" appearance="outline">amet porttitor</calcite-button>
</calcite-panel>
</calcite-sheet>
<calcite-shell-panel id="primary-panel" slot="panel-start" position="start">
<calcite-action-bar slot="action-bar">
<calcite-action-group>
<calcite-action text="Save" icon="save" indicator> </calcite-action>
<calcite-action text-enabled icon="map" text="New" slot="menu-actions"> </calcite-action>
<calcite-action text-enabled icon="collection" text="Open" slot="menu-actions"> </calcite-action>
</calcite-action-group>
<calcite-action-group>
<calcite-action icon="layers" text="Layers" active> </calcite-action>
<calcite-action icon="basemap" text="Basemaps"> </calcite-action>
<calcite-action icon="legend" text="Legend"> </calcite-action>
<calcite-action icon="bookmark" text="Bookmarks"> </calcite-action>
</calcite-action-group>
</calcite-action-bar>
<calcite-panel heading="Panel">
<div class="padded-content">Panel content<br />Padding is fake.</div>
</calcite-panel>
</calcite-shell-panel>
<calcite-shell-panel slot="panel-end" position="end">
<calcite-action-bar slot="action-bar">
<calcite-tooltip slot="expand-tooltip" label="tooltip" disable-pointer>Add layers</calcite-tooltip>
<calcite-action-group>
<calcite-action text="Layer properties" icon="sliders-horizontal"> </calcite-action>
<calcite-action text="Styles" icon="shapes"> </calcite-action>
<calcite-action text="Filter" icon="layer-filter"> </calcite-action>
<calcite-action text="Configure pop-ups" icon="popup" active> </calcite-action>
<calcite-action text-enabled text="Configure attributes" icon="feature-details" slot="menu-actions">
</calcite-action>
<calcite-action text-enabled text="Labels" icon="label" slot="menu-actions"> </calcite-action>
<calcite-action text-enabled text="Tablew" icon="table" slot="menu-actions"> </calcite-action>
</calcite-action-group>
</calcite-action-bar>
<calcite-flow>
<calcite-flow-item heading="Flow 01">
<div class="padded-content">Flow 01 content<br />Padding is fake.</div>
</calcite-flow-item>
<calcite-flow-item heading="Flow 02">
<div class="padded-content">Flow 02 content<br />Padding is fake.</div>
</calcite-flow-item>
</calcite-flow>
</calcite-shell-panel>
<calcite-panel heading="Main content">
<div class="padded-content">The borders are only applied to "known" components.<br />Padding is fake.</div>
</calcite-panel>
<footer slot="footer">Footer Example</footer>
</calcite-shell>
<p class="padded-content">
<calcite-notice width="full" open><span slot="title">Notice outside of shell</span></calcite-notice>
Edison bulb iceland narwhal fit DSA. Activated charcoal dreamcatcher shabby chic, microdosing gluten-free locavore
chambray tumblr hella sus ugh cronut tofu. Vibecession air plant etsy, vape church-key narwhal activated charcoal
offal kombucha hella. Actually mumblecore butcher, iceland man bun prism blog taiyaki roof party portland hashtag.
</p>
<script>
document.addEventListener("calcitePanelClose", () => {
document.querySelector("calcite-sheet").open = false;
});
</script>
`);
});
export const slottedSheetFloat = (): string => slottedSheetHtml[0];
export const slottedSheetFloatContent = (): string => slottedSheetHtml[1];
export const contentBehind = (): string =>
html(`<calcite-shell content-behind>
${headerHTML}
<calcite-shell-panel slot="panel-start">${leadingPanelHTML}</calcite-shell-panel>
${contentHTML}
<calcite-shell-center-row slot="center-row">${centerRowHTML}</calcite-shell-center-row>
<calcite-shell-panel slot="panel-end">${trailingPanelHTML}</calcite-shell-panel>
${footerHTML}
</calcite-shell>`);
export const slottedPanelTop_TestOnly = (): string =>
html(`<calcite-shell
style="
width:100%;
height:500px;
max-height:80%;
position:relative;
"
>
<div
style="
width:100%;
height:100%;
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
linear-gradient(-45deg, #ccc 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #ccc 75%),
linear-gradient(-45deg, transparent 75%, #ccc 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;"></div>
<div class="gnav" slot="header">Header Example</div>
<calcite-shell-center-row slot="panel-top">${centerRowHTML}</calcite-shell-center-row>
<footer slot="footer">Footer Example</footer>
</calcite-shell>
`);
const contentBehindPanelBottomHtml: string[] = [];
["float", "float-content"].forEach((d, i) => {
contentBehindPanelBottomHtml[i] = html(`
<calcite-shell
content-behind
style="
width:700px;
height:700px;
position:relative;
"
>
<div
style="
width:100%;
height:100%;
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
linear-gradient(-45deg, #ccc 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #ccc 75%),
linear-gradient(-45deg, transparent 75%, #ccc 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;"></div>
<calcite-shell-panel slot="panel-bottom" display-mode="${d}" layout="horizontal">${bottomPanelHTML}</calcite-shell-panel>
</calcite-shell>
`);
});
export const contentBehindPanelBottomFloat = (): string => contentBehindPanelBottomHtml[0];
export const contentBehindPanelBottomFloatContent = (): string => contentBehindPanelBottomHtml[1];
export const slottedPanelBottom_TestOnly = (): string =>
html(`
<calcite-shell
style="
width:100%;
height:500px;
max-height:80%;
position:relative;
"
>
<div
style="
width:100%;
height:100%;
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
linear-gradient(-45deg, #ccc 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #ccc 75%),
linear-gradient(-45deg, transparent 75%, #ccc 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;"></div>
<div class="gnav" slot="header">Header Example</div>
<calcite-shell-center-row slot="panel-bottom">${centerRowHTML}</calcite-shell-center-row>
<footer slot="footer">Footer Example</footer>
</calcite-shell>
`);
export const slottedPanelTopAndBottom = (): string =>
html(`
<calcite-shell
style="
width:100%;
height:500px;
max-height:80%;
position:relative;
"
>
<div
style="
width:100%;
height:100%;
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
linear-gradient(-45deg, #ccc 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #ccc 75%),
linear-gradient(-45deg, transparent 75%, #ccc 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;"></div>
<div class="gnav" slot="header">Header Example</div>
<calcite-shell-center-row slot="panel-top">${centerRowHTML}</calcite-shell-center-row>
<calcite-shell-center-row slot="panel-bottom">${centerRowHTML}</calcite-shell-center-row>
<footer slot="footer">Footer Example</footer>
</calcite-shell>
`);
export const slottedPanelTopAndBottomAndSides = (): string =>
html(`
<calcite-shell
style="
width:100%;
height:500px;
max-height:80%;
position:relative;
">
<div
style="
width:100%;
height:100%;
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
linear-gradient(-45deg, #ccc 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #ccc 75%),
linear-gradient(-45deg, transparent 75%, #ccc 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;"></div>
<div class="gnav" slot="header">Header Example</div>
<calcite-shell-panel
slot="panel-start"
displayMode="dock"
position="start"
display-mode="dock"
width-scale="m"
layout="vertical"
>
${advancedLeadingPanelHTML}
</calcite-shell-panel>
<calcite-shell-panel
slot="panel-end"
displayMode="dock"
position="end"
display-mode="dock"
width-scale="m"
layout="vertical"
>
${advancedTrailingPanelHTMl}
</calcite-shell-panel>
<calcite-shell-center-row slot="panel-top">${centerRowHTML}</calcite-shell-center-row>
<calcite-shell-center-row slot="panel-bottom">${centerRowHTML}</calcite-shell-center-row>
<footer slot="footer">Footer Example</footer>
</calcite-shell>
`);
export const shellCenterRowWithActionBar_TestOnly = (): string =>
html(`<calcite-shell content-behind>
${headerHTML}
<calcite-shell-panel slot="panel-start">${leadingPanelHTML}</calcite-shell-panel>
${contentHTML}
<calcite-shell-center-row slot="center-row">${centerRowWithActionBarHTML}</calcite-shell-center-row>
<calcite-shell-panel slot="panel-end">${trailingPanelHTML}</calcite-shell-panel>
${footerHTML}
</calcite-shell>`);
export const shellPanelZIndex_TestOnly = (): string =>