-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-liquild-online-pro.html
236 lines (193 loc) · 7.47 KB
/
run-liquild-online-pro.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- Favicon Icon -->
<link rel="shortcut icon" type="image/x-icon"
href="//cdn.jsdelivr.net/gh/yanglr/yanglr.github.io/assets/images/favicon.ico">
<title>Run liquid now pro</title>
<script src='//cdn.jsdelivr.net/gh/yanglr/RunLiquidOnline/src/js/codemirror.js'></script>
<!-- Recommend in the beginning compared to other assets! -->
<link href='//cdn.jsdelivr.net/gh/yanglr/RunLiquidOnline/src/css/codemirror.css' rel='stylesheet'>
<!-- <link href='https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.16.0/codemirror.css' rel='stylesheet'> -->
<!-- The link above loaded the core css -->
<script src="//cdn.jsdelivr.net/gh/yanglr/RunLiquidOnline/src/js/jquery-3.3.1.min.js"></script>
<script src='//cdn.jsdelivr.net/gh/yanglr/RunLiquidOnline/src/js/liquid.js'></script>
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/yanglr/RunLiquidOnline/src/css/liquid.css">
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/liquid.min.js"></script> -->
<script src="//cdn.jsdelivr.net/gh/yanglr/RunLiquidOnline/src/js/liquid.min.js"></script>
<style>
.button {
display: inline-block;
position: relative;
cursor: pointer;
outline: none;
white-space: nowrap;
margin: 5px;
padding: 0 22px;
font-size: 14px;
height: 40px;
line-height: 40px;
background-color: #2658FA;
color: #fff;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
border: none;
text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
text-decoration: none !important;
}
</style>
</head>
<body>
<h1 class="nobottommargin">Liquid Sandbox</h1>
<div style="position: relative; padding: 40px;">
<p>Liquid is a markup language used in many web apps like Jekyll, Hexo next, Shopify, Microsoft Power Apps ect. for their
templates.</p>
<p>You can test your Liquid code here. This sandbox only loads the default Liquid methods.</p>
<p>Write your code below and click on <font color="blue">Run code</font> to run. You will see the result below.</p>
<!-- {% assign myvar = "bravo" %} {{ myvar | upcase }} -->
<select id="header-values" multiple="headervalues" style="width:200px; height: 160px; padding-bottom: 20px;"
name="headervalues">
<option selected="">if</option>
<option>for</option>
<option>unless</option>
<option>size</option>
<option>case</option>
<option>comment</option>
<option>contains</option>
<option>sort</option>
</select>
<br>
<!-- <textarea id="headervalues-log" class="log"></textarea> -->
<div>
<textarea id="editor" class="editorContainer cm-liquid" name="cm-liquid" style="display: block;">{% assign title = 'shoes' %}
{% if title == 'shoes' %}
These shoes are awesome!
{% endif %}</textarea>
</div>
<!-- <div class="CodeMirror editorContainer cm-liquid" id="cm-liquid" name="cm-liquid">
</div> -->
<p><a href="" class="button" id="get_result">Run Code</a></p>
<p><span id="loading" style="display: none;"></span>
<textarea cols="92" rows="12" id="set_result" style="display: none;"> </textarea>
</p>
<div id="result"></div>
</div>
<script lang="javascript">
(function ($) {
$(document).ready(function () {
if ($('#editor').length > 0) {
var editor = CodeMirror.fromTextArea(document.getElementById('editor'), {
lineNumbers: true,
mode: 'liquid',
lineNumbers: !0,
indentWithTabs: !0,
tabSize: 2,
foldGutter: !0
});
var result = document.getElementById('set_result');
var button = document.getElementById('get_result');
//var loading = document.getElementById('loading');
var engine = new Liquid;
button.onclick = getResult;
var selOption;
var stringToExecute;
$("#header-values").change(function () {
selOption = $(this).find(":selected").text();
if (selOption != undefined) {
switch (selOption) {
case 'if':
stringToExecute = `{% assign title = 'shoes' %}
{% if title == 'shoes' %}
These shoes are awesome!
{% endif %}`;
break;
case 'for':
stringToExecute = `{% for i in (1..5) %}
{% if i == 4 %}
{% break %}
{% else %}
{{ i }}
{% endif %}
{% endfor %}`;
break;
case 'unless':
stringToExecute = `{% assign title = 'toys' %}
{% unless title == 'shoes' %}
These shoes are not awesome.
{% endunless %}`;
break;
case 'case':
stringToExecute = `{% assign handle = 'cake' %}
{% case handle %}
{% when 'cake' %}
This is a cake
{% when 'cookie' %}
This is a cookie
{% else %}
This is not a cake nor a cookie
{% endcase %}`;
break;
case 'comment':
stringToExecute = `We made 1 million dollars {% comment %} in losses {% endcomment %} this year`;
break;
case 'contains':
stringToExecute = `{% assign title = 'toys' %}
{% if title contains 'toy' %}
This product’s title contains the word toy.
{% endif %}`;
break;
case 'sort':
stringToExecute = `{% assign productsArray = "zebra, Octopus, giraffe, Sally Snake" | split: ", " %}
{{ productsArray | sort | join: ", " }}`;
break;
case 'size':
stringToExecute = "{{ 'The quick brown fox jumps over a lazy dog.' | size }}";
break;
default:
stringToExecute = "{% assign myvar = 'bravo' %} {{ myvar | upcase }}";
break;
}
// console.log(stringToExecute);
if (stringToExecute != undefined)
updateTextArea(stringToExecute);
};
});
function getResult(e) {
e.preventDefault();
loading.style.display = "block";
engine.parseAndRender(editor.getValue()).then(function (data) {
// result.value = $.trim(data);
result.value = $.trim(data.replace(/\s/g, ' '));
loading.style.display = "none";
result.style.display = "block";
}).catch(function (err) {
result.value = "Error in liquid syntax! \nError: " + err;
loading.style.display = "none";
result.style.display = "block"
})
return !1
}
function updateTextArea(stringToExecute) {
// editor.save();
document.querySelectorAll(".cm-s-default").forEach(e => e.remove());
editor = CodeMirror.fromTextArea(document.getElementById('editor'), {
lineNumbers: true,
mode: 'liquid',
lineNumbers: !0,
indentWithTabs: !0,
tabSize: 2,
foldGutter: !0
});
editor.getDoc().setValue(stringToExecute);
}
editor.on('change', updateTextArea);
}
})
}(jQuery))
</script>
</body>
</html>