workflow(template-explorer): improve types (#128)

This commit is contained in:
月迷津渡 2019-10-06 23:55:23 +08:00 committed by Evan You
parent 8d70093802
commit 4fc2174dce
2 changed files with 34 additions and 32 deletions

View File

@ -4,10 +4,16 @@ import { compilerOptions, initOptions } from './options'
import { watch } from '@vue/runtime-dom' import { watch } from '@vue/runtime-dom'
import { SourceMapConsumer } from 'source-map' import { SourceMapConsumer } from 'source-map'
const self = window as any declare global {
interface Window {
monaco: typeof m
_deps: any
init: () => void
}
}
self.init = () => { window.init = () => {
const monaco = (window as any).monaco as typeof m const monaco = window.monaco
const persistedState = JSON.parse( const persistedState = JSON.parse(
decodeURIComponent(window.location.hash.slice(1)) || `{}` decodeURIComponent(window.location.hash.slice(1)) || `{}`
) )
@ -28,10 +34,8 @@ self.init = () => {
monaco.editor.setModelMarkers(editor.getModel()!, `@vue/compiler-dom`, []) monaco.editor.setModelMarkers(editor.getModel()!, `@vue/compiler-dom`, [])
console.log(`AST: `, ast) console.log(`AST: `, ast)
lastSuccessfulCode = code + `\n\n// Check the console for the AST` lastSuccessfulCode = code + `\n\n// Check the console for the AST`
lastSuccessfulMap = new self._deps['source-map'].SourceMapConsumer( lastSuccessfulMap = new window._deps['source-map'].SourceMapConsumer(map)
map lastSuccessfulMap!.computeColumnSpans()
) as SourceMapConsumer
lastSuccessfulMap.computeColumnSpans()
} catch (e) { } catch (e) {
console.error(e) console.error(e)
} }
@ -71,7 +75,7 @@ self.init = () => {
} }
} }
const sharedEditorOptions = { const sharedEditorOptions: m.editor.IEditorConstructionOptions = {
theme: 'vs-dark', theme: 'vs-dark',
fontSize: 14, fontSize: 14,
wordWrap: 'on', wordWrap: 'on',
@ -81,30 +85,24 @@ self.init = () => {
minimap: { minimap: {
enabled: false enabled: false
} }
} as const }
const editor = monaco.editor.create( const editor = monaco.editor.create(document.getElementById('source')!, {
document.getElementById('source') as HTMLElement, value: persistedState.src || `<div>Hello World!</div>`,
{ language: 'html',
value: persistedState.src || `<div>Hello World!</div>`, ...sharedEditorOptions
language: 'html', })
...sharedEditorOptions
}
)
editor.getModel()!.updateOptions({ editor.getModel()!.updateOptions({
tabSize: 2 tabSize: 2
}) })
const output = monaco.editor.create( const output = monaco.editor.create(document.getElementById('output')!, {
document.getElementById('output') as HTMLElement, value: '',
{ language: 'javascript',
value: '', readOnly: true,
language: 'javascript', ...sharedEditorOptions
readOnly: true, })
...sharedEditorOptions
}
)
output.getModel()!.updateOptions({ output.getModel()!.updateOptions({
tabSize: 2 tabSize: 2
}) })
@ -207,7 +205,10 @@ self.init = () => {
watch(reCompile) watch(reCompile)
} }
function debounce<T extends Function>(fn: T, delay: number = 300): T { function debounce<T extends (...args: any[]) => any>(
fn: T,
delay: number = 300
): T {
let prevTimer: NodeJS.Timeout | null = null let prevTimer: NodeJS.Timeout | null = null
return ((...args: any[]) => { return ((...args: any[]) => {
if (prevTimer) { if (prevTimer) {

View File

@ -53,9 +53,10 @@ const App = {
checked: checked:
compilerOptions.prefixIdentifiers || compilerOptions.prefixIdentifiers ||
compilerOptions.mode === 'module', compilerOptions.mode === 'module',
onChange(e: any) { onChange(e: Event) {
compilerOptions.prefixIdentifiers = compilerOptions.prefixIdentifiers =
e.target.checked || compilerOptions.mode === 'module' (<HTMLInputElement>e.target).checked ||
compilerOptions.mode === 'module'
} }
}), }),
h('label', { for: 'prefix' }, 'prefixIdentifiers'), h('label', { for: 'prefix' }, 'prefixIdentifiers'),
@ -65,8 +66,8 @@ const App = {
type: 'checkbox', type: 'checkbox',
id: 'hoist', id: 'hoist',
checked: compilerOptions.hoistStatic, checked: compilerOptions.hoistStatic,
onChange(e: any) { onChange(e: Event) {
compilerOptions.hoistStatic = e.target.checked compilerOptions.hoistStatic = (<HTMLInputElement>e.target).checked
} }
}), }),
h('label', { for: 'hoist' }, 'hoistStatic') h('label', { for: 'hoist' }, 'hoistStatic')
@ -76,5 +77,5 @@ const App = {
} }
export function initOptions() { export function initOptions() {
createApp().mount(App, document.getElementById('header') as HTMLElement) createApp().mount(App, document.getElementById('header')!)
} }