Skip to content

Commit

Permalink
⬆️ Client
Browse files Browse the repository at this point in the history
  g3w-client and editing plugin - branch esbuild
  • Loading branch information
volterra79 committed Jan 17, 2025
1 parent fc9fffb commit edbfc6f
Show file tree
Hide file tree
Showing 9 changed files with 2,531 additions and 876 deletions.
32 changes: 31 additions & 1 deletion g3w-admin/client/static/client/app.min.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions g3w-admin/client/static/client/app.min.css.map

Large diffs are not rendered by default.

1,700 changes: 1,699 additions & 1 deletion g3w-admin/client/static/client/app.min.js

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion g3w-admin/client/static/client/app.min.js.map

Large diffs are not rendered by default.

1,536 changes: 673 additions & 863 deletions g3w-admin/client/static/client/vendor.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions g3w-admin/client/static/client/vendor.min.js.map

Large diffs are not rendered by default.

15 changes: 11 additions & 4 deletions g3w-admin/client/templates/client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,28 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no" name="viewport">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
<title>{{ page_title }}</title>
<link rel="icon" href="{% if SETTINGS.G3WSUITE_CUSTOM_STATIC_URL and SETTINGS.G3WSUITE_FAVICON %}{{ SETTINGS.G3WSUITE_FAVICON }}{% else %}{% static '/img/favicon.ico' %}{% endif %}">
<link rel="stylesheet" href="{% with client_default|add:"/app.min.css" as app_css %}{% static app_css %}{% endwith %}">
{% if SETTINGS.G3WSUITE_CUSTOM_STATIC_URL %}{% for css in SETTINGS.G3WSUITE_CUSTOM_CSS %}
<link rel="stylesheet" type="text/css" href="{{ css }}" />
<link rel="stylesheet" href="{{ css }}" />
{% endfor %}{% endif %}
<style>
@keyframes sk-bounce { 0%, 100% { transform: scale(0.0); } 50% { transform: scale(1.0); } }
#startingspinner { position: fixed; z-index: 100000; height: 10em; width: 10em; overflow: show; margin: auto; inset: 0; }
#startingspinner .double-bounce1,
#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; }
#startingspinner .double-bounce2 { animation-delay: -1.0s; }
</style>
</head>
<body class="{% if sidebar_collapse %} sidebar-collapse {% endif %}">
{% if SETTINGS.SENTRY_JS %}
{{ SETTINGS.SENTRY_JS | safe }}
{% endif %}
<app id="app"></app>
<div id="startingspinner"><div class="double-bounce1"></div><div class="double-bounce2"></div></div>
<script>{{ group_config | safe }}</script>

<script src="{% with client_default|add:"/vendor.min.js" as vendor_js %}{% static vendor_js %}{% endwith %}"></script>
Expand Down
93 changes: 92 additions & 1 deletion g3w-admin/editing/static/editing/js/plugin.js

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion g3w-admin/editing/static/editing/js/plugin.js.map

Large diffs are not rendered by default.

0 comments on commit edbfc6f

Please sign in to comment.