-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6b1f576
Showing
282 changed files
with
70,298 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 3708f4eb708e126a71bd97afb18a429a | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
const appName = 'Lumen' | ||
const appCacheName = 'Lumen-0.7.0a12'; | ||
|
||
const preCacheFiles = []; | ||
|
||
const cachePatterns = ['https://cdn.holoviz.org/panel/1.5.0-b.2/dist/', 'https://cdn.bokeh.org/bokeh/', 'https://cdn.jsdelivr.net/pyodide/', 'https://files.pythonhosted.org/packages/', 'https://pypi.org/pypi/']; | ||
|
||
self.addEventListener('install', (e) => { | ||
console.log('[Service Worker] Install'); | ||
self.skipWaiting(); | ||
e.waitUntil((async () => { | ||
const cacheNames = await caches.keys(); | ||
for (const cacheName of cacheNames) { | ||
if (cacheName.startsWith(appName) && cacheName !== appCacheName) { | ||
console.log(`[Service Worker] Delete old cache ${cacheName}`); | ||
caches.delete(cacheName); | ||
} | ||
} | ||
const cache = await caches.open(appCacheName); | ||
if (preCacheFiles.length) { | ||
console.log('[Service Worker] Precaching '); | ||
} | ||
preCacheFiles.forEach(async (cacheFile) => { | ||
const request = new Request(cacheFile); | ||
const response = await fetch(request); | ||
if (response.ok || response.type == 'opaque') { | ||
cache.put(request, response); | ||
} | ||
}) | ||
})()); | ||
}); | ||
|
||
self.addEventListener('activate', (event) => { | ||
console.log('[Service Worker] Activating'); | ||
return self.clients.claim(); | ||
}); | ||
|
||
self.addEventListener('fetch', (e) => { | ||
if (e.request.method !== 'GET') { | ||
return | ||
} | ||
e.respondWith((async () => { | ||
const cache = await caches.open(appCacheName); | ||
let response = await cache.match(e.request); | ||
console.log(`[Service Worker] Fetching resource: ${e.request.url}`); | ||
if (response) { | ||
return response; | ||
} | ||
response = await fetch(e.request); | ||
if (!response.ok && !(response.type == 'opaque')) { | ||
throw Error(`[Service Worker] Fetching resource ${e.request.url} failed with response: ${response.status}`); | ||
} | ||
console.log(`[Service Worker] Caching new resource: ${e.request.url}`); | ||
cache.put(e.request, response.clone()); | ||
return response; | ||
})()); | ||
}); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
// @ts-check | ||
|
||
// Extra JS capability for selected tabs to be synced | ||
// The selection is stored in local storage so that it persists across page loads. | ||
|
||
/** | ||
* @type {Record<string, HTMLElement[]>} | ||
*/ | ||
let sd_id_to_elements = {}; | ||
const storageKeyPrefix = "sphinx-design-tab-id-"; | ||
|
||
/** | ||
* Create a key for a tab element. | ||
* @param {HTMLElement} el - The tab element. | ||
* @returns {[string, string, string] | null} - The key. | ||
* | ||
*/ | ||
function create_key(el) { | ||
let syncId = el.getAttribute("data-sync-id"); | ||
let syncGroup = el.getAttribute("data-sync-group"); | ||
if (!syncId || !syncGroup) return null; | ||
return [syncGroup, syncId, syncGroup + "--" + syncId]; | ||
} | ||
|
||
/** | ||
* Initialize the tab selection. | ||
* | ||
*/ | ||
function ready() { | ||
// Find all tabs with sync data | ||
|
||
/** @type {string[]} */ | ||
let groups = []; | ||
|
||
document.querySelectorAll(".sd-tab-label").forEach((label) => { | ||
if (label instanceof HTMLElement) { | ||
let data = create_key(label); | ||
if (data) { | ||
let [group, id, key] = data; | ||
|
||
// add click event listener | ||
// @ts-ignore | ||
label.onclick = onSDLabelClick; | ||
|
||
// store map of key to elements | ||
if (!sd_id_to_elements[key]) { | ||
sd_id_to_elements[key] = []; | ||
} | ||
sd_id_to_elements[key].push(label); | ||
|
||
if (groups.indexOf(group) === -1) { | ||
groups.push(group); | ||
// Check if a specific tab has been selected via URL parameter | ||
const tabParam = new URLSearchParams(window.location.search).get( | ||
group | ||
); | ||
if (tabParam) { | ||
console.log( | ||
"sphinx-design: Selecting tab id for group '" + | ||
group + | ||
"' from URL parameter: " + | ||
tabParam | ||
); | ||
window.sessionStorage.setItem(storageKeyPrefix + group, tabParam); | ||
} | ||
} | ||
|
||
// Check is a specific tab has been selected previously | ||
let previousId = window.sessionStorage.getItem( | ||
storageKeyPrefix + group | ||
); | ||
if (previousId === id) { | ||
// console.log( | ||
// "sphinx-design: Selecting tab from session storage: " + id | ||
// ); | ||
// @ts-ignore | ||
label.previousElementSibling.checked = true; | ||
} | ||
} | ||
} | ||
}); | ||
} | ||
|
||
/** | ||
* Activate other tabs with the same sync id. | ||
* | ||
* @this {HTMLElement} - The element that was clicked. | ||
*/ | ||
function onSDLabelClick() { | ||
let data = create_key(this); | ||
if (!data) return; | ||
let [group, id, key] = data; | ||
for (const label of sd_id_to_elements[key]) { | ||
if (label === this) continue; | ||
// @ts-ignore | ||
label.previousElementSibling.checked = true; | ||
} | ||
window.sessionStorage.setItem(storageKeyPrefix + group, id); | ||
} | ||
|
||
document.addEventListener("DOMContentLoaded", ready, false); |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,224 @@ | ||
importScripts("https://cdn.jsdelivr.net/pyodide/v0.25.0/full/pyodide.js"); | ||
|
||
const QUEUE = []; | ||
|
||
const REQUIRES = {} | ||
|
||
function sendPatch(patch, buffers, cell_id) { | ||
self.postMessage({ | ||
type: 'patch', | ||
patch: patch, | ||
buffers: buffers, | ||
id: cell_id | ||
}) | ||
} | ||
|
||
function sendStdout(cell_id, stdout) { | ||
self.postMessage({ | ||
type: 'stdout', | ||
content: stdout, | ||
id: cell_id | ||
}) | ||
} | ||
function sendStderr(cell_id, stderr) { | ||
self.postMessage({ | ||
type: 'stderr', | ||
content: stderr, | ||
id: cell_id | ||
}) | ||
} | ||
|
||
async function loadApplication(cell_id, path) { | ||
console.log("Loading pyodide!"); | ||
self.pyodide = await loadPyodide(); | ||
self.pyodide.globals.set("sendPatch", sendPatch); | ||
self.pyodide.globals.set("sendStdout", sendStdout); | ||
self.pyodide.globals.set("sendStderr", sendStderr); | ||
console.log("Loaded!"); | ||
await self.pyodide.loadPackage("micropip"); | ||
const packages = ['https://cdn.holoviz.org/panel/1.5.0-b.2/dist/wheels/bokeh-3.5.1-py3-none-any.whl', 'https://cdn.holoviz.org/panel/1.5.0-b.2/dist/wheels/panel-1.5.0b2-py3-none-any.whl', 'lumen==0.7.0a12', 'requests', 'pandas', 'pyodide-http', 'holoviews>=1.15.1']; | ||
if (path != null) { | ||
for (const key of Object.keys(REQUIRES)) { | ||
if (path.replace('.html', '').endsWith(key.replace('.md', ''))) { | ||
for (const req of REQUIRES[key]) { | ||
packages.push(req) | ||
} | ||
} | ||
} | ||
} | ||
|
||
await self.pyodide.runPythonAsync("") | ||
self.pyodide.runPython("import micropip") | ||
for (const pkg of packages) { | ||
self.postMessage({ | ||
type: 'loading', | ||
msg: `Loading ${pkg}`, | ||
id: cell_id | ||
}); | ||
await self.pyodide.runPythonAsync(` | ||
await micropip.install('${pkg}', keep_going=True); | ||
`); | ||
} | ||
console.log("Packages loaded!"); | ||
} | ||
|
||
const autodetect_deps_code = ` | ||
import json | ||
try: | ||
from panel.io.mime_render import find_requirements | ||
except Exception: | ||
from panel.io.mime_render import find_imports as find_requirements | ||
json.dumps(find_requirements(msg.to_py()['code']))` | ||
|
||
const exec_code = ` | ||
from functools import partial | ||
from panel.io.pyodide import pyrender | ||
from js import console | ||
msg = msg.to_py() | ||
code = msg['code'] | ||
stdout_cb = partial(sendStdout, msg['id']) | ||
stderr_cb = partial(sendStderr, msg['id']) | ||
target = f"output-{msg['id']}" | ||
pyrender(code, stdout_cb, stderr_cb, target)` | ||
|
||
const onload_code = ` | ||
msg = msg.to_py() | ||
if msg['mime'] == 'application/bokeh': | ||
from panel.io.pyodide import _link_docs_worker | ||
from panel.io.state import state | ||
doc = state.cache[f"output-{msg['id']}"] | ||
_link_docs_worker(doc, sendPatch, msg['id'], 'js')` | ||
|
||
const patch_code = ` | ||
from panel import state | ||
try: | ||
from pane.io.pyodide import _convert_json_patch | ||
patch = _convert_json_patch(msg.patch) | ||
except: | ||
patch = msg.patch.to_py() | ||
doc = state.cache[f"output-{msg.id}"] | ||
doc.apply_json_patch(patch, setter='js')` | ||
|
||
const MESSAGES = { | ||
patch: patch_code, | ||
execute: exec_code, | ||
rendered: onload_code | ||
} | ||
|
||
self.onmessage = async (event) => { | ||
let resolveExecution, rejectExecution; | ||
const executing = new Promise(function(resolve, reject){ | ||
resolveExecution = resolve; | ||
rejectExecution = reject; | ||
}); | ||
|
||
const prev_msg = QUEUE[0] | ||
const msg = {...event.data, executing} | ||
QUEUE.unshift(msg) | ||
|
||
if (prev_msg) { | ||
self.postMessage({ | ||
type: 'loading', | ||
msg: 'Awaiting previous cells', | ||
id: msg.id | ||
}); | ||
await prev_msg.executing | ||
} | ||
|
||
// Init pyodide | ||
if (self.pyodide == null) { | ||
self.postMessage({ | ||
type: 'loading', | ||
msg: 'Loading pyodide', | ||
id: msg.id | ||
}); | ||
await loadApplication(msg.id, msg.path) | ||
self.postMessage({ | ||
type: 'loaded', | ||
id: msg.id | ||
}); | ||
} | ||
|
||
// Handle message | ||
if (!MESSAGES.hasOwnProperty(msg.type)) { | ||
console.warn(`Service worker received unknown message type '${msg.type}'.`) | ||
resolveExecution() | ||
self.postMessage({ | ||
type: 'idle', | ||
id: msg.id | ||
}); | ||
return | ||
} | ||
|
||
if (msg.type === 'execute') { | ||
let deps | ||
try { | ||
self.pyodide.globals.set('msg', msg) | ||
deps = self.pyodide.runPython(autodetect_deps_code) | ||
} catch(e) { | ||
deps = '[]' | ||
console.warn(`Auto-detection of dependencies failed with error: ${e}`) | ||
} | ||
for (const pkg of JSON.parse(deps)) { | ||
self.postMessage({ | ||
type: 'loading', | ||
msg: `Loading ${pkg}`, | ||
id: msg.id | ||
}); | ||
try { | ||
await self.pyodide.runPythonAsync(`await micropip.install('${pkg}', keep_going=True)`) | ||
} catch(e) { | ||
console.log(`Auto-detected dependency ${pkg} could not be installed.`) | ||
} | ||
} | ||
} | ||
|
||
try { | ||
self.pyodide.globals.set('msg', msg) | ||
let out = await self.pyodide.runPythonAsync(MESSAGES[msg.type]) | ||
resolveExecution() | ||
if (out == null) { | ||
out = new Map() | ||
} | ||
if (out.has('content')) { | ||
self.postMessage({ | ||
type: 'render', | ||
id: msg.id, | ||
content: out.get('content'), | ||
mime: out.get('mime_type') | ||
}); | ||
} | ||
if (out.has('stdout') && out.get('stdout').length) { | ||
self.postMessage({ | ||
type: 'stdout', | ||
content: out.get('stdout'), | ||
id: msg.id | ||
}); | ||
} | ||
if (out.has('stderr') && out.get('stderr').length) { | ||
self.postMessage({ | ||
type: 'stderr', | ||
content: out.get('stderr'), | ||
id: msg.id | ||
}); | ||
} | ||
self.postMessage({ | ||
type: 'idle', | ||
id: msg.id, | ||
uuid: msg.uuid | ||
}); | ||
} catch (e) { | ||
const traceback = `${e}` | ||
const tblines = traceback.split('\n') | ||
self.postMessage({ | ||
type: 'error', | ||
traceback: traceback, | ||
msg: tblines[tblines.length-2], | ||
id: msg.id | ||
}); | ||
resolveExecution() | ||
throw(e) | ||
} | ||
} |
Oops, something went wrong.