TypeScript 沙盒
一個用於與 TypeScript 和 JavaScript 程式碼互動的 DOM 函式庫,它為 TypeScript 遊樂場 的核心提供動力
你可以使用 TypeScript 沙盒來
- 為人們建立類似 IDE 的體驗,讓他們探索你的函式庫的 API
- 建立使用 TypeScript 的互動式網路工具,並免費獲得許多遊樂場開發人員體驗
例如,側邊欄的沙盒已擷取 DangerJS 的類型,而未對此程式碼範例進行任何修改。這是因為遊樂場的自動類型擷取功能預設已啟用。它還會在 URL 中尋找程式碼和選取索引的相同參數。
試試 按一下這個 URL ,即可看到實際運作的狀況。
此函式庫建構於 Monaco Editor 之上,提供較高層級的 API,但透過單一的 sandbox 物件提供對所有較低層級 API 的存取權。
你可以在 microsoft/TypeScript-Website 單一儲存庫中找到 TypeScript 沙盒的程式碼。
用法
沙盒使用與 monaco-editor 相同的工具,這表示此函式庫會作為 AMD 捆綁套件出貨,你可以使用 VSCode Loader 來 require。
由於 TypeScript 網站需要它,因此你可以使用我們這裡 託管的副本。
開始使用
建立一個新的檔案:index.html,並將此程式碼貼到該檔案中。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
</head>
<div id="loader">Loading...</div>
<div id="monaco-editor-embed" style="height: 800px;" />
<script>
// First set up the VSCode loader in a script tag
const getLoaderScript = document.createElement('script')
getLoaderScript.src = 'https://typescript.lang.tw/js/vs.loader.js'
getLoaderScript.async = true
getLoaderScript.onload = () => {
// Now the loader is ready, tell require where it can get the version of monaco, and the sandbox
// This version uses the latest version of the sandbox, which is used on the TypeScript website
// For the monaco version you can use unpkg or the TypeSCript web infra CDN
// You can see the available releases for TypeScript here:
// https://typescript.azureedge.net/indexes/releases.json
//
require.config({
paths: {
vs: 'https://typescript.azureedge.net/cdn/4.0.5/monaco/min/vs',
// vs: 'https://unpkg.com/@typescript-deploys/monaco-editor@4.0.5/min/vs',
sandbox: 'https://typescript.lang.tw/js/sandbox',
},
// This is something you need for monaco to work
ignoreDuplicateModules: ['vs/editor/editor.main'],
})
// Grab a copy of monaco, TypeScript and the sandbox
require(['vs/editor/editor.main', 'vs/language/typescript/tsWorker', 'sandbox/index'], (
main,
_tsWorker,
sandboxFactory
) => {
const initialCode = `import {markdown, danger} from "danger"
export default async function () {
// Check for new @types in devDependencies
const packageJSONDiff = await danger.git.JSONDiffForFile("package.json")
const newDeps = packageJSONDiff.devDependencies.added
const newTypesDeps = newDeps?.filter(d => d.includes("@types")) ?? []
if (newTypesDeps.length){
markdown("Added new types packages " + newTypesDeps.join(", "))
}
}
`
const isOK = main && window.ts && sandboxFactory
if (isOK) {
document.getElementById('loader').parentNode.removeChild(document.getElementById('loader'))
} else {
console.error('Could not get all the dependencies of sandbox set up!')
console.error('main', !!main, 'ts', !!window.ts, 'sandbox', !!sandbox)
return
}
// Create a sandbox and embed it into the div #monaco-editor-embed
const sandboxConfig = {
text: initialCode,
compilerOptions: {},
domID: 'monaco-editor-embed',
}
const sandbox = sandboxFactory.createTypeScriptSandbox(sandboxConfig, main, window.ts)
sandbox.editor.focus()
})
}
document.body.appendChild(getLoaderScript)
</script>
</html>
在網頁瀏覽器中開啟檔案 index.html 會在頁面頂端載入相同的沙盒。
API 的一些範例
將使用者的 TypeScript 轉換為 JavaScript
const sandbox = createTypeScriptSandbox(sandboxConfig, main, ts)
// Async because it needs to go
const js = await sandbox.getRunnableJS()
console.log(js)
取得使用者的編輯器的 DTS
const sandbox = createTypeScriptSandbox(sandboxConfig, main, ts)
const dts = await sandbox.getDTSForCode()
console.log(dts)
要求 LSP 回應
const sandbox = createTypeScriptSandbox(sandboxConfig, main, ts)
// A worker here is a web-worker, set up by monaco-typescript
// which does the computation in the background
const worker = await sandbox.getWorkerProcess()
const definitions = await client.getDefinitionAtPosition(model.uri.toString(), 6)
使用幾個不同的 API 變更編譯器旗標
const sandbox = createTypeScriptSandbox(sandboxConfig, main, ts)
// Hook in to all changes to the compiler
sandbox.setDidUpdateCompilerSettings((newOptions) => {
console.log("Compiler settings changed: ", newOptions)
})
// Update via key value
sandbox.updateCompilerSetting("allowJs", true)
// Update via an object
sandbox.updateCompilerSettings({ jsx: 0 })
// Replace the compiler settings
sandbox.setCompilerSettings({})
在編輯器中突顯一些程式碼
const sandbox = createTypeScriptSandbox(sandboxConfig, main, ts)
const start = {
lineNumber: 0,
column: 0
}
const end = {
lineNumber: 0,
column: 4
}
const decorations = sandbox.editor.deltaDecorations([], [
{
range: new sandbox.monaco.Range(start.lineNumber, start.column, end.lineNumber, end.column),
options: { inlineClassName: 'error-highlight' },
},
])
建立你自己的遊樂場。
const sandbox = createTypeScriptSandbox(sandboxConfig, main, ts)
// Use a script to make a JSON file like:
// {
// "file:///node_modules/types/keyboard/index.d.ts": "export const enterKey: string"
// }
//
// Where the keys are the paths, and the values are the source-code. The sandbox
// will use the node resolution lookup strategy by default.
const dtsFiles = {}
Object.keys(dtsFiles).forEach(path => {
sandbox.languageServiceDefaults.addExtraLib(dts[path], path);
});
API 主要是一個輕量級的 shim,覆蓋 monaco-editor API 與 monaco-typescript API。