@salesforcedevs/docs-components 1.30.1-node22-3 → 1.31.0-md-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lwc.config.json +4 -0
- package/package.json +1 -1
- package/src/modules/doc/amfReference/amfReference.html +1 -0
- package/src/modules/doc/amfReference/amfReference.ts +54 -10
- package/src/modules/doc/amfReference/types.ts +5 -0
- package/src/modules/doc/contentActionToolbar/contentActionToolbar.css +31 -0
- package/src/modules/doc/contentActionToolbar/contentActionToolbar.html +53 -0
- package/src/modules/doc/contentActionToolbar/contentActionToolbar.ts +151 -0
- package/src/modules/doc/contentActionToolbar/contentActionToolbarMocks.ts +48 -0
- package/src/modules/doc/contentLayout/contentLayout.html +1 -1
- package/src/modules/doc/contentLayout/contentLayout.ts +116 -2
- package/src/modules/doc/header/header.html +0 -1
- package/src/modules/doc/lwcContentLayout/lwcContentLayout.html +1 -1
- package/src/modules/doc/redocReference/redocReference.ts +151 -0
- package/src/modules/docUtils/searchClient/searchClient.ts +160 -0
- package/src/modules/docUtils/searchController/__mocks__/searchController.ts +90 -0
- package/src/modules/docUtils/searchController/searchController.ts +420 -0
- package/src/modules/docUtils/searchLocale/searchLocale.ts +85 -0
- package/.npmrc +0 -1
package/lwc.config.json
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
{ "npm": "@salesforcedevs/dw-components" }
|
|
6
6
|
],
|
|
7
7
|
"expose": [
|
|
8
|
+
"doc/contentActionToolbar",
|
|
8
9
|
"doc/amfReference",
|
|
9
10
|
"doc/banner",
|
|
10
11
|
"doc/localeBanner",
|
|
@@ -26,6 +27,9 @@
|
|
|
26
27
|
"doc/specificationContent",
|
|
27
28
|
"doc/versionPicker",
|
|
28
29
|
"doc/xmlContent",
|
|
30
|
+
"docUtils/searchClient",
|
|
31
|
+
"docUtils/searchController",
|
|
32
|
+
"docUtils/searchLocale",
|
|
29
33
|
"docUtils/utils"
|
|
30
34
|
]
|
|
31
35
|
}
|
package/package.json
CHANGED
|
@@ -37,6 +37,7 @@ type NavigationItem = {
|
|
|
37
37
|
isExpanded: boolean;
|
|
38
38
|
children: ParsedMarkdownTopic[];
|
|
39
39
|
isChildrenLoading: boolean;
|
|
40
|
+
showForwardArrow?: boolean;
|
|
40
41
|
};
|
|
41
42
|
|
|
42
43
|
export default class AmfReference extends LightningElement {
|
|
@@ -72,6 +73,8 @@ export default class AmfReference extends LightningElement {
|
|
|
72
73
|
return this.isSpecBasedReference(this._currentReferenceId);
|
|
73
74
|
}
|
|
74
75
|
|
|
76
|
+
@api showContentActionToolbar = false;
|
|
77
|
+
|
|
75
78
|
@api
|
|
76
79
|
get referenceSetConfig(): ReferenceSetConfig {
|
|
77
80
|
return this._referenceSetConfig;
|
|
@@ -204,6 +207,7 @@ export default class AmfReference extends LightningElement {
|
|
|
204
207
|
|
|
205
208
|
_boundOnApiNavigationChanged;
|
|
206
209
|
_boundUpdateSelectedItemFromUrlQuery;
|
|
210
|
+
_boundOnPageShow;
|
|
207
211
|
|
|
208
212
|
constructor() {
|
|
209
213
|
super();
|
|
@@ -212,6 +216,7 @@ export default class AmfReference extends LightningElement {
|
|
|
212
216
|
this.onApiNavigationChanged.bind(this);
|
|
213
217
|
this._boundUpdateSelectedItemFromUrlQuery =
|
|
214
218
|
this.updateSelectedItemFromUrlQuery.bind(this);
|
|
219
|
+
this._boundOnPageShow = this.onPageShow.bind(this);
|
|
215
220
|
}
|
|
216
221
|
|
|
217
222
|
connectedCallback(): void {
|
|
@@ -223,6 +228,7 @@ export default class AmfReference extends LightningElement {
|
|
|
223
228
|
"popstate",
|
|
224
229
|
this._boundUpdateSelectedItemFromUrlQuery
|
|
225
230
|
);
|
|
231
|
+
window.addEventListener("pageshow", this._boundOnPageShow);
|
|
226
232
|
}
|
|
227
233
|
|
|
228
234
|
disconnectedCallback(): void {
|
|
@@ -234,6 +240,22 @@ export default class AmfReference extends LightningElement {
|
|
|
234
240
|
"popstate",
|
|
235
241
|
this._boundUpdateSelectedItemFromUrlQuery
|
|
236
242
|
);
|
|
243
|
+
window.removeEventListener("pageshow", this._boundOnPageShow);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* On bfcache restore, reset the sidebar selection so the tree re-syncs
|
|
248
|
+
* its highlighted tile with the current URL.
|
|
249
|
+
*/
|
|
250
|
+
protected onPageShow(event: PageTransitionEvent): void {
|
|
251
|
+
if (!event.persisted) {
|
|
252
|
+
return;
|
|
253
|
+
}
|
|
254
|
+
const currentPath = window.location.pathname;
|
|
255
|
+
this.selectedSidebarValue = "";
|
|
256
|
+
Promise.resolve().then(() => {
|
|
257
|
+
this.selectedSidebarValue = currentPath;
|
|
258
|
+
});
|
|
237
259
|
}
|
|
238
260
|
|
|
239
261
|
renderedCallback(): void {
|
|
@@ -443,16 +465,21 @@ export default class AmfReference extends LightningElement {
|
|
|
443
465
|
let navItemChildren = [] as ParsedMarkdownTopic[];
|
|
444
466
|
let isChildrenLoading = false;
|
|
445
467
|
if (amfConfig.referenceType !== REFERENCE_TYPES.markdown) {
|
|
446
|
-
if (amfConfig.
|
|
447
|
-
|
|
448
|
-
(
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
468
|
+
if (amfConfig.amf) {
|
|
469
|
+
if (amfConfig.isSelected) {
|
|
470
|
+
const amfPromise = this.fetchAmf(amfConfig).then(
|
|
471
|
+
(amfJson) => {
|
|
472
|
+
this.updateModel(amfConfig.id, amfJson);
|
|
473
|
+
this.assignNavigationItemsFromAmf(
|
|
474
|
+
amfConfig,
|
|
475
|
+
index
|
|
476
|
+
);
|
|
477
|
+
}
|
|
478
|
+
);
|
|
479
|
+
this.amfFetchPromiseMap[amfConfig.id] = amfPromise;
|
|
480
|
+
}
|
|
481
|
+
isChildrenLoading = true;
|
|
454
482
|
}
|
|
455
|
-
isChildrenLoading = true;
|
|
456
483
|
} else {
|
|
457
484
|
const isExpandChildrenEnabled = this.isExpandChildrenEnabled(
|
|
458
485
|
amfConfig.id
|
|
@@ -473,13 +500,30 @@ export default class AmfReference extends LightningElement {
|
|
|
473
500
|
amfConfig.isSelected ||
|
|
474
501
|
this.isExpandChildrenEnabled(amfConfig.id),
|
|
475
502
|
children: navItemChildren,
|
|
476
|
-
isChildrenLoading
|
|
503
|
+
isChildrenLoading,
|
|
504
|
+
showForwardArrow: this.resolveNavRenderWith(amfConfig)
|
|
477
505
|
};
|
|
478
506
|
this.parentReferenceUrls.push(amfConfig.href);
|
|
479
507
|
}
|
|
480
508
|
this.navigation = navAmfOrder;
|
|
481
509
|
}
|
|
482
510
|
|
|
511
|
+
/**
|
|
512
|
+
* Determines whether the sidebar tile should render a forward arrow for
|
|
513
|
+
* this reference. Honors `redoc` set on the config, and also infers it
|
|
514
|
+
* for non-markdown references that have no AMF URL (i.e. those rendered
|
|
515
|
+
* by Redoc).
|
|
516
|
+
*/
|
|
517
|
+
private resolveNavRenderWith(amfConfig: AmfConfig): boolean {
|
|
518
|
+
if (amfConfig.renderWith) {
|
|
519
|
+
return amfConfig.renderWith === "redoc";
|
|
520
|
+
}
|
|
521
|
+
return (
|
|
522
|
+
amfConfig.referenceType !== REFERENCE_TYPES.markdown &&
|
|
523
|
+
!amfConfig.amf
|
|
524
|
+
);
|
|
525
|
+
}
|
|
526
|
+
|
|
483
527
|
/**
|
|
484
528
|
* Returns a boolean indicating whether the children should be expanded or not.
|
|
485
529
|
*/
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
@import "dxHelpers/reset";
|
|
2
|
+
|
|
3
|
+
:host {
|
|
4
|
+
display: block;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.toolbar {
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
gap: var(--dx-g-spacing-smd);
|
|
11
|
+
margin-bottom: var(--dx-g-spacing-lg);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.toolbar-button {
|
|
15
|
+
--dx-c-button-font-weight: var(--dx-g-font-demi);
|
|
16
|
+
--dx-c-button-line-height: var(--dx-g-spacing-mlg);
|
|
17
|
+
--dx-c-button-letter-spacing: 0.005em;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.divider {
|
|
21
|
+
width: 1px;
|
|
22
|
+
height: var(--dx-g-spacing-md);
|
|
23
|
+
background-color: var(--dx-g-gray-70);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@media screen and (max-width: 480px) {
|
|
27
|
+
.toolbar-button_copy-url,
|
|
28
|
+
.divider_copy-url {
|
|
29
|
+
display: none;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="toolbar" lwc:if={markdownUrl}>
|
|
3
|
+
<dx-tooltip placement="top-right" label={copyMarkdownLabel}>
|
|
4
|
+
<dx-button
|
|
5
|
+
class="toolbar-button"
|
|
6
|
+
variant="inline"
|
|
7
|
+
size="small"
|
|
8
|
+
icon-sprite="utility"
|
|
9
|
+
icon-symbol="copy"
|
|
10
|
+
icon-size="medium"
|
|
11
|
+
icon-position="right"
|
|
12
|
+
aria-label={copyMarkdownButtonText}
|
|
13
|
+
onclick={handleCopyMarkdown}
|
|
14
|
+
>
|
|
15
|
+
{copyMarkdownButtonText}
|
|
16
|
+
</dx-button>
|
|
17
|
+
</dx-tooltip>
|
|
18
|
+
|
|
19
|
+
<div class="divider"></div>
|
|
20
|
+
|
|
21
|
+
<dx-button
|
|
22
|
+
class="toolbar-button"
|
|
23
|
+
variant="inline"
|
|
24
|
+
size="small"
|
|
25
|
+
icon-sprite="utility"
|
|
26
|
+
icon-symbol="new_window"
|
|
27
|
+
icon-size="medium"
|
|
28
|
+
icon-position="right"
|
|
29
|
+
aria-label={viewMarkdownButtonText}
|
|
30
|
+
onclick={handleViewMarkdown}
|
|
31
|
+
>
|
|
32
|
+
{viewMarkdownButtonText}
|
|
33
|
+
</dx-button>
|
|
34
|
+
|
|
35
|
+
<div class="divider divider_copy-url"></div>
|
|
36
|
+
|
|
37
|
+
<dx-tooltip placement="top-right" label={copyUrlLabel}>
|
|
38
|
+
<dx-button
|
|
39
|
+
class="toolbar-button toolbar-button_copy-url"
|
|
40
|
+
variant="inline"
|
|
41
|
+
size="small"
|
|
42
|
+
icon-sprite="utility"
|
|
43
|
+
icon-symbol="link"
|
|
44
|
+
icon-size="medium"
|
|
45
|
+
icon-position="right"
|
|
46
|
+
aria-label={copyUrlButtonText}
|
|
47
|
+
onclick={handleCopyUrl}
|
|
48
|
+
>
|
|
49
|
+
{copyUrlButtonText}
|
|
50
|
+
</dx-button>
|
|
51
|
+
</dx-tooltip>
|
|
52
|
+
</div>
|
|
53
|
+
</template>
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import { LightningElement, api } from "lwc";
|
|
2
|
+
import { track } from "dxUtils/analytics";
|
|
3
|
+
|
|
4
|
+
const DEFAULT_COPY_TOOLTIP_LABEL = "Click to copy";
|
|
5
|
+
const COPIED_TOOLTIP_LABEL = "Copied!";
|
|
6
|
+
const COPIED_TOOLTIP_RESET_MS = 1000;
|
|
7
|
+
|
|
8
|
+
const ANALYTICS_CONTENT_CATEGORY = "content action toolbar";
|
|
9
|
+
const COPY_MARKDOWN_LABEL = "Copy as Markdown";
|
|
10
|
+
const VIEW_MARKDOWN_LABEL = "View as Markdown";
|
|
11
|
+
const COPY_URL_LABEL = "Copy URL to Markdown";
|
|
12
|
+
|
|
13
|
+
export default class ContentActionToolbar extends LightningElement {
|
|
14
|
+
@api
|
|
15
|
+
get pageUrl(): string | undefined {
|
|
16
|
+
return this._pageUrl;
|
|
17
|
+
}
|
|
18
|
+
set pageUrl(value: string | undefined) {
|
|
19
|
+
if (this._pageUrl === value) {
|
|
20
|
+
return;
|
|
21
|
+
}
|
|
22
|
+
this._pageUrl = value;
|
|
23
|
+
}
|
|
24
|
+
private _pageUrl?: string;
|
|
25
|
+
|
|
26
|
+
copyMarkdownLabel: string = DEFAULT_COPY_TOOLTIP_LABEL;
|
|
27
|
+
copyUrlLabel: string = DEFAULT_COPY_TOOLTIP_LABEL;
|
|
28
|
+
|
|
29
|
+
private copyTooltipResetTimeout: number | null = null;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Returns the `.md` equivalent of `pageUrl` with any hash and query
|
|
33
|
+
* string stripped, or `null` when `pageUrl` is not set or does not end
|
|
34
|
+
* with `.html`.
|
|
35
|
+
*/
|
|
36
|
+
get markdownUrl(): string | null {
|
|
37
|
+
if (!this.pageUrl) {
|
|
38
|
+
return null;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const url = new URL(this.pageUrl, window.location.href);
|
|
42
|
+
url.hash = "";
|
|
43
|
+
url.search = "";
|
|
44
|
+
|
|
45
|
+
if (!url.pathname.endsWith(".html")) {
|
|
46
|
+
return null;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
url.pathname = url.pathname.replace(/\.html$/, ".md");
|
|
50
|
+
return url.toString();
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
get copyMarkdownButtonText(): string {
|
|
54
|
+
return COPY_MARKDOWN_LABEL;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
get viewMarkdownButtonText(): string {
|
|
58
|
+
return VIEW_MARKDOWN_LABEL;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
get copyUrlButtonText(): string {
|
|
62
|
+
return COPY_URL_LABEL;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
async handleCopyMarkdown(event: Event) {
|
|
66
|
+
if (!this.markdownUrl) {
|
|
67
|
+
return;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
this.trackToolbarEvent(
|
|
71
|
+
event,
|
|
72
|
+
"custEv_linkClick",
|
|
73
|
+
COPY_MARKDOWN_LABEL,
|
|
74
|
+
this.markdownUrl
|
|
75
|
+
);
|
|
76
|
+
|
|
77
|
+
try {
|
|
78
|
+
const response = await fetch(this.markdownUrl);
|
|
79
|
+
if (!response.ok) {
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
const markdown = await response.text();
|
|
83
|
+
await navigator.clipboard.writeText(markdown);
|
|
84
|
+
this.flashCopied("copyMarkdownLabel");
|
|
85
|
+
} catch (error) {
|
|
86
|
+
console.error(error);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
handleViewMarkdown(event: Event) {
|
|
91
|
+
if (!this.markdownUrl) {
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
this.trackToolbarEvent(
|
|
96
|
+
event,
|
|
97
|
+
"custEv_linkClick",
|
|
98
|
+
VIEW_MARKDOWN_LABEL,
|
|
99
|
+
this.markdownUrl
|
|
100
|
+
);
|
|
101
|
+
|
|
102
|
+
window.open(this.markdownUrl, "_blank", "noopener,noreferrer");
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
async handleCopyUrl(event: Event) {
|
|
106
|
+
if (!this.markdownUrl) {
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
this.trackToolbarEvent(
|
|
111
|
+
event,
|
|
112
|
+
"custEv_linkClick",
|
|
113
|
+
COPY_URL_LABEL,
|
|
114
|
+
this.markdownUrl
|
|
115
|
+
);
|
|
116
|
+
|
|
117
|
+
try {
|
|
118
|
+
await navigator.clipboard.writeText(this.markdownUrl);
|
|
119
|
+
this.flashCopied("copyUrlLabel");
|
|
120
|
+
} catch (error) {
|
|
121
|
+
console.error(error);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
private trackToolbarEvent(
|
|
126
|
+
event: Event,
|
|
127
|
+
eventName: "custEv_linkClick",
|
|
128
|
+
label: string,
|
|
129
|
+
url: string
|
|
130
|
+
): void {
|
|
131
|
+
track(event.currentTarget!, eventName, {
|
|
132
|
+
click_text: label,
|
|
133
|
+
click_url: url,
|
|
134
|
+
element_type: "button_link",
|
|
135
|
+
element_title: label,
|
|
136
|
+
content_category: ANALYTICS_CONTENT_CATEGORY
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
private flashCopied(labelKey: "copyMarkdownLabel" | "copyUrlLabel") {
|
|
141
|
+
if (this.copyTooltipResetTimeout !== null) {
|
|
142
|
+
window.clearTimeout(this.copyTooltipResetTimeout);
|
|
143
|
+
}
|
|
144
|
+
this[labelKey] = COPIED_TOOLTIP_LABEL;
|
|
145
|
+
this.copyTooltipResetTimeout = window.setTimeout(() => {
|
|
146
|
+
this.copyMarkdownLabel = DEFAULT_COPY_TOOLTIP_LABEL;
|
|
147
|
+
this.copyUrlLabel = DEFAULT_COPY_TOOLTIP_LABEL;
|
|
148
|
+
this.copyTooltipResetTimeout = null;
|
|
149
|
+
}, COPIED_TOOLTIP_RESET_MS);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { http, HttpResponse } from "msw";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Mocks for the content action toolbar so stories never hit the real
|
|
5
|
+
* docs backend. Any story rendering `doc-content-action-toolbar` (directly or
|
|
6
|
+
* via `doc-content-layout`) must register `contentActionToolbarMswHandlers`
|
|
7
|
+
* and call `interceptWindowOpenForContentActionToolbar()`.
|
|
8
|
+
*/
|
|
9
|
+
export const DUMMY_MARKDOWN_CONTENT = `# Dummy Markdown
|
|
10
|
+
|
|
11
|
+
Storybook serves this placeholder content in place of the real markdown
|
|
12
|
+
that the docs backend would return for the current page. It exists so
|
|
13
|
+
the "Copied" tooltip, the "View as Markdown" new tab, and the
|
|
14
|
+
"Copy URL to Markdown" clipboard behavior are all exercisable in
|
|
15
|
+
storybook without hitting the live backend.
|
|
16
|
+
|
|
17
|
+
- Item 1
|
|
18
|
+
- Item 2
|
|
19
|
+
- Item 3
|
|
20
|
+
`;
|
|
21
|
+
|
|
22
|
+
export const DUMMY_MARKDOWN_DATA_URL = `data:text/markdown;charset=utf-8,${encodeURIComponent(
|
|
23
|
+
DUMMY_MARKDOWN_CONTENT
|
|
24
|
+
)}`;
|
|
25
|
+
|
|
26
|
+
/** Intercepts any `.md` GET request and returns the dummy markdown. */
|
|
27
|
+
export const contentActionToolbarMswHandlers = [
|
|
28
|
+
http.get(/\.md(\?.*)?$/, () => HttpResponse.text(DUMMY_MARKDOWN_CONTENT))
|
|
29
|
+
];
|
|
30
|
+
|
|
31
|
+
let windowOpenIntercepted = false;
|
|
32
|
+
|
|
33
|
+
/** Redirects `window.open` calls for `.md` URLs to the dummy markdown data URL (MSW does not cover new tabs). */
|
|
34
|
+
export function interceptWindowOpenForContentActionToolbar() {
|
|
35
|
+
if (windowOpenIntercepted) {
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
38
|
+
windowOpenIntercepted = true;
|
|
39
|
+
|
|
40
|
+
const originalOpen = window.open.bind(window);
|
|
41
|
+
window.open = ((url?: string | URL, target?: string, features?: string) => {
|
|
42
|
+
const stringUrl = url?.toString() ?? "";
|
|
43
|
+
if (stringUrl.endsWith(".md")) {
|
|
44
|
+
return originalOpen(DUMMY_MARKDOWN_DATA_URL, target, features);
|
|
45
|
+
}
|
|
46
|
+
return originalOpen(url ?? "", target, features);
|
|
47
|
+
}) as typeof window.open;
|
|
48
|
+
}
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
/* eslint-disable @lwc/lwc/no-document-query */
|
|
2
|
-
import { LightningElement, api, track } from "lwc";
|
|
3
|
-
import { closest } from "kagekiri";
|
|
2
|
+
import { LightningElement, api, createElement, track } from "lwc";
|
|
3
|
+
import { closest, querySelector } from "kagekiri";
|
|
4
4
|
import { toJson, normalizeBoolean } from "dxUtils/normalizers";
|
|
5
5
|
import { highlightTerms } from "dxUtils/highlight";
|
|
6
6
|
import { SearchSyncer } from "docUtils/searchSyncer";
|
|
7
7
|
import type { OptionWithLink } from "typings/custom";
|
|
8
8
|
import { buildDocLinkClickHandler } from "dxUtils/analytics";
|
|
9
|
+
import ContentActionToolbar from "doc/contentActionToolbar";
|
|
10
|
+
|
|
11
|
+
const CONTENT_ACTION_TOOLBAR_TAG = "doc-content-action-toolbar";
|
|
12
|
+
const PAGE_HEADING_SELECTOR = "h1";
|
|
13
|
+
const FALLBACK_HEADING_SELECTOR = "h1, h2, h3, h4, h5, h6";
|
|
14
|
+
const CONTENT_BODY_SELECTOR = ".content-body-container .content-body";
|
|
9
15
|
|
|
10
16
|
type AnchorMap = { [key: string]: { intersect: boolean; id: string } };
|
|
11
17
|
|
|
@@ -28,6 +34,35 @@ const HIGHLIGHTABLE_SELECTOR = [
|
|
|
28
34
|
].join(",");
|
|
29
35
|
export const OBSERVER_ATTACH_WAIT_TIME = 500;
|
|
30
36
|
|
|
37
|
+
const DEFAULT_READING_TIME_LOCALE = "en-us";
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Localized "minute read" templates. `{minutes}` is replaced with the rounded
|
|
41
|
+
* reading-time value. Only displayed when reading time is greater than 1, so
|
|
42
|
+
* plural forms are always appropriate. Keys match the locales declared in
|
|
43
|
+
* sfdocs (and the doc-locale-banner) so that a localized document automatically
|
|
44
|
+
* gets a localized reading-time label.
|
|
45
|
+
*/
|
|
46
|
+
export const READING_TIME_LABELS: Record<string, string> = {
|
|
47
|
+
"en-us": "{minutes} minute read",
|
|
48
|
+
"ja-jp": "読了時間 {minutes} 分",
|
|
49
|
+
"zh-cn": "阅读时间 {minutes} 分钟",
|
|
50
|
+
"zh-tw": "閱讀時間 {minutes} 分鐘",
|
|
51
|
+
"fr-fr": "Lecture de {minutes} minutes",
|
|
52
|
+
"de-de": "{minutes} Minuten Lesezeit",
|
|
53
|
+
"it-it": "{minutes} minuti di lettura",
|
|
54
|
+
"ko-kr": "읽는 데 {minutes}분",
|
|
55
|
+
"pt-br": "{minutes} minutos de leitura",
|
|
56
|
+
"es-mx": "{minutes} minutos de lectura",
|
|
57
|
+
"es-es": "{minutes} minutos de lectura",
|
|
58
|
+
"ru-ru": "Время чтения: {minutes} мин",
|
|
59
|
+
"fi-fi": "{minutes} minuutin lukuaika",
|
|
60
|
+
"da-dk": "{minutes} minutters læsning",
|
|
61
|
+
"sv-se": "{minutes} minuters läsning",
|
|
62
|
+
"nl-nl": "{minutes} minuten leestijd",
|
|
63
|
+
"nb-no": "{minutes} minutters lesetid"
|
|
64
|
+
};
|
|
65
|
+
|
|
31
66
|
export default class ContentLayout extends LightningElement {
|
|
32
67
|
@api sidebarValue!: string;
|
|
33
68
|
@api sidebarHeader!: string;
|
|
@@ -66,6 +101,17 @@ export default class ContentLayout extends LightningElement {
|
|
|
66
101
|
/** Optional origin URL for the footer MFE (e.g. wp-json endpoint). Passed through to dx-footer. */
|
|
67
102
|
@api origin: string | null = null;
|
|
68
103
|
|
|
104
|
+
/** Controls whether the content action toolbar is displayed. */
|
|
105
|
+
@api
|
|
106
|
+
get showContentActionToolbar() {
|
|
107
|
+
return this._showContentActionToolbar;
|
|
108
|
+
}
|
|
109
|
+
set showContentActionToolbar(value) {
|
|
110
|
+
this._showContentActionToolbar = normalizeBoolean(value);
|
|
111
|
+
this.updateContentActionToolbar();
|
|
112
|
+
}
|
|
113
|
+
private _showContentActionToolbar = false;
|
|
114
|
+
|
|
69
115
|
@api
|
|
70
116
|
get breadcrumbs() {
|
|
71
117
|
return this._breadcrumbs;
|
|
@@ -123,6 +169,7 @@ export default class ContentLayout extends LightningElement {
|
|
|
123
169
|
protected hasRendered: boolean = false;
|
|
124
170
|
protected contentLoaded: boolean = false;
|
|
125
171
|
protected sidebarOpen: boolean = false;
|
|
172
|
+
protected contentActionToolbarElement: HTMLElement | null = null;
|
|
126
173
|
|
|
127
174
|
get shouldDisplayFeedback() {
|
|
128
175
|
return this.contentLoaded && typeof Sprig !== "undefined";
|
|
@@ -173,6 +220,19 @@ export default class ContentLayout extends LightningElement {
|
|
|
173
220
|
return this.readingTime != null && this.readingTime > 1;
|
|
174
221
|
}
|
|
175
222
|
|
|
223
|
+
/**
|
|
224
|
+
* Localized "X minute read" string for the current document language.
|
|
225
|
+
* Falls back to the default (en-us) template when the language is missing
|
|
226
|
+
* or has no translation.
|
|
227
|
+
*/
|
|
228
|
+
get readingTimeLabel(): string {
|
|
229
|
+
const localeKey = (this.language || "").toLowerCase();
|
|
230
|
+
const template =
|
|
231
|
+
READING_TIME_LABELS[localeKey] ||
|
|
232
|
+
READING_TIME_LABELS[DEFAULT_READING_TIME_LOCALE];
|
|
233
|
+
return template.replace("{minutes}", String(this.readingTime));
|
|
234
|
+
}
|
|
235
|
+
|
|
176
236
|
/** When origin is provided, pass it to the footer; otherwise use dx-footer's default. */
|
|
177
237
|
get effectiveFooterOrigin(): string {
|
|
178
238
|
return (
|
|
@@ -215,6 +275,8 @@ export default class ContentLayout extends LightningElement {
|
|
|
215
275
|
window.addEventListener("scroll", this.adjustNavPosition);
|
|
216
276
|
window.addEventListener("resize", this.adjustNavPosition);
|
|
217
277
|
|
|
278
|
+
this.updateContentActionToolbar();
|
|
279
|
+
|
|
218
280
|
if (!this.hasRendered) {
|
|
219
281
|
this.hasRendered = true;
|
|
220
282
|
this.restoreScroll();
|
|
@@ -224,6 +286,54 @@ export default class ContentLayout extends LightningElement {
|
|
|
224
286
|
}
|
|
225
287
|
}
|
|
226
288
|
|
|
289
|
+
/**
|
|
290
|
+
* Inserts the content action toolbar into the slotted content immediately
|
|
291
|
+
* after the first H1 found inside this layout, falling back to the first
|
|
292
|
+
* heading of any level if no H1 exists.
|
|
293
|
+
*/
|
|
294
|
+
protected updateContentActionToolbar(): void {
|
|
295
|
+
if (!this.showContentActionToolbar || !this.sidebarValue) {
|
|
296
|
+
this.removeContentActionToolbar();
|
|
297
|
+
return;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
const contentBody = querySelector(
|
|
301
|
+
CONTENT_BODY_SELECTOR,
|
|
302
|
+
this.template.host
|
|
303
|
+
) as HTMLElement | null;
|
|
304
|
+
|
|
305
|
+
if (!contentBody) {
|
|
306
|
+
return;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
const heading = (querySelector(PAGE_HEADING_SELECTOR, contentBody) ??
|
|
310
|
+
querySelector(
|
|
311
|
+
FALLBACK_HEADING_SELECTOR,
|
|
312
|
+
contentBody
|
|
313
|
+
)) as HTMLElement | null;
|
|
314
|
+
|
|
315
|
+
if (!heading) {
|
|
316
|
+
return;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
const toolbar = (this.contentActionToolbarElement ??
|
|
320
|
+
createElement(CONTENT_ACTION_TOOLBAR_TAG, {
|
|
321
|
+
is: ContentActionToolbar
|
|
322
|
+
})) as HTMLElement & { pageUrl?: string };
|
|
323
|
+
|
|
324
|
+
toolbar.pageUrl = this.sidebarValue;
|
|
325
|
+
|
|
326
|
+
if (toolbar.previousElementSibling !== heading) {
|
|
327
|
+
heading.parentNode?.insertBefore(toolbar, heading.nextSibling);
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
this.contentActionToolbarElement = toolbar;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
protected removeContentActionToolbar(): void {
|
|
334
|
+
this.contentActionToolbarElement?.remove();
|
|
335
|
+
}
|
|
336
|
+
|
|
227
337
|
disconnectedCallback(): void {
|
|
228
338
|
this.disconnectObserver();
|
|
229
339
|
window.removeEventListener(
|
|
@@ -239,6 +349,9 @@ export default class ContentLayout extends LightningElement {
|
|
|
239
349
|
|
|
240
350
|
// Remove link click handler
|
|
241
351
|
this.template.removeEventListener("click", this.handleLinkClick);
|
|
352
|
+
|
|
353
|
+
this.removeContentActionToolbar();
|
|
354
|
+
this.contentActionToolbarElement = null;
|
|
242
355
|
}
|
|
243
356
|
|
|
244
357
|
restoreScroll() {
|
|
@@ -481,6 +594,7 @@ export default class ContentLayout extends LightningElement {
|
|
|
481
594
|
|
|
482
595
|
onSlotChange(): void {
|
|
483
596
|
this.updateRNB();
|
|
597
|
+
this.updateContentActionToolbar();
|
|
484
598
|
this.contentLoaded = true;
|
|
485
599
|
}
|
|
486
600
|
|