blob: fba4b9ac54a8c92877e1dd2d239d51d2151e5987 [file] [log] [blame]
// import * as matter from 'gray-matter';
import { URL_PARAMS } from '../common/config';
import CHART_LIST from '../data/chart-list-data';
import CHART_LIST_GL from '../data/chart-list-data-gl';
import { customAlphabet } from 'nanoid';
const nanoid = customAlphabet('1234567890abcdefghijklmnopqrstuvwxyz', 10);
export const store = {
echartsVersion: URL_PARAMS.version || '5',
cdnRoot: '',
version: '',
locale: '',
darkMode: URL_PARAMS.theme === 'dark',
enableDecal: 'decal' in URL_PARAMS,
renderer: URL_PARAMS.renderer || 'canvas',
typeCheck:
getExampleConfig() &&
getExampleConfig().ts &&
(URL_PARAMS.lang || '').toLowerCase() === 'ts',
useDirtyRect: 'useDirtyRect' in URL_PARAMS,
runCode: '',
sourceCode: '',
runHash: '',
isMobile: window.innerWidth < 600,
editorStatus: {
type: '',
message: ''
},
randomSeed: URL_PARAMS.random || 'echarts'
};
function findExample(item) {
return URL_PARAMS.c === item.id;
}
export function updateRandomSeed() {
store.randomSeed = nanoid();
}
export function getExampleConfig() {
const example = CHART_LIST.concat(CHART_LIST_GL).find(findExample);
return example;
}
export function isGLExample() {
return CHART_LIST_GL.find(findExample);
}
export function saveExampleCodeToLocal() {
localStorage.setItem(
'echarts-examples-code',
JSON.stringify({
code: store.sourceCode,
lang: store.typeCheck ? 'ts' : 'js'
})
);
}
export function loadExampleCodeFromLocal() {
try {
return JSON.parse(localStorage.getItem('echarts-examples-code'));
} catch (e) {
return null;
}
}
export function clearLocalExampleCode() {
localStorage.removeItem('echarts-examples-code');
}
export function loadExampleCode() {
const localCode = loadExampleCodeFromLocal();
if (localCode) {
clearLocalExampleCode();
return Promise.resolve(localCode.code);
}
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.
// FIXME
.replace(/export\s+\{\s*\}\s*;?$/g, '')
);
}
let hashId = 123;
export function updateRunHash() {
store.runHash = hashId++;
}