Compare commits
5 Commits
d67ca7fa03
...
4b611f9555
Author | SHA1 | Date |
---|---|---|
Brieuc Dubois | 4b611f9555 | |
Brieuc Dubois | 9597e0a250 | |
Brieuc Dubois | 3a2b75263f | |
Brieuc Dubois | 691c02366e | |
Brieuc Dubois | 374b8424d0 |
|
@ -4,11 +4,11 @@
|
|||
"beforeBuildCommand": "npm run build",
|
||||
"beforeDevCommand": "npm run dev",
|
||||
"devPath": "http://localhost:5173",
|
||||
"distDir": "../static"
|
||||
"distDir": "../build"
|
||||
},
|
||||
"package": {
|
||||
"productName": "Focus",
|
||||
"version": "0.1.0"
|
||||
"version": "0.3.1"
|
||||
},
|
||||
"tauri": {
|
||||
"allowlist": {
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
export let card: Card;
|
||||
export let showModal: boolean;
|
||||
|
||||
let newTitle = card.title;
|
||||
let newContent = card.content;
|
||||
let newTitle: string = card.title;
|
||||
let newContent: string = card.content;
|
||||
|
||||
async function save(closeModal: boolean = true) {
|
||||
if (card.title !== newTitle || card.content !== newContent) {
|
||||
|
@ -21,22 +21,28 @@
|
|||
}
|
||||
</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={() => save(true)}>
|
||||
<div class="modal" on:click|self|preventDefault={() => 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={async () => {
|
||||
on:click|once={async () => {
|
||||
await card.delete();
|
||||
showModal = false;
|
||||
}}
|
||||
>
|
||||
<TrashIcon />
|
||||
</button>
|
||||
<button on:click={() => (showModal = false)}>
|
||||
<button on:click|once={() => (showModal = false)}>
|
||||
<CloseIcon />
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<script lang="ts">
|
||||
import Card, { cards } from '$lib/types/Card';
|
||||
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';
|
||||
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';
|
||||
|
||||
export let project: Project;
|
||||
export let option: TagOption | null = null;
|
||||
|
@ -45,6 +45,8 @@
|
|||
|
||||
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) {
|
||||
|
@ -105,7 +107,7 @@
|
|||
</span>
|
||||
</header>
|
||||
<ul>
|
||||
{#each columnCards as card}
|
||||
{#each columnCards as card (card.id)}
|
||||
<CardComponent {card} />
|
||||
{/each}
|
||||
</ul>
|
||||
|
|
|
@ -15,7 +15,8 @@
|
|||
{#if tagType}
|
||||
<td>
|
||||
{#if tagType?.hasOptions}
|
||||
<SelectTags multiple={false} {projectTag} {card} {cardTag} />
|
||||
<!-- multiple={false} -->
|
||||
<SelectTags {projectTag} {card} {cardTag} />
|
||||
{:else if !tagType?.hasOptions}
|
||||
<input />
|
||||
{/if}
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
<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 ProjectComponent from '$lib/components/project/Project.svelte';
|
||||
import { page } from '$app/stores';
|
||||
import { get } from 'svelte/store';
|
||||
|
||||
let project: Project;
|
||||
|
||||
|
@ -20,6 +23,10 @@
|
|||
await projectsApi.getTags(project);
|
||||
await projectsApi.getViews(project);
|
||||
await projectsApi.getCards(project);
|
||||
|
||||
if (get(views).length > 0) {
|
||||
currentView.set(get(views)[0]);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in New Issue