mirror of
https://github.com/pyscript/pyscript.git
synced 2026-04-18 17:00:22 -04:00
* make copy of .py files part of build process * move code out ofinterpreter file and make it download and load code during initialization * fix double ; in interpreter * remove debugging print * update dependencies * fix project name and version * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * lint * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * change fmt-py * lint * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * remove extra content * define missing strict type * create build folder if doesn't exist Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
64 lines
2.3 KiB
TypeScript
64 lines
2.3 KiB
TypeScript
import { addClasses } from '../utils';
|
|
|
|
export class PyBox extends HTMLElement {
|
|
shadow: ShadowRoot;
|
|
wrapper: HTMLElement;
|
|
theme: string;
|
|
widths: Array<string>;
|
|
|
|
constructor() {
|
|
super();
|
|
|
|
// attach shadow so we can preserve the element original innerHtml content
|
|
this.shadow = this.attachShadow({ mode: 'open' });
|
|
|
|
this.wrapper = document.createElement('slot');
|
|
this.shadow.appendChild(this.wrapper);
|
|
}
|
|
|
|
connectedCallback() {
|
|
const mainDiv = document.createElement('div');
|
|
addClasses(mainDiv, ['flex', 'mx-8']);
|
|
|
|
// Hack: for some reason when moving children, the editor box duplicates children
|
|
// meaning that we end up with 2 editors, if there's a <py-repl> inside the <py-box>
|
|
// so, if we have more than 2 children with the cm-editor class, we remove one of them
|
|
while (this.childNodes.length > 0) {
|
|
console.log(this.firstChild);
|
|
if (this.firstChild.nodeName == 'PY-REPL') {
|
|
// in this case we need to remove the child and create a new one from scratch
|
|
const replDiv = document.createElement('div');
|
|
// we need to put the new repl inside a div so that if the repl has auto-generate true
|
|
// it can replicate itself inside that constrained div
|
|
replDiv.appendChild(this.firstChild.cloneNode());
|
|
mainDiv.appendChild(replDiv);
|
|
this.firstChild.remove();
|
|
} else {
|
|
if (this.firstChild.nodeName != '#text') {
|
|
mainDiv.appendChild(this.firstChild);
|
|
} else {
|
|
this.firstChild.remove();
|
|
}
|
|
}
|
|
}
|
|
|
|
// now we need to set widths
|
|
this.widths = [];
|
|
if (this.hasAttribute('widths')) {
|
|
for (const w of this.getAttribute('widths').split(';')) {
|
|
this.widths.push(`w-${w}`);
|
|
}
|
|
} else {
|
|
this.widths = [...this.widths, ...[`w-1/${mainDiv.childNodes.length}`]];
|
|
}
|
|
|
|
this.widths.forEach((width, index) => {
|
|
const node: ChildNode = mainDiv.childNodes[index];
|
|
addClasses(node as HTMLElement, [width, 'mx-1']);
|
|
});
|
|
|
|
this.appendChild(mainDiv);
|
|
console.log('py-box connected');
|
|
}
|
|
}
|