perf: celery task log css optimize

pull/13210/head
wangruidong 2024-05-10 19:23:51 +08:00 committed by Bryan
parent 8fe511cec6
commit e42a98ff95
1 changed files with 65 additions and 43 deletions

View File

@ -5,13 +5,13 @@
<script src="{% static 'js/jquery-3.6.1.min.js' %}"></script> <script src="{% static 'js/jquery-3.6.1.min.js' %}"></script>
<script src="{% static 'js/plugins/xterm/xterm.js' %}"></script> <script src="{% static 'js/plugins/xterm/xterm.js' %}"></script>
<script src="{% static 'js/plugins/xterm/addons/fit/fit.js' %}"></script> <script src="{% static 'js/plugins/xterm/addons/fit/fit.js' %}"></script>
<link rel="stylesheet" href="{% static 'js/plugins/xterm/xterm.css' %}" /> <link rel="stylesheet" href="{% static 'js/plugins/xterm/xterm.css' %}"/>
<link rel="shortcut icon" href="{{ INTERFACE.favicon }}" type="image/x-icon"> <link rel="shortcut icon" href="{{ INTERFACE.favicon }}" type="image/x-icon">
<script src="{% url 'javascript-catalog' %}"></script> <script src="{% url 'javascript-catalog' %}"></script>
<script src="{% static "js/jumpserver.js" %}?_=9"></script> <script src="{% static "js/jumpserver.js" %}?_=9"></script>
<style> <style>
body { body {
background-color: black; overflow: hidden;
margin: 0; margin: 0;
} }
@ -20,65 +20,86 @@
font-size: 13px; font-size: 13px;
} }
.container {
height: 100%;
display: flex;
flex-direction: column;
}
.terminal .xterm-viewport { .terminal .xterm-viewport {
background-color: #1f1b1b; background-color: #1f1b1b;
overflow: auto; overflow: hidden;
} }
body ::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
background-color: #272323;
border-radius: 6px;
}
body ::-webkit-scrollbar {
width: 8px;
height: 8px;
}
body ::-webkit-scrollbar-thumb {
background-color: #494141;
border-radius: 6px;
}
#term { #term {
flex-grow: 1;
background-color: black;
margin: 12px;
padding: 0 8px; padding: 0 8px;
border-radius: 4px 0 0 0;
} }
.info { .info {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
width: 100%;
padding: 6px 8px 6px 24px; padding: 6px 8px 6px 24px;
margin: 0; margin: 0;
background-color: #F3F3F5;
} }
.task-type {
font-size: 16px;
font-weight: 500;
line-height: 24px;
text-align: left;
color: #1F2329;
padding-bottom: 8px;
}
.info .item { .info .item {
flex: auto; flex: auto;
list-style-type: square;
font-size: 14px; font-size: 14px;
color: #585757; list-style: none;
} }
.info .item .label {
font-weight: 400;
line-height: 22px;
font-size: 14px;
text-align: left;
color: #646A73;
padding-bottom: 12px;
}
.info .item .value { .info .item .value {
color: black; font-size: 14px;
font-weight: 400;
line-height: 22px;
text-align: left;
color: #1F2329;
} }
</style> </style>
</head> </head>
<ul class="info"> <div class="container">
<li class="item"> <div class="header">
<span>ID:</span> <ul class="info">
<span class="value task-id"></span> <li class="item">
</li> <span class="task-type"></span>
<li class="item"> </li>
<span>{% trans 'Task name' %}:</span> </ul>
<span class="value task-type"></span> <ul class="info">
</li> <li class="item">
<li class="item"> <span class="label">ID:</span>
<span>{% trans 'Date start' %}:</span> <span class="value task-id"></span>
<span class="value date-start"></span> </li>
</li> <li class="item">
</ul> <span class="label">{% trans 'Date start' %}:</span>
<div id="term" style="height: 100%;width: 100%"> <span class="value date-start"></span>
</li>
</ul>
</div>
<div id="term">
</div>
</div> </div>
<script> <script>
var scheme = document.location.protocol === "https:" ? "wss" : "ws"; var scheme = document.location.protocol === "https:" ? "wss" : "ws";
var port = document.location.port ? ":" + document.location.port : ""; var port = document.location.port ? ":" + document.location.port : "";
@ -105,17 +126,17 @@
window.fit.fit(term); window.fit.fit(term);
ws = new WebSocket(wsURL); ws = new WebSocket(wsURL);
ws.onmessage = function(e) { ws.onmessage = function (e) {
var data = JSON.parse(e.data); var data = JSON.parse(e.data);
term.write(data.message); term.write(data.message);
}; };
ws.onopen = function() { ws.onopen = function () {
var msg = {"task": taskId}; var msg = {"task": taskId};
ws.send(JSON.stringify(msg)) ws.send(JSON.stringify(msg))
}; };
ws.onerror = function (e) { ws.onerror = function (e) {
ws = new WebSocket(failOverWsURL); ws = new WebSocket(failOverWsURL);
ws.onmessage = function(e) { ws.onmessage = function (e) {
var data = JSON.parse(e.data); var data = JSON.parse(e.data);
term.write(data.message); term.write(data.message);
}; };
@ -127,8 +148,9 @@
}).on('resize', window, function () { }).on('resize', window, function () {
window.fit.fit(term); window.fit.fit(term);
}); });
function getAutomationExecutionInfo() { function getAutomationExecutionInfo() {
let url = "{% url 'api-ops:task-executions-detail' pk=task_id %}"; let url = "{% url 'api-ops:task-executions-detail' pk=task_id %}";
requestApi({ requestApi({
url: url, url: url,