blob: de6d12b22b232c87bba1b24a4d33582acf3e5c3e [file] [log] [blame]
// import * as matter from 'gray-matter';
import { URL_PARAMS } from '../common/config';
export const store = {
cdnRoot: '',
version: '',
locale: '',
darkMode: URL_PARAMS.theme === 'dark',
enableDecal: 'decal' in URL_PARAMS,
renderer: URL_PARAMS.renderer || 'canvas',
typeCheck: 'ts' in URL_PARAMS,
useDirtyRect: 'useDirtyRect' in URL_PARAMS,
runCode: '',
sourceCode: '',
runHash: '',
isMobile: window.innerWidth < 600,
editorStatus: {
type: '',
message: ''
}
};
export function loadExampleCode() {
return new Promise((resolve) => {
const glFolder = URL_PARAMS.gl ? 'gl/' : '';
const lang = store.typeCheck ? 'ts' : 'js';
$.ajax(
`${store.cdnRoot}examples/${lang}/${glFolder}${URL_PARAMS.c}.${lang}?_v_${store.version}`,
{
dataType: 'text',
success: (data) => {
resolve(data);
}
}
);
});
}
export function parseSourceCode(code) {
return (
code
// remove front matter
.replace(/\/\*[\w\W]*?\*\//, '')
.trim()
// ts code needs add `export {}` to be a module. remove it.
.replace(/export\s+\{\s*\}\s*;?$/g, '')
);
}
let hashId = 123;
export function updateRunHash() {
store.runHash = hashId++;
}