|
|
|
@ -1,52 +1,58 @@
|
|
|
|
|
<script>
|
|
|
|
|
import logo from './assets/images/logo-universal.png'
|
|
|
|
|
import {GetStatus, Weed, GetProjects} from '../wailsjs/go/main/App.js'
|
|
|
|
|
import {StartServer} from '../wailsjs/go/main/App.js'
|
|
|
|
|
import TailwindCss from './TailwindCSS.svelte';
|
|
|
|
|
import servers from './servers.js';
|
|
|
|
|
// import {BrowserOpenURL} from '../wailsjs/runtime/runtime.js'
|
|
|
|
|
|
|
|
|
|
let resultText = "Ваше имя 👇"
|
|
|
|
|
let local = servers;
|
|
|
|
|
let cnt_pic = "0";
|
|
|
|
|
|
|
|
|
|
function start_server(server) {
|
|
|
|
|
let s = JSON.stringify(server)
|
|
|
|
|
console.log(s)
|
|
|
|
|
StartServer(s).then(result => {
|
|
|
|
|
resultText = result
|
|
|
|
|
console.log(resultText)
|
|
|
|
|
server.run = "running"
|
|
|
|
|
local = local;
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function weed() {
|
|
|
|
|
// console.log("weed");
|
|
|
|
|
Weed().then(() => {
|
|
|
|
|
get_status()
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function get_status(){
|
|
|
|
|
console.log("запрос статуса")
|
|
|
|
|
GetStatus().then((result) => {
|
|
|
|
|
console.log("result:", result)
|
|
|
|
|
cnt_pic = result;
|
|
|
|
|
// сразу сбросим признак работающего сервера
|
|
|
|
|
local = local.map ( server => {
|
|
|
|
|
server.run = "idle"
|
|
|
|
|
return server
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
console.log("запрос проектов")
|
|
|
|
|
GetProjects().then((result) => {
|
|
|
|
|
console.log("projects:", result)
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get_status()
|
|
|
|
|
import logo from "./assets/images/logo-universal.png";
|
|
|
|
|
import { GetStatus, Weed, GetProjects, StartFar } from "../wailsjs/go/main/App.js";
|
|
|
|
|
import { StartServer } from "../wailsjs/go/main/App.js";
|
|
|
|
|
import TailwindCss from "./TailwindCSS.svelte";
|
|
|
|
|
import servers from "./servers.js";
|
|
|
|
|
// import {BrowserOpenURL} from '../wailsjs/runtime/runtime.js'
|
|
|
|
|
|
|
|
|
|
let resultText = "Ваше имя 👇";
|
|
|
|
|
let local = servers;
|
|
|
|
|
let projects = [];
|
|
|
|
|
let cnt_pic = "0";
|
|
|
|
|
|
|
|
|
|
function start_far(project) {
|
|
|
|
|
StartFar(project.last_directory_path)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function start_server(server) {
|
|
|
|
|
let s = JSON.stringify(server);
|
|
|
|
|
console.log(s);
|
|
|
|
|
StartServer(s).then((result) => {
|
|
|
|
|
resultText = result;
|
|
|
|
|
console.log(resultText);
|
|
|
|
|
server.run = "running";
|
|
|
|
|
local = local;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function weed() {
|
|
|
|
|
// console.log("weed");
|
|
|
|
|
Weed().then(() => {
|
|
|
|
|
get_status();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function get_status() {
|
|
|
|
|
console.log("запрос статуса");
|
|
|
|
|
GetStatus().then((result) => {
|
|
|
|
|
console.log("result:", result);
|
|
|
|
|
cnt_pic = result;
|
|
|
|
|
// сразу сбросим признак работающего сервера
|
|
|
|
|
local = local.map((server) => {
|
|
|
|
|
server.run = "idle";
|
|
|
|
|
return server;
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
console.log("запрос проектов");
|
|
|
|
|
GetProjects().then((result) => {
|
|
|
|
|
console.log("projects:", result);
|
|
|
|
|
projects = result;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get_status();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<TailwindCss />
|
|
|
|
@ -69,53 +75,72 @@
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
{/each}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<hr class="mb-2 mx-4 text-slate-600"/>
|
|
|
|
|
|
|
|
|
|
<div class="container mx-auto pt-4 mb-8">
|
|
|
|
|
<h1 class="text-blue-200 text-2xl">УТИЛИТЫ</h1>
|
|
|
|
|
<div class="flex flex-col h-full justify-between">
|
|
|
|
|
<div class="h-24">
|
|
|
|
|
<div class="flex justify-between px-4">
|
|
|
|
|
<button
|
|
|
|
|
class="text-teal-600 hover:text-teal-200 hover:font-normal hover:underline hover:underline-offset-2 cursor-pointer"
|
|
|
|
|
on:click={weed}
|
|
|
|
|
>
|
|
|
|
|
Weed (python)
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<div class="text-neutral-300">
|
|
|
|
|
<span>
|
|
|
|
|
{cnt_pic}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<hr class="mb-2 mx-4 text-slate-600">
|
|
|
|
|
|
|
|
|
|
<div class="container mx-auto pt-4 mb-8">
|
|
|
|
|
<h1 class="text-blue-200 text-2xl">УТИЛИТЫ</h1>
|
|
|
|
|
<div class="flex flex-col h-full justify-between">
|
|
|
|
|
<div class="h-24">
|
|
|
|
|
<div class="flex justify-between px-4">
|
|
|
|
|
<button
|
|
|
|
|
class="text-teal-600 hover:text-teal-200 hover:font-normal hover:underline hover:underline-offset-2 cursor-pointer"
|
|
|
|
|
on:click={weed}
|
|
|
|
|
>
|
|
|
|
|
Weed (python)
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<div class="text-neutral-300">
|
|
|
|
|
<span>
|
|
|
|
|
{cnt_pic}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<hr class="mb-2 mx-4 text-slate-600"/>
|
|
|
|
|
|
|
|
|
|
<div class="container mx-auto pt-4 mb-8">
|
|
|
|
|
<h1 class="text-blue-200 text-2xl">ПРОЕКТЫ</h1>
|
|
|
|
|
{#each projects as project}
|
|
|
|
|
<div class="flex justify-between px-4">
|
|
|
|
|
<button
|
|
|
|
|
class="text-teal-600 hover:text-teal-200 hover:font-normal hover:underline hover:underline-offset-2 cursor-pointer"
|
|
|
|
|
on:click={ () => start_far(project) }
|
|
|
|
|
>
|
|
|
|
|
{project.last_directory}
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<div class="text-neutral-300">
|
|
|
|
|
<span> {project.name} </span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{/each}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- панель кнопок -->
|
|
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
on:click={get_status}
|
|
|
|
|
class="absolute right-4 bottom-4
|
|
|
|
|
bg-slate-700 hover:bg-slate-500
|
|
|
|
|
p-2 rounded-full">
|
|
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
width="36"
|
|
|
|
|
height="36"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
fill="none"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
stroke-width="3"
|
|
|
|
|
stroke-linecap="round"
|
|
|
|
|
stroke-linejoin="round"
|
|
|
|
|
class="feather feather-refresh-ccw cursor-pointer">
|
|
|
|
|
<polyline points="1 4 1 10 7 10"></polyline><polyline points="23 20 23 14 17 14"></polyline><path d="M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"></path>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- панель кнопок -->
|
|
|
|
|
<button
|
|
|
|
|
on:click={get_status}
|
|
|
|
|
class="absolute right-4 bottom-4
|
|
|
|
|
bg-slate-700 hover:bg-slate-500
|
|
|
|
|
p-2 rounded-full">
|
|
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
width="36"
|
|
|
|
|
height="36"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
fill="none"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
stroke-width="3"
|
|
|
|
|
stroke-linecap="round"
|
|
|
|
|
stroke-linejoin="round"
|
|
|
|
|
class="feather feather-refresh-ccw cursor-pointer">
|
|
|
|
|
<polyline points="1 4 1 10 7 10"></polyline><polyline points="23 20 23 14 17 14"></polyline><path d="M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"></path>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
</style>
|
|
|
|
|