-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·390 lines (351 loc) · 22 KB
/
index.html
File metadata and controls
executable file
·390 lines (351 loc) · 22 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-15440552-7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-15440552-7');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- SEO Meta Tags -->
<meta name="description" content="LWC SOQL Builder is Awesome SOQL execution tool developed in Lightning Web Components Open Source.">
<meta name="author" content="Atsuhiko Kimura">
<!-- OG Meta Tags to improve the way the post looks when you share the page on LinkedIn, Facebook, Google+ -->
<meta property="og:site_name" content="LWC SOQL Builder" /> <!-- website name -->
<meta property="og:site" content="https://lwc-soql-builder.github.io/" /> <!-- website link -->
<meta property="og:title" content="LWC SOQL Builder"/> <!-- title shown in the actual shared post -->
<meta property="og:description" content="Awesome SOQL execution tool developed in Lightning Web Components Open Source" /> <!-- description shown in the actual shared post -->
<meta property="og:image" content="https://lwc-soql-builder.github.io/images/ogp.png" /> <!-- image link, make sure it's jpg -->
<meta property="og:url" content="https://lwc-soql-builder.github.io/" /> <!-- where do you want your post to link to -->
<meta property="og:type" content="website" />
<!-- Website Title -->
<title>LWC SOQL Builder</title>
<!-- Styles -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700&display=swap&subset=latin-ext" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/fontawesome-all.css" rel="stylesheet">
<link href="css/swiper.css" rel="stylesheet">
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" href="images/favicon.ico">
</head>
<body data-spy="scroll" data-target=".fixed-top">
<!-- Preloader -->
<div class="spinner-wrapper">
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
<!-- end of preloader -->
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark navbar-custom fixed-top">
<div class="container">
<!-- Text Logo - Use this if you don't have a graphic logo -->
<!-- <a class="navbar-brand logo-text page-scroll" href="index.html">Tivo</a> -->
<!-- Image Logo -->
<a class="navbar-brand logo-image" href="/"><img src="images/logo_white.svg" alt="alternative"></a>
<!-- Mobile Menu Toggle Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-awesome fas fa-bars"></span>
<span class="navbar-toggler-awesome fas fa-times"></span>
</button>
<!-- end of mobile menu toggle button -->
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link page-scroll" href="#header">HOME <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#features">FEATURES</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.ja.html">日本語</a>
</li>
</ul>
<span class="nav-item">
<a class="btn-outline-sm" href="/lwc-soql-builder/">GET STARTED</a>
</span>
</div>
</div> <!-- end of container -->
</nav> <!-- end of navbar -->
<!-- end of navigation -->
<!-- Github Corners-->
<a href="https://github.com/lwc-soql-builder/lwc-soql-builder" class="github-corner" aria-label="View source on GitHub" target="_blank"><svg width="70" height="70" viewBox="0 0 250 250" style="fill:#fff; color:#16325c; position: fixed; top: 0; border: 0; right: 0; z-index:1100;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style>
<!-- end of Github Corners-->
<!-- Header -->
<header id="header" class="header">
<div class="header-content">
<div class="container">
<div class="row">
<div class="col-lg-6 col-xl-5">
<div class="text-container">
<h1>LWC <br>SOQL Builder</h1>
<p class="p-large">Awesome SOQL execution tool developed in Lightning Web Components Open Source</p>
<a class="btn-solid-lg page-scroll" href="/lwc-soql-builder/">GET STARTED</a>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-6 col-xl-7">
<div class="image-container">
<div class="img-wrapper">
<a class="popup-with-move-anim" href="#header-lightbox">
<img class="img-fluid" src="images/lwc-soql-builder-animation.gif" alt="alternative">
</a>
</div> <!-- end of img-wrapper -->
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of header-content -->
</header> <!-- end of header -->
<svg class="header-frame" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1920 310"><defs><style>.cls-1{fill:#16325c;}</style></defs><title>header-frame</title><path class="cls-1" d="M0,283.054c22.75,12.98,53.1,15.2,70.635,14.808,92.115-2.077,238.3-79.9,354.895-79.938,59.97-.019,106.17,18.059,141.58,34,47.778,21.511,47.778,21.511,90,38.938,28.418,11.731,85.344,26.169,152.992,17.971,68.127-8.255,115.933-34.963,166.492-67.393,37.467-24.032,148.6-112.008,171.753-127.963,27.951-19.26,87.771-81.155,180.71-89.341,72.016-6.343,105.479,12.388,157.434,35.467,69.73,30.976,168.93,92.28,256.514,89.405,100.992-3.315,140.276-41.7,177-64.9V0.24H0V283.054Z"/></svg>
<!-- end of header -->
<!-- Header Lightbox -->
<div id="header-lightbox" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="container">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-12">
<div class="image-container">
<img class="img-fluid" src="images/lwc-soql-builder-animation.gif" alt="alternative">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of lightbox-basic -->
<!-- end of header lightbox -->
<!-- Details -->
<div id="features" class="basic-1">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="above-heading">FEATURES</div>
<h2 class="h2-heading">Awesome SOQL Builder</h2>
<p class="p-heading">LWC SOQL Builder is a SOQL execution tool developed in LWC Open Source. LWC SOQL Builder makes building and running SOQL in Salesforce incredibly easy.</p>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-6">
<div class="image-container">
<a class="popup-with-move-anim" href="#feature-lightbox-1">
<img class="img-fluid" src="images/point-and-click.gif" alt="alternative">
</a>
</div> <!-- end of image-container -->
<div class="text-container">
<h4>Point and Click User Interface</h4>
<p>A point and click user interface enables you to add SOQL boilerplate, fields, parent relationships, subquery and run a query.</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-6">
<div class="image-container">
<a class="popup-with-move-anim" href="#feature-lightbox-2">
<img class="img-fluid" src="images/autocomplete.gif" alt="alternative">
</a>
</div> <!-- end of image-container -->
<div class="text-container">
<h4>Autocomplete</h4>
<p>Autocomplete is a feature that make you to complete field name. You can search by field label as well as by field name.</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of basic-1 -->
<!-- end of details -->
<!-- Details -->
<div class="basic-1 colored">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="image-container">
<a class="popup-with-move-anim" href="#feature-lightbox-3">
<img class="img-fluid" src="images/pwa.gif" alt="alternative">
</a>
</div> <!-- end of image-container -->
<div class="text-container">
<h4>PWA Support</h4>
<p>LWC SOQL Builder can be installed as Progressive Web App (PWA). You can install it like a normal desktop app.</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-6">
<div class="image-container">
<a class="popup-with-move-anim" href="#feature-lightbox-4">
<img class="img-fluid" src="images/format-soql.gif" alt="alternative">
</a>
</div> <!-- end of image-container -->
<div class="text-container">
<h4>Format SOQL</h4>
<p>LWC SOQL Builder allows you to instantly beautify your SOQL queries. Formatted SOQL is very easy to use in Apex code.</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of basic-1 -->
<!-- end of details -->
<!-- Details -->
<div class="basic-1">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="image-container">
<a class="popup-with-move-anim" href="#feature-lightbox-5">
<img class="img-fluid" src="images/csv-export.png" alt="alternative">
</a>
</div> <!-- end of image-container -->
<div class="text-container">
<h4>CSV Export</h4>
<p>You can export the query result to a CSV file. The CSV file can be upserted to Salesforce using Data Loader.</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-6">
<div class="image-container">
<a class="popup-with-move-anim" href="#feature-lightbox-6">
<img class="img-fluid" src="images/ignore-namespace.png" alt="alternative">
</a>
</div> <!-- end of image-container -->
<div class="text-container">
<h4>Support for ignoring default namespace</h4>
<p>You can run a SOQL without the namespace prefix of a managed package. So, you can copy and paste the SOQL into your Apex code as-is.</p>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of basic-1 -->
<!-- end of details -->
<!-- Feature Lightbox 1 -->
<div id="feature-lightbox-1" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="container">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-12">
<div class="text-container">
<h4>Point and Click User Interface</h4>
<p>A point and click user interface enables you to add SOQL boilerplate, fields, parent relationships, subquery and run a query.</p>
</div> <!-- end of text-container -->
<div class="image-container">
<img class="img-fluid" src="images/point-and-click.gif" alt="alternative">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of lightbox-basic -->
<!-- end of feature lightbox 1 -->
<!-- Feature Lightbox 2 -->
<div id="feature-lightbox-2" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="container">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-12">
<div class="text-container">
<h4>Autocomplete</h4>
<p>Autocomplete is a feature that make you to complete field name. You can search by field label as well as by field name.</p>
</div> <!-- end of text-container -->
<div class="image-container">
<img class="img-fluid" src="images/autocomplete.gif" alt="alternative">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of lightbox-basic -->
<!-- end of feature lightbox 2 -->
<!-- Feature Lightbox 3 -->
<div id="feature-lightbox-3" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="container">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-12">
<div class="text-container">
<h4>PWA Support</h4>
<p>LWC SOQL Builder can be installed as Progressive Web App (PWA). You can install it like a normal desktop app.</p>
</div> <!-- end of text-container -->
<div class="image-container">
<img class="img-fluid" src="images/pwa.gif" alt="alternative">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of lightbox-basic -->
<!-- end of feature lightbox 3 -->
<!-- Feature Lightbox 4 -->
<div id="feature-lightbox-4" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="container">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-12">
<div class="text-container">
<h4>Format SOQL</h4>
<p>LWC SOQL Builder allows you to instantly beautify your SOQL queries. Formatted SOQL is very easy to use in Apex code.</p>
</div> <!-- end of text-container -->
<div class="image-container">
<img class="img-fluid" src="images/format-soql.gif" alt="alternative">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of lightbox-basic -->
<!-- end of feature lightbox 4 -->
<!-- Feature Lightbox 5 -->
<div id="feature-lightbox-5" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="container">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-12">
<div class="text-container">
<h4>CSV Export</h4>
<p>You can export the query result to a CSV file. The CSV file can be upserted to Salesforce using Data Loader.</p>
</div> <!-- end of text-container -->
<div class="image-container">
<img class="img-fluid" src="images/csv-export.png" alt="alternative">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of lightbox-basic -->
<!-- end of feature lightbox 5 -->
<!-- Feature Lightbox 6 -->
<div id="feature-lightbox-6" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="container">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-12">
<div class="text-container">
<h4>Support for ignoring default namespace</h4>
<p>You can run a SOQL without the namespace prefix of a managed package. So, you can copy and paste the SOQL into your Apex code as-is.</p>
</div> <!-- end of text-container -->
<div class="image-container">
<img class="img-fluid" src="images/ignore-namespace.png" alt="alternative">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of lightbox-basic -->
<!-- end of feature lightbox 6 -->
<!-- Copyright -->
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-lg-12">
<p class="p-small">Copyright © 2020 Atsuhiko Kimura<br>
Source code licensed under <a href="https://github.com/lwc-soql-builder/lwc-soql-builder/blob/master/LICENSE" target="_blank">MIT License</a>,
documentation under <a href="http://creativecommons.org/licenses/by/3.0/" target="_blank">CC BY 3.0</a>.</p>
</div> <!-- end of col -->
</div> <!-- enf of row -->
</div> <!-- end of container -->
</div> <!-- end of copyright -->
<!-- end of copyright -->
<!-- Scripts -->
<script src="js/jquery.min.js"></script> <!-- jQuery for Bootstrap's JavaScript plugins -->
<script src="js/popper.min.js"></script> <!-- Popper tooltip library for Bootstrap -->
<script src="js/bootstrap.min.js"></script> <!-- Bootstrap framework -->
<script src="js/jquery.easing.min.js"></script> <!-- jQuery Easing for smooth scrolling between anchors -->
<script src="js/swiper.min.js"></script> <!-- Swiper for image and text sliders -->
<script src="js/jquery.magnific-popup.js"></script> <!-- Magnific Popup for lightboxes -->
<script src="js/validator.min.js"></script> <!-- Validator.js - Bootstrap plugin that validates forms -->
<script src="js/scripts.js"></script> <!-- Custom scripts -->
</body>
</html>