-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathhtml-block.js
317 lines (291 loc) · 8.05 KB
/
html-block.js
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
import '../colors/colors.js';
import { codeStyles, createHtmlBlockRenderer as createCodeRenderer } from '../../helpers/prism.js';
import { css, html, LitElement, unsafeCSS } from 'lit';
import { classMap } from 'lit/directives/class-map.js';
import { createHtmlBlockRenderer as createMathRenderer } from '../../helpers/mathjax.js';
import { getFocusPseudoClass } from '../../helpers/focus.js';
import { LoadingCompleteMixin } from '../../mixins/loading-complete/loading-complete-mixin.js';
import { renderEmbeds } from '../../helpers/embeds.js';
import { requestInstance } from '../../mixins/provider/provider-mixin.js';
import { tryGet } from '@brightspace-ui/lms-context-provider/client.js';
export const htmlBlockContentStyles = css`
.d2l-html-block-rendered {
line-height: 1.47; /* 1.4rem / 0.95rem */
}
.d2l-html-block-rendered > :first-child {
margin-top: 0;
}
.d2l-html-block-rendered > :last-child {
margin-bottom: 0;
}
.d2l-html-block-compact {
font-size: 0.8rem;
font-weight: 400;
line-height: 1.5; /* 1.2rem / 0.8rem */
}
h1, h2, h3, h4, h5, h6, b, strong, b *, strong * {
font-weight: bold;
}
h1 {
font-size: 2em;
line-height: 1;
margin: 21px 0;
}
h2 {
font-size: 1.5em;
line-height: 1;
margin: 20px 0;
}
h3 {
font-size: 1.2em;
line-height: 1;
margin: 19px 0;
}
h4 {
font-size: 1em;
line-height: 1.05;
margin: 21px 0;
}
h5 {
font-size: 0.83em;
line-height: 1;
margin: 22px 0;
}
h6 {
font-size: 0.67em;
line-height: 1;
margin: 25px 0;
}
pre {
font-family: Monospace;
font-size: 13px;
margin: 13px 0;
}
p {
margin: 0.5em 0 1em 0;
}
ul, ol {
list-style-position: outside;
margin: 1em 0;
padding-inline-start: 3em;
}
.d2l-html-block-compact ul,
.d2l-html-block-compact ol {
padding-inline-start: 1.5em;
}
ul, ul[type="disc"] {
list-style-type: disc;
}
ul ul,
ul ol,
ol ul,
ol ol {
margin-bottom: 0;
margin-top: 0;
}
ul ul,
ol ul,
ul[type="circle"] {
list-style-type: circle;
}
ul ul ul,
ul ol ul,
ol ul ul,
ol ol ul,
ul[type="square"] {
list-style-type: square;
}
a,
a:visited,
a:link,
a:active {
color: var(--d2l-color-celestine, #006fbf);
cursor: pointer;
text-decoration: none;
}
a:hover {
color: var(--d2l-color-celestine-minus-1, #004489);
text-decoration: underline;
}
a:${unsafeCSS(getFocusPseudoClass())} {
border-radius: 2px;
outline: 2px solid var(--d2l-color-celestine, #006fbf);
outline-offset: 1px;
text-decoration: underline;
}
@media print {
a,
a:visited,
a:link,
a:active {
color: var(--d2l-color-ferrite, #202122);
}
}
mjx-assistive-mml math {
position: absolute;
}
${codeStyles}
`;
let renderers;
const getRenderers = async() => {
if (renderers) return renderers;
const rendererLoader = requestInstance(document, 'html-block-renderer-loader');
const tempRenderers = rendererLoader ? await rendererLoader.getRenderers() : undefined;
const defaultRenderers = [ createMathRenderer(), createCodeRenderer() ];
renderers = (tempRenderers ? [ ...defaultRenderers, ...tempRenderers ] : defaultRenderers);
return renderers;
};
/**
* A component for displaying user-authored HTML.
*/
class HtmlBlock extends LoadingCompleteMixin(LitElement) {
static get properties() {
return {
/**
* Whether compact styles should be applied
* @type {Boolean}
*/
compact: { type: Boolean },
/**
* The HTML to be rendered. Ignored if slotted content is provided.
* @type {String}
*/
html: { type: String },
/**
* Whether to display the HTML in inline mode
* @type {Boolean}
*/
inline: { type: Boolean },
/**
* Whether to disable deferred rendering of the user-authored HTML. Do *not* set this
* unless your HTML relies on script executions that may break upon stamping.
* @type {Boolean}
*/
noDeferredRendering: { type: Boolean, attribute: 'no-deferred-rendering' },
_context: { type: Object, state: true }
};
}
static get styles() {
return [ htmlBlockContentStyles, css`
:host {
display: block;
overflow-wrap: break-word;
overflow-x: auto;
overflow-y: hidden;
text-align: start;
}
:host([inline]),
:host([inline]) .d2l-html-block-rendered {
display: inline;
}
:host([hidden]),
:host([no-deferred-rendering]) .d2l-html-block-rendered,
slot {
display: none;
}
:host([no-deferred-rendering]) slot {
display: contents;
}
`];
}
constructor() {
super();
this.compact = false;
this.html = '';
this.inline = false;
this.noDeferredRendering = false;
this._context = new Map();
this._initialContextResolve = undefined;
this._initialContextPromise = new Promise(resolve => this._initialContextResolve = resolve);
const contextKeysPromise = getRenderers().then(renderers => renderers.reduce((keys, currentRenderer) => {
if (currentRenderer.contextKeys) currentRenderer.contextKeys.forEach(key => keys.push(key));
return keys;
}, []));
const contextValsPromise = contextKeysPromise.then(contextKeys => {
return Promise.allSettled(contextKeys.map(key => {
return tryGet(key, undefined, ctx => this._context.set(key, ctx));
}));
});
Promise.all([contextKeysPromise, contextValsPromise]).then(([contextKeys, contextResults]) => {
contextKeys.forEach((key, index) => this._context.set(key, contextResults[index].value));
this._initialContextResolve();
});
}
render() {
this._validateHtml();
const renderContainerClasses = {
'd2l-html-block-rendered': true,
'd2l-html-block-compact': this.compact
};
return html`
<div class="${classMap(renderContainerClasses)}"></div>
${this.noDeferredRendering ? html`<slot @slotchange="${this._handleSlotChange}"></slot>` : ''}
`;
}
async updated(changedProperties) {
super.updated(changedProperties);
if (this.html !== undefined && this.html !== null && !this.noDeferredRendering) {
await this._updateRenderContainer();
}
}
async _handleSlotChange(e) {
if (!e.target || !this.shadowRoot || !this.noDeferredRendering) return;
await this._renderInline(e.target);
}
async _processEmbeds() {
const htmlFragment = document.createRange().createContextualFragment(this.html);
await renderEmbeds(htmlFragment);
return htmlFragment;
}
async _processRenderers(elem) {
await this._initialContextPromise;
const renderers = await getRenderers();
const loadingCompletePromises = [];
for (const renderer of renderers) {
if (renderer.contextKeys) {
const contextValues = new Map();
renderer.contextKeys.forEach(key => contextValues.set(key, this._context.get(key)));
await renderer.render(elem, {
contextValues: contextValues,
noDeferredRendering: this.noDeferredRendering
});
} else {
await renderer.render(elem, {
noDeferredRendering: this.noDeferredRendering
});
}
if (typeof renderer.getLoadingComplete === 'function') {
loadingCompletePromises.push(renderer.getLoadingComplete());
}
}
Promise.all(loadingCompletePromises).then(this.resolveLoadingComplete);
}
async _renderInline(slot) {
if (!this.shadowRoot) return;
if (!slot) slot = this.shadowRoot.querySelector('slot');
const noDeferredRenderingContainer = slot.assignedNodes({ flatten: true })
.find(node => (node.nodeType === Node.ELEMENT_NODE && node.tagName === 'DIV'));
if (!noDeferredRenderingContainer) {
this.resolveLoadingComplete();
return;
}
await this._processRenderers(noDeferredRenderingContainer);
}
async _updateRenderContainer() {
const renderContainer = this.shadowRoot?.querySelector('.d2l-html-block-rendered');
if (!renderContainer) return;
renderContainer.innerHTML = '';
renderContainer.append(await this._processEmbeds());
await this._processRenderers(renderContainer);
}
_validateHtml() {
if (this._validatingHtmlTimeout) clearTimeout(this._validatingHtmlTimeout);
this._validatingHtmlTimeout = setTimeout(() => {
this._validatingHtmlTimeout = undefined;
if (this.html && this.noDeferredRendering) {
throw new Error('<d2l-html-block>: "html" attribute is not supported with "no-deferred-rendering".');
}
}, 3000);
}
}
customElements.define('d2l-html-block', HtmlBlock);