forked from daattali/beautiful-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypescript-interface-to-csharp.html
80 lines (69 loc) · 2.45 KB
/
typescript-interface-to-csharp.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
layout: none
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/assets/css/typescript-interface-to-csharp.html.css" type="text/css" />
<title>Typescript interface to C# class converter</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"></script>
<script type="text/javascript" src="/assets/js/typescript-interface-to-csharp.bundle.js"></script>
</head>
<body>
<div class="content">
<div class="tophalf">
<div class="in">
<textarea id="in" spellcheck="false" placeholder="input typescript"></textarea>
<div id="pos">position: <span></span></div>
</div>
<div class="parsed">
<code id="parsed" spellcheck="false" placeholder="output AST"></code>
</div>
</div>
<div class="bottomhalf">
<textarea id="csharp" spellcheck="false" readonly placeholder="output C#"></textarea>
</div>
</div>
</body>
</html>
<script id="inputCaretPosition">
// https://stackoverflow.com/questions/128342/display-div-at-cursor-position-in-textarea
// http://stackoverflow.com/questions/263743/how-to-get-caret-position-in-textarea
function getCaret(el) {
if (el.selectionStart) {
return el.selectionStart;
} else if (document.selection) {
el.focus();
var r = document.selection.createRange();
if (r == null) {
return 0;
}
var re = el.createTextRange(),
rc = re.duplicate();
re.moveToBookmark(r.getBookmark());
rc.setEndPoint('EndToStart', re);
return rc.text.length;
}
return 0;
}
$(function () {
var span = $('#pos span');
var textarea = $('#in');
textarea.on('keydown keyup click', function (event) {
var pos = getCaret(textarea[0]),
which = event.which;
span.text(pos);
$('span.location').each(function (i) {
if ($(this).html() != pos)
$(this).removeClass('location');
});
$('span.number').each(function (i) {
if ($(this).html() == pos)
$(this).addClass('location');
});
});
});
</script>