forked from scratchblocks/scratchblocks
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
372 lines (337 loc) · 10 KB
/
index.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
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
/*
* snapblocks
* http://snap-blocks.github.io/
*
* Copyright 2013-2021, Tim Radvan
* Copyright 2024-2025, ego-lay-atman-bay
* snapblocks is a fork of scratchblocks by Tim Radvan
* @license MIT
* http://opensource.org/licenses/MIT
*/
/**
* Snapblocks options
* @typedef {Object} Options
* @property {Object} options - Snapblocks options
* @property {("snap" | "snap-flat" | "scratch2" | "scratch3" | "scratch3-high-contrast")} [style=snap] - Block style
* @property {boolean} [inline=false] - Render inline
* @property {string[]} [languages=["en"]] - Languages
* @property {number} [scale=1] - Display scale
* @property {boolean} [zebraColoring=false] - Zebra coloring
* @property {boolean} [wrap=false] - Wrap blocks
* @property {(number|null)} [wrapSize=null] - Minimum block wrap width
* @property {(number|null)} [commentWidth=null] - Maximum comment width. Set this to -1 to not wrap.
* @property {boolean} [showSpaces=false] - Show spaces
* @property {boolean} [santa=false] - Use Santa Hats
* @property {(number|null)} [contrast=null] - snap-flat outline contrast
* @property {(boolean | string["blockstyle" | "inline" | "scale" | "wrap" | "wrapsize" | "commentWidth" | "zebracoloring" | "zebra" | "showspaces" | "santa"])} [elementOptions=false] - Allow elements to specify options. If this is a list, the list contains the allowed options.
*/
import {
parse,
allLanguages,
loadLanguages,
Label,
Icon,
Input,
Block,
Comment,
Script,
Document,
} from "./syntax/index.js"
import * as scratch2 from "./scratch2/index.js"
import * as scratch3 from "./scratch3/index.js"
import * as snap from "./snap/index.js"
/**
* Validate value
*
* @param {*} value
* @returns {*}
*/
function validate(value) {
if (typeof value != "string") {
return value
}
if (["true", "false"].includes(value.toLowerCase())) {
return value.toLowerCase() === "true"
} else if (!isNaN(value)) {
return parseFloat(value)
}
return value
}
export default function (window) {
const version = "1.8.1"
const document = window.document
snap.init(window)
scratch2.init(window)
scratch3.init(window)
/** Add the css styles to the page head. */
function appendStyles() {
document.head.appendChild(snap.makeStyle())
document.head.appendChild(scratch2.makeStyle())
document.head.appendChild(scratch3.makeStyle())
}
/**
* Create a view for the style in the options.
*
* @param {Document} doc
* @param {Options} options - Snapblocks options
* @returns {(snap.Document | scratch2.Document | scratch3.Document)}
*/
function newView(doc, options) {
options = {
style: "snap",
...options,
}
options.scale = options.scale || 1
if (typeof options.style != "string") {
options.style = "snap"
}
if (/^snap($|-)/.test(options.style)) {
return snap.newView(doc, options)
} else if (options.style === "scratch2") {
return scratch2.newView(doc, options)
} else if (/^scratch3($|-)/.test(options.style)) {
return scratch3.newView(doc, options)
} else {
console.error(`unknown style: ${options.style}`)
return snap.newView(doc, options) // I don't want it to throw an error
}
}
/**
* Render the parsed document
*
* @param {Document} doc
* @param {Options} options - Snapblocks options
* @returns {HTMLOrSVGElement}
*/
function render(doc, options) {
if (typeof options === "function") {
throw new Error("render() no longer takes a callback")
}
const view = newView(doc, options)
const svg = view.render()
// Used in high contrast theme
svg.classList.add(
`snapblocks-style-${options.style != undefined ? options.style : "snap"}`,
)
return svg
}
/*****************************************************************************/
/*** Render ***/
// read code from a DOM element
/**
* Get the text snapblocks code from element
*
* @param {HTMLElement} el - HTML element to get text from.
* @param {Options} options - Snapblocks options
* @returns {string}
*/
function readCode(el, options) {
options = {
inline: false,
...options,
}
const html = el.innerHTML.replace(/<br>\s?|\n|\r\n|\r/gi, "\n")
const pre = document.createElement("pre")
pre.innerHTML = html
let code = pre.textContent
return code
}
/**
* insert `svg` into `el`, with appropriate wrapper elements
*
* @param {HTMLElement} el - Element to wrap
* @param {HTMLOrSVGElement} svg - Svg element to replace element with
* @param {Document} doc - Parsed document
* @param {Options} options - Snapblocks options
*/
function replace(el, svg, doc, options) {
let container
if (options.inline) {
container = document.createElement("span")
let cls = "snapblocks snapblocks-inline"
if (doc.scripts[0] && !doc.scripts[0].isEmpty) {
cls += ` snapblocks-inline-${doc.scripts[0].blocks[0].shape}`
}
container.className = cls
container.style.display = "inline-block"
container.style.verticalAlign = "middle"
} else {
container = document.createElement("div")
container.className = "snapblocks"
}
container.appendChild(svg)
el.innerHTML = ""
el.appendChild(container)
}
/**
* Render all matching elements in page to shiny snap blocks.
* Accepts a CSS selector as an argument.
*
* Like the old `scratchblocks2.parse()`.
*
* @example
* snapblocks.renderMatching("pre.blocks");
*
* @param {string} selector - Element selector
* @param {Options} options - Snapblocks options
*/
const renderMatching = function (selector, options) {
selector = selector || "pre.blocks"
options = {
// Default values for the options
style: "snap",
inline: false,
languages: ["en"],
scale: 1,
zebraColoring: false,
wrap: false,
wrapSize: null,
commentWidth: null,
showSpaces: false,
santa: false,
elementOptions: false, // set options on the element
read: readCode, // function(el, options) => code
parse: parse, // function(code, options) => doc
render: render, // function(doc) => svg
replace: replace, // function(el, svg, doc, options)
...options,
}
// find elements
const results = [].slice.apply(document.querySelectorAll(selector))
results.forEach(el => {
try {
this.renderElement(el, options)
} catch (error) {
console.error(error)
}
})
}
/**
* Render element.
*
* @param {string} element - Element to render
* @param {Options} options - Snapblocks options
*/
const renderElement = function (element, options) {
options = {
// Default values for the options
style: "snap",
inline: false,
languages: ["en"],
scale: 1,
zebraColoring: false,
wrap: false,
wrapSize: null,
commentWidth: null,
showSpaces: false,
santa: false,
elementOptions: false, // set options on the element
read: readCode, // function(el, options) => code
parse: parse, // function(code, options) => doc
render: render, // function(doc) => svg
replace: replace, // function(el, svg, doc, options)
...options,
}
let localOptions = { ...options }
let overrideOptions = {}
let acceptedOptions = [
"blockstyle",
"inline",
"scale",
"wrap",
"wrapsize",
"zebracoloring",
"zebra",
"showspaces",
"commentwidth",
"santa",
]
if (Array.isArray(options.elementOptions)) {
acceptedOptions = []
for (const option of options.elementOptions) {
acceptedOptions.push(option.toLowerCase())
}
}
if (options.elementOptions) {
overrideOptions = {
style: acceptedOptions.includes("blockstyle")
? element.getAttribute("blockStyle")
: null,
inline: acceptedOptions.includes("inline")
? element.getAttribute("inline")
: null,
scale: acceptedOptions.includes("scale")
? element.getAttribute("scale")
: null,
wrap: acceptedOptions.includes("wrap")
? element.getAttribute("wrap")
: null,
wrapSize: acceptedOptions.includes("wrapsize")
? element.getAttribute("wrapSize")
: null,
commentWidth: acceptedOptions.includes("commentwidth")
? element.getAttribute("commentwidth")
: null,
zebraColoring: acceptedOptions.includes("zebracoloring")
? element.getAttribute("zebraColoring")
: null,
zebra: acceptedOptions.includes("zebra")
? element.getAttribute("zebra")
: null,
showSpaces: acceptedOptions.includes("showspaces")
? element.getAttribute("showSpaces")
: null,
santa: acceptedOptions.includes("santa")
? element.getAttribute("santa")
: null,
}
}
for (let [option, value] of Object.entries(overrideOptions)) {
value = validate(value)
if (value != null) {
localOptions[option] = value
}
}
const code = options.read(element, localOptions)
try {
const doc = options.parse(code, localOptions)
const svg = options.render(doc, localOptions)
options.replace(element, svg, doc, localOptions)
} catch (error) {
console.group("error rendering snapblocks")
console.error(error)
console.groupCollapsed("code")
console.info(code)
console.groupEnd()
console.groupEnd()
}
}
return {
version: version,
allLanguages: allLanguages, // read-only
loadLanguages: loadLanguages,
stringify: function (doc) {
return doc.stringify()
},
Label,
Icon,
Input,
Block,
Comment,
Script,
Document,
newView: newView,
read: readCode,
parse: parse,
replace: replace,
render: render,
renderMatching: renderMatching,
renderElement: renderElement,
appendStyles: appendStyles,
styles: {
snap: snap,
scratch2: scratch2,
scratch3: scratch3,
},
}
}