-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
salam-online.html
217 lines (182 loc) · 5.23 KB
/
salam-online.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<!doctype html>
<html dir="rtl" lang="fa-IR">
<head>
<meta charset="UTF-8" />
<title>Salam Programming Language</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<textarea
style="width: 100%; border: 1px solid black"
dir="rtl"
id="code"
rows="20"
cols="40"
>
صفحه:
رنگ پس زمینه = «زرد»
رنگ = «سیاه»
محتوا = «سلام دنیا»
پاراگراف:
محتوا = «سلام این یک متن آزاد است و می تواند طویل باشد.»
تمام
خط بعدی:
تکرار = ۳
تمام
جعبه:
تکرار = ۴
رنگ پس زمینه = "زرد"
قطعه:
محتوا = "این یک متن است"
تمام
فهرست مرتب:
مورد:
محتوا = "این یک ایتم موردی است"
تمام
مورد:
محتوا = "این یک ایتم موردی است"
تمام
مورد:
محتوا = "این یک ایتم موردی است"
تمام
تمام
تمام
قطعه:
محتوا = "متن ازمایشی"
تمام
خط بعدی:
تکرار = ۳
تمام
قطعه:
محتوا = "پایان"
تمام
تمام</textarea
>
<br />
<button id="execute" disabled="true">اجرا</button>
<iframe
style="margin-top: 10px; width: 100%; border: 1px solid black"
width="100%"
height="100%"
></iframe>
<pre style="width: 100%" dir="ltr"></pre>
<script>
const iframe = document.querySelector('iframe');
const outputPre = document.querySelector('pre');
const codeTextArea = document.querySelector('#code');
const executeButton = document.querySelector('#execute');
let isReady = false;
let is_running = false;
var Module = {
noInitialRun: true,
onRuntimeInitialized: () => {
console.log('Salam loaded successfully');
isReady = true;
executeButton.disabled = false;
if (codeTextArea.value.toString().trim() !== '') {
runSalam();
}
},
print: (text) => {
console.log(text);
},
};
const restartRuntime = () => {
console.log('Restarting runtime...');
Module.onRuntimeInitialized();
Module._main();
};
const reloadModule = () => {
const script = document.createElement('script');
script.src = 'salam-wa.js';
script.onload = () => {
console.log('Salam module reloaded.');
};
document.body.appendChild(script);
};
const runSalam = () => {
console.log('Running Salam code...');
const code = codeTextArea.value.toString().trim();
if (!code) {
alert('Code is empty! Please enter Salam code.');
return;
}
const args = ['code', code];
console.log('Calling Salam with arguments:', args);
if (isReady) {
captureOutput(args);
} else {
console.log('Salam runtime not ready. Please wait...');
}
};
const captureOutput = (arguments) => {
if (outputPre) {
outputPre.textContent = '';
}
let output = '';
const originalConsoleLog = console.log;
const originalConsoleError = console.error;
console.log = (text) => {
output += text + '\n';
};
console.error = (text) => {
output += 'Error: ' + text + '\n';
};
if (is_running) {
return;
}
try {
is_running = true;
if (typeof callMain === 'function') {
try {
callMain(arguments);
} catch (err) {
console.error('Runtime error:', err);
}
} else {
console.error(
'callMain is not defined. Ensure NO_EXIT_RUNTIME is enabled.',
);
}
} catch (err) {
console.error('خطای غیرمنتظره رخ داد. ' + err);
} finally {
is_running = false;
// if (Module.noInitialRun) {
// restartRuntime();
// }
}
if (outputPre) {
outputPre.textContent = output;
const iframeDocument =
iframe.contentDocument || iframe.contentWindow.document;
if (iframeDocument) {
iframeDocument.open();
iframeDocument.write(output);
iframeDocument.close();
}
}
console.log = originalConsoleLog;
console.error = originalConsoleError;
return output;
};
executeButton.addEventListener('click', () => {
console.log('Button clicked!');
runSalam();
});
codeTextArea.addEventListener('keydown', (e) => {
if (e.key === 'Tab') {
e.preventDefault();
const start = codeTextArea.selectionStart;
const end = codeTextArea.selectionEnd;
codeTextArea.value =
codeTextArea.value.substring(0, start) +
' ' +
codeTextArea.value.substring(end);
codeTextArea.selectionStart = codeTextArea.selectionEnd = start + 4;
}
});
reloadModule();
</script>
</body>
</html>