компонент Projects
parent
34044cb800
commit
dc2e7441d6
@ -0,0 +1,31 @@
|
||||
<script>
|
||||
import { StartFar } from "../wailsjs/go/main/App.js";
|
||||
|
||||
/** @type {Array<{last_directory: string, name: string, last_directory_path: string}>} */
|
||||
export let projects = [];
|
||||
|
||||
function start_far(project) {
|
||||
StartFar(project.last_directory_path);
|
||||
}
|
||||
</script>
|
||||
|
||||
<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 class="info"> {project.name} </span>
|
||||
</div>
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.info {
|
||||
color: lightgreen;
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue