forked from anandanand84/technicalindicators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testdocs.html
46 lines (44 loc) · 1.87 KB
/
testdocs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
</head>
<body>
<div id="container" style="width:800px;height:600px;border:1px solid grey"></div>
<script src="node_modules/monaco-editor/min/vs/loader.js"></script>
<script>
var editor;
require.config({ paths: { 'vs': 'node_modules/monaco-editor/min/vs' }});
require(['vs/editor/editor.main'], function() {
fetch('http://localhost:5444/declarations/generated.d.ts', { method: 'get'}).then(function(response) { return response.text() }).then(function(content) {
var technicalIndicators = content.replace(new RegExp('default ', 'g'), '').split('export').join('declare');
var disposable = monaco.languages.typescript.typescriptDefaults.addExtraLib(
technicalIndicators
, 'indicators.d.ts');
monaco.languages.typescript.typescriptDefaults.setCompilerOptions({
target: monaco.languages.typescript.ScriptTarget.ES5,
noEmit : true,
// noLib : true,
allowNonTsExtensions: true
});
editor = monaco.editor.create(container, {
value: `//Try indicators and check console
let result = sma({period : 10 , values: [1,2,3,4,5,6,7,8,9]});
console.log(result)
`,
fontSize : 12,
emptySelectionClipboard:false,
formatOnType : true,
formatOnPaste : true,
parameterHints : true,
language: 'typescript'
});
window.addEventListener('resize', function () {
editor.layout();
});
})
});
</script>
</body>
</html>