blob: f06fafa12564ca5195f93c88aa94ee4819d56d0c [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: URL_PARAMS.editor === 'monaco',
useDirtyRect: 'useDirtyRect' in URL_PARAMS,
runCode: '',
sourceCode: '',
runHash: '',
isMobile: window.innerWidth < 600,
editorStatus: {
type: '',
message: ''
}
};
export function loadExampleCode() {
return new Promise(resolve => {
const dataRoot = URL_PARAMS.gl ? 'data-gl' : 'data';
$.ajax(`${store.cdnRoot}/${dataRoot}/${URL_PARAMS.c}.js?_v_${store.version}`, {
dataType: 'text',
success: (data) => {
resolve(data);
}
});
});
}
export function parseSourceCode(code) {
return code.replace(/\/\*[\w\W]*?\*\//, '').trim();
}
let hashId = 123;
export function updateRunHash() {
store.runHash = hashId++;
}