0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

docs: improve stackblitz.js

* tweak indentation
* stop extending the sdk object
* conditionally add `index.js`
This commit is contained in:
XhmikosR 2023-08-02 10:38:19 +03:00
parent 24f749cb76
commit d867ee08b9

View File

@ -28,12 +28,12 @@ document.querySelectorAll('.btn-edit').forEach(btn => {
// Get extra classes for this example
const classes = Array.from(exampleEl.classList).join(' ')
sdk.openBootstrapSnippet(htmlSnippet, jsSnippet, classes)
openBootstrapSnippet(htmlSnippet, jsSnippet, classes)
})
})
sdk.openBootstrapSnippet = (htmlSnippet, jsSnippet, classes) => {
const markup = `<!doctype html>
const openBootstrapSnippet = (htmlSnippet, jsSnippet, classes) => {
const indexHtml = `<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
@ -44,18 +44,17 @@ sdk.openBootstrapSnippet = (htmlSnippet, jsSnippet, classes) => {
<${'script'} src="${jsBundleCdn}"></${'script'}>
</head>
<body class="p-3 m-0 border-0 ${classes}">
<!-- Example Code -->
${htmlSnippet.replace(/^/gm, ' ')}
<!-- End Example Code -->
<!-- Example Code Start-->
${htmlSnippet.trimStart().replace(/^/gm, ' ').replace(/^ {4}$/gm, '').trimEnd()}
<!-- Example Code End -->
</body>
</html>`
</html>
`
const jsSnippetContent = jsSnippet ? jsSnippetFile : null
const project = {
files: {
'index.html': markup,
'index.js': jsSnippetContent
'index.html': indexHtml,
...(jsSnippet && { 'index.js': jsSnippetFile })
},
title: 'Bootstrap Example',
description: `Official example from ${window.location.href}`,