Compare commits

..

No commits in common. "4b611f95556a1ef5c07441ebb6287f54a8879f9b" and "d67ca7fa0347bdfbff930cca320ef2a1b41d0051" have entirely different histories.

5 changed files with 16 additions and 32 deletions

View File

@ -4,11 +4,11 @@
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"devPath": "http://localhost:5173",
"distDir": "../build"
"distDir": "../static"
},
"package": {
"productName": "Focus",
"version": "0.3.1"
"version": "0.1.0"
},
"tauri": {
"allowlist": {

View File

@ -8,8 +8,8 @@
export let card: Card;
export let showModal: boolean;
let newTitle: string = card.title;
let newContent: string = card.content;
let newTitle = card.title;
let newContent = card.content;
async function save(closeModal: boolean = true) {
if (card.title !== newTitle || card.content !== newContent) {
@ -21,28 +21,22 @@
}
</script>
<svelte:window
on:keydown|once={(e) => {
if (e.key === 'Escape') return save(true);
}}
/>
<!-- svelte-ignore a11y-click-events-have-key-events -->
<!-- svelte-ignore a11y-no-static-element-interactions -->
<div class="modal" on:click|self|preventDefault={() => save(true)}>
<div class="modal" on:click={() => save(true)}>
<div class="content" on:click|stopPropagation>
<div class="header">
<input class="title" bind:value={newTitle} on:blur={() => save(false)} />
<div class="buttons">
<button
on:click|once={async () => {
on:click={async () => {
await card.delete();
showModal = false;
}}
>
<TrashIcon />
</button>
<button on:click|once={() => (showModal = false)}>
<button on:click={() => (showModal = false)}>
<CloseIcon />
</button>
</div>

View File

@ -1,12 +1,12 @@
<script lang="ts">
import currentDraggedCard from '$lib/stores/currentDraggedCard';
import currentView from '$lib/stores/currentView';
import Card, { cards } from '$lib/types/Card';
import type Project from '$lib/types/Project';
import ProjectTag, { projectTags } from '$lib/types/ProjectTag';
import type TagOption from '$lib/types/TagOption';
import CardComponent from '../card/Card.svelte';
import AddIcon from '../icons/AddIcon.svelte';
import type TagOption from '$lib/types/TagOption';
import ProjectTag, { projectTags } from '$lib/types/ProjectTag';
import type Project from '$lib/types/Project';
import currentDraggedCard from '$lib/stores/currentDraggedCard';
import currentView from '$lib/stores/currentView';
export let project: Project;
export let option: TagOption | null = null;
@ -45,8 +45,6 @@
if (!card) return;
await card.updateTitle(`untitled ${card.id}`);
if ($currentView?.filters && $currentView.filters.length > 0) {
for (const projectTag of $projectTags) {
for (const filter of $currentView.filters) {
@ -107,7 +105,7 @@
</span>
</header>
<ul>
{#each columnCards as card (card.id)}
{#each columnCards as card}
<CardComponent {card} />
{/each}
</ul>

View File

@ -15,8 +15,7 @@
{#if tagType}
<td>
{#if tagType?.hasOptions}
<!-- multiple={false} -->
<SelectTags {projectTag} {card} {cardTag} />
<SelectTags multiple={false} {projectTag} {card} {cardTag} />
{:else if !tagType?.hasOptions}
<input />
{/if}

View File

@ -1,14 +1,11 @@
<script lang="ts">
import { page } from '$app/stores';
import projectsApi from '$lib/api/projectsApi';
import ProjectComponent from '$lib/components/project/Project.svelte';
import Sidebar from '$lib/components/project/Sidebar.svelte';
import currentView from '$lib/stores/currentView';
import type Project from '$lib/types/Project';
import { views } from '$lib/types/View';
import { SvelteToast } from '@zerodevx/svelte-toast';
import { onMount } from 'svelte';
import { get } from 'svelte/store';
import ProjectComponent from '$lib/components/project/Project.svelte';
import { page } from '$app/stores';
let project: Project;
@ -23,10 +20,6 @@
await projectsApi.getTags(project);
await projectsApi.getViews(project);
await projectsApi.getCards(project);
if (get(views).length > 0) {
currentView.set(get(views)[0]);
}
});
</script>