mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 02:37:41 -05:00
* install test dependencies * change config for tests * fix linter failing tests * add basic test file * add custom element registration to test * update dependencies * add jest config file * fix test calls on makefile and minor fix on test * update local npm version * clean testm file
369 lines
12 KiB
TypeScript
369 lines
12 KiB
TypeScript
import { pyodideLoaded } from '../stores';
|
|
import { guidGenerator, addClasses, removeClasses } from '../utils';
|
|
import type { PyodideInterface } from '../pyodide';
|
|
// Premise used to connect to the first available pyodide interpreter
|
|
let runtime: PyodideInterface;
|
|
let Element;
|
|
|
|
pyodideLoaded.subscribe(value => {
|
|
runtime = value;
|
|
});
|
|
|
|
export class BaseEvalElement extends HTMLElement {
|
|
shadow: ShadowRoot;
|
|
wrapper: HTMLElement;
|
|
code: string;
|
|
source: string;
|
|
btnConfig: HTMLElement;
|
|
btnRun: HTMLElement;
|
|
outputElement: HTMLElement;
|
|
errorElement: HTMLElement;
|
|
theme: string;
|
|
appendOutput: boolean;
|
|
|
|
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);
|
|
this.setOutputMode("append");
|
|
}
|
|
|
|
addToOutput(s: string) {
|
|
this.outputElement.innerHTML += '<div>' + s + '</div>';
|
|
this.outputElement.hidden = false;
|
|
}
|
|
|
|
setOutputMode(defaultMode = "append") {
|
|
const mode = this.hasAttribute('output-mode') ? this.getAttribute('output-mode') : defaultMode;
|
|
|
|
switch (mode) {
|
|
case "append":
|
|
this.appendOutput = true;
|
|
break;
|
|
case "replace":
|
|
this.appendOutput = false;
|
|
break;
|
|
default:
|
|
console.log(`${this.id}: custom output-modes are currently not implemented`);
|
|
}
|
|
}
|
|
|
|
// subclasses should overwrite this method to define custom logic
|
|
// before code gets evaluated
|
|
preEvaluate(): void {
|
|
return null;
|
|
}
|
|
|
|
// subclasses should overwrite this method to define custom logic
|
|
// after code has been evaluated
|
|
postEvaluate(): void {
|
|
return null;
|
|
}
|
|
|
|
checkId() {
|
|
if (!this.id) this.id = 'py-' + guidGenerator();
|
|
}
|
|
|
|
getSourceFromElement(): string {
|
|
return '';
|
|
}
|
|
|
|
async getSourceFromFile(s: string): Promise<string> {
|
|
const response = await fetch(s);
|
|
this.code = await response.text();
|
|
return this.code;
|
|
}
|
|
|
|
protected async _register_esm(pyodide: PyodideInterface): Promise<void> {
|
|
const imports: { [key: string]: unknown } = {};
|
|
const nodes = document.querySelectorAll("script[type='importmap']");
|
|
let importmaps: Array<any>;
|
|
nodes.forEach( node =>
|
|
{
|
|
let importmap;
|
|
try {
|
|
importmap = JSON.parse(node.textContent);
|
|
if (importmap?.imports == null) return;
|
|
importmaps.push(importmap);
|
|
} catch {
|
|
return;
|
|
}
|
|
}
|
|
)
|
|
for (const importmap of importmaps){
|
|
for (const [name, url] of Object.entries(importmap.imports)) {
|
|
if (typeof name != 'string' || typeof url != 'string') continue;
|
|
|
|
try {
|
|
// XXX: pyodide doesn't like Module(), failing with
|
|
// "can't read 'name' of undefined" at import time
|
|
imports[name] = { ...(await import(url)) };
|
|
} catch {
|
|
console.error(`failed to fetch '${url}' for '${name}'`);
|
|
}
|
|
}
|
|
}
|
|
|
|
pyodide.registerJsModule('esm', imports);
|
|
}
|
|
|
|
async evaluate(): Promise<void> {
|
|
console.log('evaluate');
|
|
this.preEvaluate();
|
|
|
|
let source: string;
|
|
let output: string;
|
|
try {
|
|
source = this.source ? await this.getSourceFromFile(this.source)
|
|
: this.getSourceFromElement();
|
|
const is_async = source.includes('asyncio')
|
|
|
|
this._register_esm(runtime);
|
|
if (is_async) {
|
|
<string>await runtime.runPythonAsync(
|
|
`output_manager.change(out="${this.outputElement.id}", err="${this.errorElement.id}", append=${this.appendOutput ? 'True' : 'False'})`,
|
|
);
|
|
output = <string>await runtime.runPythonAsync(source);
|
|
} else {
|
|
output = <string>runtime.runPython(
|
|
`output_manager.change(out="${this.outputElement.id}", err="${this.errorElement.id}", append=${this.appendOutput ? 'True' : 'False'})`,
|
|
);
|
|
output = <string>runtime.runPython(source);
|
|
}
|
|
|
|
if (output !== undefined) {
|
|
if (Element === undefined) {
|
|
Element = <Element>runtime.globals.get('Element');
|
|
}
|
|
const out = Element(this.outputElement.id);
|
|
out.write.callKwargs(output, { append: this.appendOutput });
|
|
|
|
this.outputElement.hidden = false;
|
|
this.outputElement.style.display = 'block';
|
|
}
|
|
|
|
is_async ? await runtime.runPythonAsync(`output_manager.revert()`)
|
|
: await runtime.runPython(`output_manager.revert()`);
|
|
|
|
// check if this REPL contains errors, delete them and remove error classes
|
|
const errorElements = document.querySelectorAll(`div[id^='${this.errorElement.id}'][error]`);
|
|
if (errorElements.length > 0) {
|
|
errorElements.forEach( errorElement =>
|
|
{
|
|
errorElement.classList.add('hidden');
|
|
if (this.hasAttribute('std-err')) {
|
|
this.errorElement.hidden = true;
|
|
this.errorElement.style.removeProperty('display');
|
|
}
|
|
}
|
|
)
|
|
}
|
|
removeClasses(this.errorElement, ['bg-red-200', 'p-2']);
|
|
|
|
this.postEvaluate();
|
|
} catch (err) {
|
|
if (Element === undefined) {
|
|
Element = <Element>runtime.globals.get('Element');
|
|
}
|
|
const out = Element(this.errorElement.id);
|
|
|
|
addClasses(this.errorElement, ['bg-red-200', 'p-2']);
|
|
out.write.callKwargs(err, { append: this.appendOutput });
|
|
|
|
this.errorElement.children[this.errorElement.children.length - 1].setAttribute('error', '');
|
|
this.errorElement.hidden = false;
|
|
this.errorElement.style.display = 'block';
|
|
this.errorElement.style.visibility = 'visible';
|
|
}
|
|
} // end evaluate
|
|
|
|
async eval(source: string): Promise<void> {
|
|
const pyodide = runtime;
|
|
|
|
try {
|
|
const output = await pyodide.runPythonAsync(source);
|
|
if (output !== undefined) {
|
|
console.log(output);
|
|
}
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
} // end eval
|
|
|
|
runAfterRuntimeInitialized(callback: () => Promise<void>){
|
|
pyodideLoaded.subscribe(value => {
|
|
if ('runPythonAsync' in value) {
|
|
setTimeout(async () => {
|
|
await callback();
|
|
}, 100);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
function createWidget(name: string, code: string, klass: string) {
|
|
class CustomWidget extends HTMLElement {
|
|
shadow: ShadowRoot;
|
|
wrapper: HTMLElement;
|
|
|
|
name: string = name;
|
|
klass: string = klass;
|
|
code: string = code;
|
|
proxy: any;
|
|
proxyClass: any;
|
|
|
|
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() {
|
|
// TODO: we are calling with a 2secs delay to allow pyodide to load
|
|
// ideally we can just wait for it to load and then run. To do
|
|
// so we need to replace using the promise and actually using
|
|
// the interpreter after it loads completely
|
|
// setTimeout(async () => {
|
|
// await this.eval(this.code);
|
|
// this.proxy = this.proxyClass(this);
|
|
// console.log('proxy', this.proxy);
|
|
// this.proxy.connect();
|
|
// this.registerWidget();
|
|
// }, 2000);
|
|
pyodideLoaded.subscribe(value => {
|
|
console.log('RUNTIME READY', value);
|
|
if ('runPythonAsync' in value) {
|
|
runtime = value;
|
|
setTimeout(async () => {
|
|
await this.eval(this.code);
|
|
this.proxy = this.proxyClass(this);
|
|
console.log('proxy', this.proxy);
|
|
this.proxy.connect();
|
|
this.registerWidget();
|
|
}, 1000);
|
|
}
|
|
});
|
|
}
|
|
|
|
registerWidget() {
|
|
const pyodide = runtime;
|
|
console.log('new widget registered:', this.name);
|
|
pyodide.globals.set(this.id, this.proxy);
|
|
}
|
|
|
|
async eval(source: string): Promise<void> {
|
|
const pyodide = runtime;
|
|
try {
|
|
const output = await pyodide.runPythonAsync(source);
|
|
this.proxyClass = pyodide.globals.get(this.klass);
|
|
if (output !== undefined) {
|
|
console.log(output);
|
|
}
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
}
|
|
}
|
|
const xPyWidget = customElements.define(name, CustomWidget);
|
|
}
|
|
|
|
export class PyWidget extends HTMLElement {
|
|
shadow: ShadowRoot;
|
|
name: string;
|
|
klass: string;
|
|
outputElement: HTMLElement;
|
|
errorElement: HTMLElement;
|
|
wrapper: HTMLElement;
|
|
theme: string;
|
|
source: string;
|
|
code: 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);
|
|
|
|
this.addAttributes('src','name','klass');
|
|
}
|
|
|
|
addAttributes(...attrs:string[]){
|
|
for (const each of attrs){
|
|
const property = each === "src" ? "source" : each;
|
|
if (this.hasAttribute(each)) {
|
|
this[property]=this.getAttribute(each);
|
|
}
|
|
}
|
|
}
|
|
|
|
async connectedCallback() {
|
|
if (this.id === undefined) {
|
|
throw new ReferenceError(
|
|
`No id specified for component. Components must have an explicit id. Please use id="" to specify your component id.`,
|
|
);
|
|
}
|
|
|
|
const mainDiv = document.createElement('div');
|
|
mainDiv.id = this.id + '-main';
|
|
this.appendChild(mainDiv);
|
|
console.log('reading source');
|
|
this.code = await this.getSourceFromFile(this.source);
|
|
createWidget(this.name, this.code, this.klass);
|
|
}
|
|
|
|
initOutErr(): void {
|
|
if (this.hasAttribute('output')) {
|
|
this.errorElement = this.outputElement = document.getElementById(this.getAttribute('output'));
|
|
|
|
// in this case, the default output-mode is append, if hasn't been specified
|
|
if (!this.hasAttribute('output-mode')) {
|
|
this.setAttribute('output-mode', 'append');
|
|
}
|
|
} else {
|
|
if (this.hasAttribute('std-out')) {
|
|
this.outputElement = document.getElementById(this.getAttribute('std-out'));
|
|
} else {
|
|
// In this case neither output or std-out have been provided so we need
|
|
// to create a new output div to output to
|
|
this.outputElement = document.createElement('div');
|
|
this.outputElement.classList.add('output');
|
|
this.outputElement.hidden = true;
|
|
this.outputElement.id = this.id + '-' + this.getAttribute('exec-id');
|
|
}
|
|
|
|
if (this.hasAttribute('std-err')) {
|
|
this.errorElement = document.getElementById(this.getAttribute('std-err'));
|
|
} else {
|
|
this.errorElement = this.outputElement;
|
|
}
|
|
}
|
|
}
|
|
|
|
async getSourceFromFile(s: string): Promise<string> {
|
|
const response = await fetch(s);
|
|
return await response.text();
|
|
}
|
|
|
|
async eval(source: string): Promise<void> {
|
|
const pyodide = runtime;
|
|
try {
|
|
const output = await pyodide.runPythonAsync(source);
|
|
if (output !== undefined) {
|
|
console.log(output);
|
|
}
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
}
|
|
}
|