Skip to content

Commit edbfc6f

Browse files
committed
⬆️ Client
g3w-client and editing plugin - branch esbuild
1 parent fc9fffb commit edbfc6f

File tree

9 files changed

+2531
-876
lines changed

9 files changed

+2531
-876
lines changed

g3w-admin/client/static/client/app.min.css

Lines changed: 31 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

g3w-admin/client/static/client/app.min.css.map

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

g3w-admin/client/static/client/app.min.js

Lines changed: 1699 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

g3w-admin/client/static/client/app.min.js.map

Lines changed: 7 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

g3w-admin/client/static/client/vendor.min.js

Lines changed: 673 additions & 863 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

g3w-admin/client/static/client/vendor.min.js.map

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

g3w-admin/client/templates/client/index.html

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,28 @@
44
<!DOCTYPE html>
55
<html>
66
<head>
7-
<meta charset="utf-8">
8-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
9-
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no" name="viewport">
7+
<meta charset="UTF-8">
8+
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
109
<title>{{ page_title }}</title>
1110
<link rel="icon" href="{% if SETTINGS.G3WSUITE_CUSTOM_STATIC_URL and SETTINGS.G3WSUITE_FAVICON %}{{ SETTINGS.G3WSUITE_FAVICON }}{% else %}{% static '/img/favicon.ico' %}{% endif %}">
1211
<link rel="stylesheet" href="{% with client_default|add:"/app.min.css" as app_css %}{% static app_css %}{% endwith %}">
1312
{% if SETTINGS.G3WSUITE_CUSTOM_STATIC_URL %}{% for css in SETTINGS.G3WSUITE_CUSTOM_CSS %}
14-
<link rel="stylesheet" type="text/css" href="{{ css }}" />
13+
<link rel="stylesheet" href="{{ css }}" />
1514
{% endfor %}{% endif %}
15+
<style>
16+
@keyframes sk-bounce { 0%, 100% { transform: scale(0.0); } 50% { transform: scale(1.0); } }
17+
#startingspinner { position: fixed; z-index: 100000; height: 10em; width: 10em; overflow: show; margin: auto; inset: 0; }
18+
#startingspinner .double-bounce1,
19+
#startingspinner .double-bounce2 { width: 100%; height: 100%; border-radius: 50%; background-color: var(--skin-color); opacity: .6; position: absolute; top: 0; left: 0; animation: sk-bounce 2.0s infinite ease-in-out; }
20+
#startingspinner .double-bounce2 { animation-delay: -1.0s; }
21+
</style>
1622
</head>
1723
<body class="{% if sidebar_collapse %} sidebar-collapse {% endif %}">
1824
{% if SETTINGS.SENTRY_JS %}
1925
{{ SETTINGS.SENTRY_JS | safe }}
2026
{% endif %}
2127
<app id="app"></app>
28+
<div id="startingspinner"><div class="double-bounce1"></div><div class="double-bounce2"></div></div>
2229
<script>{{ group_config | safe }}</script>
2330

2431
<script src="{% with client_default|add:"/vendor.min.js" as vendor_js %}{% static vendor_js %}{% endwith %}"></script>

g3w-admin/editing/static/editing/js/plugin.js

Lines changed: 92 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

g3w-admin/editing/static/editing/js/plugin.js.map

Lines changed: 7 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)