Compare commits

...

2 Commits

8
.idea/.gitignore vendored

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/server.iml" filepath="$PROJECT_DIR$/.idea/server.iml" />
</modules>
</component>
</project>

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="Go" enabled="true" />
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

@ -41,7 +41,7 @@
<TailwindCss /> <TailwindCss />
<div class="container mx-auto pt-4 mb-8"> <div class="container mx-auto pt-4 mb-4">
<h1 class="text-blue-200 text-2xl">СЕРВЕРА</h1> <h1 class="text-blue-200 text-2xl">СЕРВЕРА</h1>
{#each local as server} {#each local as server}
<div class="flex justify-between px-4"> <div class="flex justify-between px-4">
@ -65,21 +65,51 @@
<div class="container mx-auto pt-4 mb-8"> <div class="container mx-auto pt-4 mb-8">
<h1 class="text-blue-200 text-2xl">УТИЛИТЫ</h1> <h1 class="text-blue-200 text-2xl">УТИЛИТЫ</h1>
<div class="flex justify-between px-4"> <div class="flex flex-col h-full justify-between">
<button <div class="h-24">
class="text-teal-600 hover:text-teal-200 hover:font-normal hover:underline hover:underline-offset-2 cursor-pointer" <div class="flex justify-between px-4">
on:click={weed} <button
> class="text-teal-600 hover:text-teal-200 hover:font-normal hover:underline hover:underline-offset-2 cursor-pointer"
Загрузка в weed on:click={weed}
</button> >
Загрузка в weed
</button>
<div class="text-neutral-300"> <div class="text-neutral-300">
<span> <span>
{cnt_pic} {cnt_pic}
</span> </span>
</div>
</div>
</div> </div>
</div> </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> </div>
<style> <style>
</style> </style>

@ -34,6 +34,13 @@ const servers = [
port: "4321", port: "4321",
run: "idle" run: "idle"
}, },
{
name: "pionier",
dir: "d:\\projects\\pionier-daisy",
cmd: ".\\pionier-daisy.exe",
port: "4327",
run: "idle"
},
]; ];
export default servers; export default servers;
Loading…
Cancel
Save