mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-19 09:45:28 +01:00
8cd2d59230
websocket.html is just a blank page with the newest javascript helpers threading working wonderfully! Except my own code. websocket.html and thte bit from panel_handler.py can be deleted once this is done. It was just because the css and js kept loading for super long
192 lines
6.4 KiB
HTML
192 lines
6.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
{% block meta %}{% end %}
|
|
<title>{% block title %}{{ _('Default') }}{% end %}</title>
|
|
|
|
<!-- plugins:css -->
|
|
<link rel="stylesheet" href="/static/assets/vendors/mdi/css/materialdesignicons.min.css">
|
|
<link rel="stylesheet" href="/static/assets/vendors/flag-icon-css/css/flag-icon.min.css">
|
|
<link rel="stylesheet" href="/static/assets/vendors/ti-icons/css/themify-icons.css">
|
|
<link rel="stylesheet" href="/static/assets/vendors/typicons/typicons.css">
|
|
<link rel="stylesheet" href="/static/assets/vendors/fontawesome5/css/all.css">
|
|
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/bs4/dt-1.10.22/fh-3.1.7/r-2.2.6/sc-2.0.3/sp-1.2.2/datatables.min.css"/>
|
|
<link rel="stylesheet" href="/static/assets/vendors/css/vendor.bundle.base.css">
|
|
<link rel="stylesheet" href="/static/assets/css/crafty.css">
|
|
|
|
<!-- endinject -->
|
|
|
|
<!-- Plugin css for this page -->
|
|
<link rel="stylesheet" href="/static/assets/vendors/jvectormap/jquery-jvectormap.css">
|
|
<!-- End Plugin css for this page -->
|
|
|
|
<!-- Layout styles -->
|
|
<link rel="stylesheet" href="/static/assets/css/dark/style.css">
|
|
<!-- End Layout styles -->
|
|
|
|
<link rel="shortcut icon" href="/static/assets/images/favicon.png" />
|
|
<link rel="stylesheet" href="/static/assets/css/crafty.css">
|
|
</head>
|
|
|
|
<body class="dark-theme">
|
|
<div class="container-scroller">
|
|
<!-- partial:partials/_navbar.html -->
|
|
<nav class="navbar default-layout col-lg-12 col-12 p-0 fixed-top d-flex flex-row">
|
|
<div class="text-center navbar-brand-wrapper d-flex align-items-top justify-content-center">
|
|
<a class="navbar-brand brand-logo" href="/panel/dashboard">
|
|
<img src="/static/assets/images/logo_long.jpg" alt="logo" /> </a>
|
|
<a class="navbar-brand brand-logo-mini" href="/panel/dashboard">
|
|
<img src="/static/assets/images/logo_square.jpg" alt="logo" /> </a>
|
|
</div>
|
|
<div class="navbar-menu-wrapper d-flex align-items-center">
|
|
<button class="navbar-toggler navbar-toggler align-self-center" type="button" data-toggle="minimize">
|
|
<span class="mdi mdi-menu"></span>
|
|
</button>
|
|
|
|
{% include notify.html %}
|
|
|
|
<button class="navbar-toggler navbar-toggler-right d-lg-none align-self-center" type="button" data-toggle="offcanvas">
|
|
<span class="mdi mdi-menu"></span>
|
|
</button>
|
|
</div>
|
|
</nav>
|
|
|
|
{% include main_menu.html %}
|
|
|
|
<div class="main-panel">
|
|
|
|
<div class="warnings"></div>
|
|
|
|
{% block content %}
|
|
{% end %}
|
|
|
|
{% include footer.html %}
|
|
|
|
</div>
|
|
<!-- main-panel ends -->
|
|
|
|
</div>
|
|
<!-- page-body-wrapper ends -->
|
|
</div>
|
|
|
|
|
|
<script src="/static/assets/vendors/js/vendor.bundle.base.js"></script>
|
|
<script src="/static/assets/js/shared/off-canvas.js"></script>
|
|
<script src="/static/assets/js/shared/hoverable-collapse.js"></script>
|
|
<script src="/static/assets/js/shared/misc.js"></script>
|
|
<script type="text/javascript" src="https://cdn.datatables.net/v/bs4/dt-1.10.22/fh-3.1.7/r-2.2.6/sc-2.0.3/sp-1.2.2/datatables.min.js"></script>
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/bootbox.js/5.4.0/bootbox.min.js"></script>
|
|
|
|
<script>
|
|
//used to get cookies from browser - this is part of tornados xsrf protection - it's for extra security
|
|
function getCookie(name) {
|
|
var r = document.cookie.match("\\b" + name + "=([^;]*)\\b");
|
|
return r ? r[1] : undefined;
|
|
}
|
|
|
|
<!-- tool tips -->
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
})
|
|
|
|
<!-- Notify-->
|
|
$(document).ready(function(){
|
|
$("#notificationDropdown").click(function(){
|
|
$.get("/ajax/announcements", function(data){
|
|
console.log(data);
|
|
bootbox.alert({
|
|
title: "Notifications",
|
|
message: data,
|
|
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
{% if request.protocol == 'https'%}
|
|
let usingWebSockets = true;
|
|
|
|
let socketTypes = [];
|
|
|
|
try {
|
|
|
|
var wsInternal = new WebSocket('wss://' + location.host + '/ws');
|
|
wsInternal.onopen = function() {
|
|
console.log('opened WebSocket connection:', wsInternal)
|
|
};
|
|
wsInternal.onmessage = function (event) {
|
|
var message = JSON.parse(event.data);
|
|
|
|
console.log('got message: ', message)
|
|
|
|
socketTypes
|
|
.filter(event => event.type == message.type)
|
|
.forEach(event => event.callback(message.data))
|
|
}
|
|
|
|
|
|
webSocket = {
|
|
on: function (type, callback) {
|
|
socketTypes.push({ type: type, callback: callback })
|
|
},
|
|
emit: function (type, data) {
|
|
var message = {
|
|
type: type,
|
|
data: data
|
|
}
|
|
|
|
wsInternal.send(JSON.stringify(message));
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.error('Error while making websocket helpers', error);
|
|
usingWebSockets = false;
|
|
}
|
|
{% else %}
|
|
let usingWebSockets = false;
|
|
warn('WebSockets are not supported in Crafty if not using the https protocol')
|
|
{% end%}
|
|
|
|
function warn(message) {
|
|
var closeEl = document.createElement('span');
|
|
var strongEL = document.createElement('strong');
|
|
var msgEl = document.createElement('div');
|
|
|
|
closeEl.innerHTML = '×';
|
|
strongEL.textContent = 'Warning: ';
|
|
msgEl.append(strongEL, message);
|
|
|
|
|
|
closeEl.style.marginLeft = '15px';
|
|
closeEl.style.fontWeight = 'bold';
|
|
closeEl.style.float = 'right';
|
|
closeEl.style.fontSize = '22px';
|
|
closeEl.style.lineHeight = '20px';
|
|
closeEl.style.cursor = 'pointer';
|
|
closeEl.style.transition = '.3s';
|
|
|
|
closeEl.addEventListener('click', function () {this.parentElement.style.display='none';});
|
|
|
|
var parentEl = document.createElement('div');
|
|
|
|
parentEl.style.padding = '20px';
|
|
parentEl.style.backgroundColor = '#f7970f';
|
|
|
|
parentEl.appendChild(closeEl);
|
|
parentEl.appendChild(msgEl);
|
|
|
|
document.querySelector('.warnings').appendChild(parentEl);
|
|
}
|
|
|
|
</script>
|
|
|
|
{% block js %}
|
|
<!-- Custom js for this page -->
|
|
<!-- End custom js for this page -->
|
|
{% end %}
|
|
|
|
</body>
|
|
</html> |