feat: type improvements

This commit is contained in:
Dominik Pschenitschni 2022-10-17 13:14:07 +02:00
parent 1002579173
commit 599e28e5e5
Signed by untrusted user: dpschen
GPG Key ID: B257AC0149F43A77
43 changed files with 162 additions and 135 deletions

View File

@ -86,6 +86,7 @@
"autoprefixer": "10.4.13", "autoprefixer": "10.4.13",
"browserslist": "4.21.4", "browserslist": "4.21.4",
"caniuse-lite": "1.0.30001427", "caniuse-lite": "1.0.30001427",
"csstype": "3.1.1",
"cypress": "10.11.0", "cypress": "10.11.0",
"esbuild": "0.15.12", "esbuild": "0.15.12",
"eslint": "8.26.0", "eslint": "8.26.0",

View File

@ -41,6 +41,7 @@ specifiers:
camel-case: 4.1.2 camel-case: 4.1.2
caniuse-lite: 1.0.30001427 caniuse-lite: 1.0.30001427
codemirror: 5.65.9 codemirror: 5.65.9
csstype: 3.1.1
cypress: 10.11.0 cypress: 10.11.0
date-fns: 2.29.3 date-fns: 2.29.3
dayjs: 1.11.6 dayjs: 1.11.6
@ -157,6 +158,7 @@ devDependencies:
autoprefixer: 10.4.13_postcss@8.4.18 autoprefixer: 10.4.13_postcss@8.4.18
browserslist: 4.21.4 browserslist: 4.21.4
caniuse-lite: 1.0.30001427 caniuse-lite: 1.0.30001427
csstype: 3.1.1
cypress: 10.11.0 cypress: 10.11.0
esbuild: 0.15.12 esbuild: 0.15.12
eslint: 8.26.0 eslint: 8.26.0
@ -5219,6 +5221,10 @@ packages:
/csstype/2.6.19: /csstype/2.6.19:
resolution: {integrity: sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==} resolution: {integrity: sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==}
/csstype/3.1.1:
resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==}
dev: true
/cyclist/1.0.1: /cyclist/1.0.1:
resolution: {integrity: sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==} resolution: {integrity: sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==}
dev: true dev: true

View File

@ -26,7 +26,7 @@ if (navigator && navigator.serviceWorker) {
) )
} }
function showRefreshUI(e) { function showRefreshUI(e: Event) {
console.log('recieved refresh event', e) console.log('recieved refresh event', e)
registration.value = e.detail registration.value = e.detail
updateAvailable.value = true updateAvailable.value = true

View File

@ -193,7 +193,7 @@ function toggleDatePopup() {
} }
const datepickerPopup = ref<HTMLElement | null>(null) const datepickerPopup = ref<HTMLElement | null>(null)
function hideDatePopup(e) { function hideDatePopup(e: MouseEvent) {
if (show.value) { if (show.value) {
closeWhenClickedOutside(e, datepickerPopup.value, close) closeWhenClickedOutside(e, datepickerPopup.value, close)
} }

View File

@ -115,6 +115,7 @@ const props = defineProps({
default: true, default: true,
}, },
bottomActions: { bottomActions: {
type: Array,
default: () => [], default: () => [],
}, },
emptyText: { emptyText: {

View File

@ -123,6 +123,7 @@ const props = defineProps({
}, },
// The object with the value, updated every time an entry is selected. // The object with the value, updated every time an entry is selected.
modelValue: { modelValue: {
type: [] as PropType<{[key: string]: any}>,
default: null, default: null,
}, },
// If true, will provide an "add this as a new value" entry which fires an @create event when clicking on it. // If true, will provide an "add this as a new value" entry which fires an @create event when clicking on it.
@ -177,14 +178,14 @@ const emit = defineEmits<{
// @search: Triggered every time the search query input changes // @search: Triggered every time the search query input changes
(e: 'search', query: string): void (e: 'search', query: string): void
// @select: Triggered every time an option from the search results is selected. Also triggers a change in v-model. // @select: Triggered every time an option from the search results is selected. Also triggers a change in v-model.
(e: 'select', value: null): void (e: 'select', value: {[key: string]: any}): void
// @create: If nothing or no exact match was found and `creatable` is true, this event is triggered with the current value of the search query. // @create: If nothing or no exact match was found and `creatable` is true, this event is triggered with the current value of the search query.
(e: 'create', query: string): void (e: 'create', query: string): void
// @remove: If `multiple` is enabled, this will be fired every time an item is removed from the array of selected items. // @remove: If `multiple` is enabled, this will be fired every time an item is removed from the array of selected items.
(e: 'remove', value: null): void (e: 'remove', value: null): void
}>() }>()
const query = ref('') const query = ref<string | {[key: string]: any}>('')
const searchTimeout = ref<ReturnType<typeof setTimeout> | null>(null) const searchTimeout = ref<ReturnType<typeof setTimeout> | null>(null)
const localLoading = ref(false) const localLoading = ref(false)
const showSearchResults = ref(false) const showSearchResults = ref(false)

View File

@ -6,10 +6,10 @@
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import type { Color } from 'csstype' import type { DataType } from 'csstype'
defineProps< { defineProps< {
color: Color, color: DataType.Color,
}>() }>()
</script> </script>

View File

@ -76,7 +76,7 @@ const notifications = computed(() => {
}) })
const userInfo = computed(() => authStore.info) const userInfo = computed(() => authStore.info)
let interval: number let interval: ReturnType<typeof setInterval>
onMounted(() => { onMounted(() => {
loadNotifications() loadNotifications()

View File

@ -214,7 +214,7 @@ async function addTask() {
return rel return rel
}) })
await Promise.all(relations) await Promise.all(relations)
} catch (e: { message?: string }) { } catch (e: any) {
newTaskTitle.value = taskTitleBackup newTaskTitle.value = taskTitleBackup
if (e?.message === 'NO_LIST') { if (e?.message === 'NO_LIST') {
errorMessage.value = t('list.create.addListRequired') errorMessage.value = t('list.create.addListRequired')

View File

@ -165,7 +165,6 @@ import BaseButton from '@/components/base/BaseButton.vue'
import AttachmentService from '@/services/attachment' import AttachmentService from '@/services/attachment'
import {SUPPORTED_IMAGE_SUFFIX} from '@/models/attachment' import {SUPPORTED_IMAGE_SUFFIX} from '@/models/attachment'
import type AttachmentModel from '@/models/attachment'
import type {IAttachment} from '@/modelTypes/IAttachment' import type {IAttachment} from '@/modelTypes/IAttachment'
import type {ITask} from '@/modelTypes/ITask' import type {ITask} from '@/modelTypes/ITask'
@ -227,9 +226,9 @@ function uploadFilesToTask(files: File[] | FileList) {
uploadFiles(attachmentService, props.task.id, files) uploadFiles(attachmentService, props.task.id, files)
} }
const attachmentToDelete = ref<AttachmentModel | null>(null) const attachmentToDelete = ref<IAttachment | null>(null)
function setAttachmentToDelete(attachment: AttachmentModel | null) { function setAttachmentToDelete(attachment: IAttachment | null) {
attachmentToDelete.value = attachment attachmentToDelete.value = attachment
} }
@ -250,7 +249,7 @@ async function deleteAttachment() {
const attachmentImageBlobUrl = ref<string | null>(null) const attachmentImageBlobUrl = ref<string | null>(null)
async function viewOrDownload(attachment: AttachmentModel) { async function viewOrDownload(attachment: IAttachment) {
if (SUPPORTED_IMAGE_SUFFIX.some((suffix) => attachment.file.name.endsWith(suffix))) { if (SUPPORTED_IMAGE_SUFFIX.some((suffix) => attachment.file.name.endsWith(suffix))) {
attachmentImageBlobUrl.value = await attachmentService.getBlobUrl(attachment) attachmentImageBlobUrl.value = await attachmentService.getBlobUrl(attachment)
} else { } else {

View File

@ -4,7 +4,7 @@
<Done class="heading__done" :is-done="task.done"/> <Done class="heading__done" :is-done="task.done"/>
<ColorBubble <ColorBubble
v-if="task.hexColor !== ''" v-if="task.hexColor !== ''"
:color="task.getHexColor()" :color="getHexColor(task.hexColor)"
class="mt-1 ml-2" class="mt-1 ml-2"
/> />
<h1 <h1
@ -48,6 +48,7 @@ import {useCopyToClipboard} from '@/composables/useCopyToClipboard'
import {useTaskStore} from '@/stores/tasks' import {useTaskStore} from '@/stores/tasks'
import type {ITask} from '@/modelTypes/ITask' import type {ITask} from '@/modelTypes/ITask'
import {getHexColor} from '@/models/task'
const props = defineProps({ const props = defineProps({
task: { task: {

View File

@ -9,9 +9,9 @@
v-model="list" v-model="list"
:select-placeholder="$t('list.searchSelect')" :select-placeholder="$t('list.searchSelect')"
> >
<template #searchResult="props"> <template #searchResult="{option}">
<span class="list-namespace-title search-result">{{ namespace(props.option.namespaceId) }} ></span> <span class="list-namespace-title search-result">{{ namespace((option as IList).namespaceId) }} ></span>
{{ props.option.title }} {{ (option as IList).title }}
</template> </template>
</Multiselect> </Multiselect>
</template> </template>
@ -25,6 +25,7 @@ import type {IList} from '@/modelTypes/IList'
import Multiselect from '@/components/input/multiselect.vue' import Multiselect from '@/components/input/multiselect.vue'
import {useListStore} from '@/stores/lists' import {useListStore} from '@/stores/lists'
import {useNamespaceStore} from '@/stores/namespaces' import {useNamespaceStore} from '@/stores/namespaces'
import type { INamespace } from '@/modelTypes/INamespace'
const props = defineProps({ const props = defineProps({
modelValue: { modelValue: {
@ -65,7 +66,7 @@ function select(l: IList | null) {
emit('update:modelValue', list) emit('update:modelValue', list)
} }
function namespace(namespaceId: number) { function namespace(namespaceId: INamespace['id']) {
const namespace = namespaceStore.getNamespaceById(namespaceId) const namespace = namespaceStore.getNamespaceById(namespaceId)
return namespace !== null return namespace !== null
? namespace.title ? namespace.title

View File

@ -2,7 +2,7 @@ import type {Directive} from 'vue'
import {install, uninstall} from '@github/hotkey' import {install, uninstall} from '@github/hotkey'
import {isAppleDevice} from '@/helpers/isAppleDevice' import {isAppleDevice} from '@/helpers/isAppleDevice'
const directive: Directive = { const directive = <Directive<HTMLElement,string>>{
mounted(el, {value}) { mounted(el, {value}) {
if(value === '') { if(value === '') {
return return

View File

@ -3,17 +3,15 @@ import {snakeCase} from 'snake-case'
/** /**
* Transforms field names to camel case. * Transforms field names to camel case.
* @param object
* @returns {*}
*/ */
export function objectToCamelCase(object) { export function objectToCamelCase(object: Record<string, any>) {
// When calling recursively, this can be called without being and object or array in which case we just return the value // When calling recursively, this can be called without being and object or array in which case we just return the value
if (typeof object !== 'object') { if (typeof object !== 'object') {
return object return object
} }
const parsedObject = {} const parsedObject: Record<string, any> = {}
for (const m in object) { for (const m in object) {
parsedObject[camelCase(m)] = object[m] parsedObject[camelCase(m)] = object[m]
@ -25,7 +23,7 @@ export function objectToCamelCase(object) {
// Call it again for arrays // Call it again for arrays
if (Array.isArray(object[m])) { if (Array.isArray(object[m])) {
parsedObject[camelCase(m)] = object[m].map(o => objectToCamelCase(o)) parsedObject[camelCase(m)] = object[m].map((o: Record<string, any>) => objectToCamelCase(o))
// Because typeof [] === 'object' is true for arrays, we leave the loop here to prevent converting arrays to objects. // Because typeof [] === 'object' is true for arrays, we leave the loop here to prevent converting arrays to objects.
continue continue
} }
@ -40,17 +38,15 @@ export function objectToCamelCase(object) {
/** /**
* Transforms field names to snake case - used before making an api request. * Transforms field names to snake case - used before making an api request.
* @param object
* @returns {*}
*/ */
export function objectToSnakeCase(object) { export function objectToSnakeCase(object: Record<string, any>) {
// When calling recursively, this can be called without being and object or array in which case we just return the value // When calling recursively, this can be called without being and object or array in which case we just return the value
if (typeof object !== 'object') { if (typeof object !== 'object') {
return object return object
} }
const parsedObject = {} const parsedObject: Record<string, any> = {}
for (const m in object) { for (const m in object) {
parsedObject[snakeCase(m)] = object[m] parsedObject[snakeCase(m)] = object[m]
@ -65,7 +61,7 @@ export function objectToSnakeCase(object) {
// Call it again for arrays // Call it again for arrays
if (Array.isArray(object[m])) { if (Array.isArray(object[m])) {
parsedObject[snakeCase(m)] = object[m].map(o => objectToSnakeCase(o)) parsedObject[snakeCase(m)] = object[m].map((o: Record<string, any>) => objectToSnakeCase(o))
// Because typeof [] === 'object' is true for arrays, we leave the loop here to prevent converting arrays to objects. // Because typeof [] === 'object' is true for arrays, we leave the loop here to prevent converting arrays to objects.
continue continue
} }

View File

@ -5,11 +5,11 @@
* @param rootElement * @param rootElement
* @param closeCallback A closure function to call when the click event happened outside of the rootElement. * @param closeCallback A closure function to call when the click event happened outside of the rootElement.
*/ */
export const closeWhenClickedOutside = (event, rootElement, closeCallback) => { export const closeWhenClickedOutside = (event: MouseEvent, rootElement: HTMLElement, closeCallback: () => void) => {
// We walk up the tree to see if any parent of the clicked element is the root element. // We walk up the tree to see if any parent of the clicked element is the root element.
// If it is not, we call the close callback. We're doing all this hassle to only call the // If it is not, we call the close callback. We're doing all this hassle to only call the
// closing callback when a click happens outside of the rootElement. // closing callback when a click happens outside of the rootElement.
let parent = event.target.parentElement let parent = (event.target as HTMLElement)?.parentElement
while (parent !== rootElement) { while (parent !== rootElement) {
if (parent === null || parent.parentElement === null) { if (parent === null || parent.parentElement === null) {
parent = null parent = null

View File

@ -1,12 +1,12 @@
/** /**
* Make date objects from timestamps * Make date objects from timestamps
*/ */
export function parseDateOrNull(date) { export function parseDateOrNull(date: string | Date) {
if (date instanceof Date) { if (date instanceof Date) {
return date return date
} }
if ((typeof date === 'string' || date instanceof String) && !date.startsWith('0001')) { if ((typeof date === 'string') && !date.startsWith('0001')) {
return new Date(date) return new Date(date)
} }

View File

@ -1,6 +1,13 @@
// Save the current list view to local storage // Save the current list view to local storage
import type { IList } from '@/modelTypes/IList'
type ListView = Record<IList['id'], string>
const DEFAULT_LIST_VIEW = 'list.list' as const
// We use local storage and not a store here to make it persistent across reloads. // We use local storage and not a store here to make it persistent across reloads.
export const saveListView = (listId, routeName) => { export const saveListView = (listId: IList['id'], routeName: string) => {
if (routeName.includes('settings.')) { if (routeName.includes('settings.')) {
return return
} }
@ -10,12 +17,12 @@ export const saveListView = (listId, routeName) => {
} }
const savedListView = localStorage.getItem('listView') const savedListView = localStorage.getItem('listView')
let savedListViewJson = false let savedListViewJson: ListView | false = false
if (savedListView !== null) { if (savedListView !== null) {
savedListViewJson = JSON.parse(savedListView) savedListViewJson = JSON.parse(savedListView) as ListView
} }
let listView = {} let listView: ListView = {}
if (savedListViewJson) { if (savedListViewJson) {
listView = savedListViewJson listView = savedListViewJson
} }
@ -24,7 +31,7 @@ export const saveListView = (listId, routeName) => {
localStorage.setItem('listView', JSON.stringify(listView)) localStorage.setItem('listView', JSON.stringify(listView))
} }
export const getListView = listId => { export const getListView = (listId: IList['id']) => {
// Remove old stored settings // Remove old stored settings
const savedListView = localStorage.getItem('listView') const savedListView = localStorage.getItem('listView')
if (savedListView !== null && savedListView.startsWith('list.')) { if (savedListView !== null && savedListView.startsWith('list.')) {
@ -32,13 +39,13 @@ export const getListView = listId => {
} }
if (!savedListView) { if (!savedListView) {
return 'list.list' return DEFAULT_LIST_VIEW
} }
const savedListViewJson = JSON.parse(savedListView) const savedListViewJson: ListView = JSON.parse(savedListView)
if (!savedListViewJson[listId]) { if (!savedListViewJson[listId]) {
return 'list.list' return DEFAULT_LIST_VIEW
} }
return savedListViewJson[listId] return savedListViewJson[listId]

View File

@ -10,7 +10,7 @@ const days = {
friday: 5, friday: 5,
saturday: 6, saturday: 6,
sunday: 0, sunday: 0,
} } as Record<string, number>
for (const n in days) { for (const n in days) {
test(`today on a ${n}`, () => { test(`today on a ${n}`, () => {
@ -32,7 +32,7 @@ const nextMonday = {
friday: 3, friday: 3,
saturday: 2, saturday: 2,
sunday: 1, sunday: 1,
} } as Record<string, number>
for (const n in nextMonday) { for (const n in nextMonday) {
test(`next monday on a ${n}`, () => { test(`next monday on a ${n}`, () => {
@ -48,7 +48,7 @@ const thisWeekend = {
friday: 1, friday: 1,
saturday: 0, saturday: 0,
sunday: 0, sunday: 0,
} } as Record<string, number>
for (const n in thisWeekend) { for (const n in thisWeekend) {
test(`this weekend on a ${n}`, () => { test(`this weekend on a ${n}`, () => {
@ -64,7 +64,7 @@ const laterThisWeek = {
friday: 0, friday: 0,
saturday: 0, saturday: 0,
sunday: 0, sunday: 0,
} } as Record<string, number>
for (const n in laterThisWeek) { for (const n in laterThisWeek) {
test(`later this week on a ${n}`, () => { test(`later this week on a ${n}`, () => {
@ -80,7 +80,7 @@ const laterNextWeek = {
friday: 7 + 0, friday: 7 + 0,
saturday: 7 + 0, saturday: 7 + 0,
sunday: 7 + 0, sunday: 7 + 0,
} } as Record<string, number>
for (const n in laterNextWeek) { for (const n in laterNextWeek) {
test(`later next week on a ${n} (this week)`, () => { test(`later next week on a ${n} (this week)`, () => {

View File

@ -1,4 +1,6 @@
export function calculateDayInterval(dateString: string, currentDay = (new Date().getDay())) { type Day<T extends number = number> = T
export function calculateDayInterval(dateString: string, currentDay = (new Date().getDay())): Day {
switch (dateString) { switch (dateString) {
case 'today': case 'today':
return 0 return 0

View File

@ -6,7 +6,7 @@
* @param dateString * @param dateString
* @returns {Date} * @returns {Date}
*/ */
export const createDateFromString = dateString => { export function createDateFromString(dateString: string | Date) {
if (dateString instanceof Date) { if (dateString instanceof Date) {
return dateString return dateString
} }

View File

@ -8,7 +8,7 @@ import {i18n} from '@/i18n'
const locales = {en: enGB, de, ch: de, fr, ru} const locales = {en: enGB, de, ch: de, fr, ru}
export function dateIsValid(date) { export function dateIsValid(date: Date | null) {
if (date === null) { if (date === null) {
return false return false
} }

View File

@ -20,4 +20,7 @@ export interface IUser extends IAbstract {
created: Date created: Date
updated: Date updated: Date
settings: IUserSettings settings: IUserSettings
isLocalUser: boolean
deletionScheduledAt: string | Date | null
} }

View File

@ -8,6 +8,7 @@ export interface IUserSettings extends IAbstract {
discoverableByName: boolean discoverableByName: boolean
discoverableByEmail: boolean discoverableByEmail: boolean
overdueTasksRemindersEnabled: boolean overdueTasksRemindersEnabled: boolean
overdueTasksRemindersTime: any
defaultListId: undefined | IList['id'] defaultListId: undefined | IList['id']
weekStart: 0 | 1 | 2 | 3 | 4 | 5 | 6 weekStart: 0 | 1 | 2 | 3 | 4 | 5 | 6
timezone: string timezone: string

View File

@ -6,7 +6,7 @@ export default class EmailUpdateModel extends AbstractModel<IEmailUpdate> implem
newEmail = '' newEmail = ''
password = '' password = ''
constructor(data : Partial<IEmailUpdate>) { constructor(data : Partial<IEmailUpdate> = {}) {
super() super()
this.assignData(data) this.assignData(data)
} }

View File

@ -6,7 +6,7 @@ export default class PasswordUpdateModel extends AbstractModel<IPasswordUpdate>
newPassword = '' newPassword = ''
oldPassword = '' oldPassword = ''
constructor(data: Partial<IPasswordUpdate>) { constructor(data: Partial<IPasswordUpdate> = {}) {
super() super()
this.assignData(data) this.assignData(data)
} }

View File

@ -79,6 +79,7 @@ export default class TaskModel extends AbstractModel<ITask> implements ITask {
percentDone = 0 percentDone = 0
relatedTasks: Partial<Record<IRelationKind, ITask[]>> = {} relatedTasks: Partial<Record<IRelationKind, ITask[]>> = {}
attachments: IAttachment[] = [] attachments: IAttachment[] = []
coverImageAttachmentId: IAttachment['id'] = null
identifier = '' identifier = ''
index = 0 index = 0
isFavorite = false isFavorite = false

View File

@ -28,6 +28,9 @@ export default class UserModel extends AbstractModel<IUser> implements IUser {
updated: Date updated: Date
settings: IUserSettings settings: IUserSettings
isLocalUser: boolean // FIXME: what should this be
deletionScheduledAt: null
constructor(data: Partial<IUser> = {}) { constructor(data: Partial<IUser> = {}) {
super() super()
this.assignData(data) this.assignData(data)

View File

@ -9,6 +9,7 @@ export default class UserSettingsModel extends AbstractModel<IUserSettings> impl
discoverableByName = false discoverableByName = false
discoverableByEmail = false discoverableByEmail = false
overdueTasksRemindersEnabled = true overdueTasksRemindersEnabled = true
overdueTasksRemindersTime = undefined
defaultListId = undefined defaultListId = undefined
weekStart = 0 as IUserSettings['weekStart'] weekStart = 0 as IUserSettings['weekStart']
timezone = '' timezone = ''

View File

@ -1,4 +1,4 @@
interface ListHistory { export interface ListHistory {
id: number; id: number;
} }

View File

@ -4,7 +4,8 @@ import {parseTaskText, PrefixMode} from './parseTaskText'
import {getDateFromText, parseDate} from '../helpers/time/parseDate' import {getDateFromText, parseDate} from '../helpers/time/parseDate'
import {calculateDayInterval} from '../helpers/time/calculateDayInterval' import {calculateDayInterval} from '../helpers/time/calculateDayInterval'
import {PRIORITIES} from '@/constants/priorities' import {PRIORITIES} from '@/constants/priorities'
import { MILLISECONDS_A_DAY } from '@/constants/date' import {MILLISECONDS_A_DAY} from '@/constants/date'
import type {IRepeatAfter} from '@/types/IRepeatAfter'
describe('Parse Task Text', () => { describe('Parse Task Text', () => {
beforeEach(() => { beforeEach(() => {
@ -31,9 +32,9 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const now = new Date() const now = new Date()
expect(result.date.getFullYear()).toBe(now.getFullYear()) expect(result?.date?.getFullYear()).toBe(now.getFullYear())
expect(result.date.getMonth()).toBe(now.getMonth()) expect(result?.date?.getMonth()).toBe(now.getMonth())
expect(result.date.getDate()).toBe(now.getDate()) expect(result?.date?.getDate()).toBe(now.getDate())
expect(result.labels).toHaveLength(1) expect(result.labels).toHaveLength(1)
expect(result.labels[0]).toBe('label') expect(result.labels[0]).toBe('label')
expect(result.list).toBe('list') expect(result.list).toBe('list')
@ -61,18 +62,18 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const now = new Date() const now = new Date()
expect(result.date.getFullYear()).toBe(now.getFullYear()) expect(result?.date?.getFullYear()).toBe(now.getFullYear())
expect(result.date.getMonth()).toBe(now.getMonth()) expect(result?.date?.getMonth()).toBe(now.getMonth())
expect(result.date.getDate()).toBe(now.getDate()) expect(result?.date?.getDate()).toBe(now.getDate())
}) })
it('should recognize today', () => { it('should recognize today', () => {
const result = parseTaskText('Lorem Ipsum today') const result = parseTaskText('Lorem Ipsum today')
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const now = new Date() const now = new Date()
expect(result.date.getFullYear()).toBe(now.getFullYear()) expect(result?.date?.getFullYear()).toBe(now.getFullYear())
expect(result.date.getMonth()).toBe(now.getMonth()) expect(result?.date?.getMonth()).toBe(now.getMonth())
expect(result.date.getDate()).toBe(now.getDate()) expect(result?.date?.getDate()).toBe(now.getDate())
}) })
describe('should recognize today with a time', () => { describe('should recognize today with a time', () => {
const cases = { const cases = {
@ -93,11 +94,11 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const now = new Date() const now = new Date()
expect(result.date.getFullYear()).toBe(now.getFullYear()) expect(result?.date?.getFullYear()).toBe(now.getFullYear())
expect(result.date.getMonth()).toBe(now.getMonth()) expect(result?.date?.getMonth()).toBe(now.getMonth())
expect(result.date.getDate()).toBe(now.getDate()) expect(result?.date?.getDate()).toBe(now.getDate())
expect(`${result.date.getHours()}:${result.date.getMinutes()}`).toBe(cases[c as keyof typeof cases]) expect(`${result?.date?.getHours()}:${result?.date?.getMinutes()}`).toBe(cases[c as keyof typeof cases])
expect(result.date.getSeconds()).toBe(0) expect(result?.date?.getSeconds()).toBe(0)
}) })
} }
}) })
@ -107,9 +108,9 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const tomorrow = new Date() const tomorrow = new Date()
tomorrow.setDate(tomorrow.getDate() + 1) tomorrow.setDate(tomorrow.getDate() + 1)
expect(result.date.getFullYear()).toBe(tomorrow.getFullYear()) expect(result?.date?.getFullYear()).toBe(tomorrow.getFullYear())
expect(result.date.getMonth()).toBe(tomorrow.getMonth()) expect(result?.date?.getMonth()).toBe(tomorrow.getMonth())
expect(result.date.getDate()).toBe(tomorrow.getDate()) expect(result?.date?.getDate()).toBe(tomorrow.getDate())
}) })
it('should recognize next monday', () => { it('should recognize next monday', () => {
const result = parseTaskText('Lorem Ipsum next monday') const result = parseTaskText('Lorem Ipsum next monday')
@ -119,9 +120,9 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const nextMonday = new Date() const nextMonday = new Date()
nextMonday.setDate(nextMonday.getDate() + untilNextMonday) nextMonday.setDate(nextMonday.getDate() + untilNextMonday)
expect(result.date.getFullYear()).toBe(nextMonday.getFullYear()) expect(result?.date?.getFullYear()).toBe(nextMonday.getFullYear())
expect(result.date.getMonth()).toBe(nextMonday.getMonth()) expect(result?.date?.getMonth()).toBe(nextMonday.getMonth())
expect(result.date.getDate()).toBe(nextMonday.getDate()) expect(result?.date?.getDate()).toBe(nextMonday.getDate())
}) })
it('should recognize next monday and ignore casing', () => { it('should recognize next monday and ignore casing', () => {
const result = parseTaskText('Lorem Ipsum nExt Monday') const result = parseTaskText('Lorem Ipsum nExt Monday')
@ -131,9 +132,9 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const nextMonday = new Date() const nextMonday = new Date()
nextMonday.setDate(nextMonday.getDate() + untilNextMonday) nextMonday.setDate(nextMonday.getDate() + untilNextMonday)
expect(result.date.getFullYear()).toBe(nextMonday.getFullYear()) expect(result?.date?.getFullYear()).toBe(nextMonday.getFullYear())
expect(result.date.getMonth()).toBe(nextMonday.getMonth()) expect(result?.date?.getMonth()).toBe(nextMonday.getMonth())
expect(result.date.getDate()).toBe(nextMonday.getDate()) expect(result?.date?.getDate()).toBe(nextMonday.getDate())
}) })
it('should recognize this weekend', () => { it('should recognize this weekend', () => {
const result = parseTaskText('Lorem Ipsum this weekend') const result = parseTaskText('Lorem Ipsum this weekend')
@ -143,9 +144,9 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const thisWeekend = new Date() const thisWeekend = new Date()
thisWeekend.setDate(thisWeekend.getDate() + untilThisWeekend) thisWeekend.setDate(thisWeekend.getDate() + untilThisWeekend)
expect(result.date.getFullYear()).toBe(thisWeekend.getFullYear()) expect(result?.date?.getFullYear()).toBe(thisWeekend.getFullYear())
expect(result.date.getMonth()).toBe(thisWeekend.getMonth()) expect(result?.date?.getMonth()).toBe(thisWeekend.getMonth())
expect(result.date.getDate()).toBe(thisWeekend.getDate()) expect(result?.date?.getDate()).toBe(thisWeekend.getDate())
}) })
it('should recognize later this week', () => { it('should recognize later this week', () => {
const result = parseTaskText('Lorem Ipsum later this week') const result = parseTaskText('Lorem Ipsum later this week')
@ -155,9 +156,9 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const laterThisWeek = new Date() const laterThisWeek = new Date()
laterThisWeek.setDate(laterThisWeek.getDate() + untilLaterThisWeek) laterThisWeek.setDate(laterThisWeek.getDate() + untilLaterThisWeek)
expect(result.date.getFullYear()).toBe(laterThisWeek.getFullYear()) expect(result?.date?.getFullYear()).toBe(laterThisWeek.getFullYear())
expect(result.date.getMonth()).toBe(laterThisWeek.getMonth()) expect(result?.date?.getMonth()).toBe(laterThisWeek.getMonth())
expect(result.date.getDate()).toBe(laterThisWeek.getDate()) expect(result?.date?.getDate()).toBe(laterThisWeek.getDate())
}) })
it('should recognize later next week', () => { it('should recognize later next week', () => {
const result = parseTaskText('Lorem Ipsum later next week') const result = parseTaskText('Lorem Ipsum later next week')
@ -167,9 +168,9 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const laterNextWeek = new Date() const laterNextWeek = new Date()
laterNextWeek.setDate(laterNextWeek.getDate() + untilLaterNextWeek) laterNextWeek.setDate(laterNextWeek.getDate() + untilLaterNextWeek)
expect(result.date.getFullYear()).toBe(laterNextWeek.getFullYear()) expect(result?.date?.getFullYear()).toBe(laterNextWeek.getFullYear())
expect(result.date.getMonth()).toBe(laterNextWeek.getMonth()) expect(result?.date?.getMonth()).toBe(laterNextWeek.getMonth())
expect(result.date.getDate()).toBe(laterNextWeek.getDate()) expect(result?.date?.getDate()).toBe(laterNextWeek.getDate())
}) })
it('should recognize next week', () => { it('should recognize next week', () => {
const result = parseTaskText('Lorem Ipsum next week') const result = parseTaskText('Lorem Ipsum next week')
@ -179,9 +180,9 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const nextWeek = new Date() const nextWeek = new Date()
nextWeek.setDate(nextWeek.getDate() + untilNextWeek) nextWeek.setDate(nextWeek.getDate() + untilNextWeek)
expect(result.date.getFullYear()).toBe(nextWeek.getFullYear()) expect(result?.date?.getFullYear()).toBe(nextWeek.getFullYear())
expect(result.date.getMonth()).toBe(nextWeek.getMonth()) expect(result?.date?.getMonth()).toBe(nextWeek.getMonth())
expect(result.date.getDate()).toBe(nextWeek.getDate()) expect(result?.date?.getDate()).toBe(nextWeek.getDate())
}) })
it('should recognize next month', () => { it('should recognize next month', () => {
const result = parseTaskText('Lorem Ipsum next month') const result = parseTaskText('Lorem Ipsum next month')
@ -190,9 +191,9 @@ describe('Parse Task Text', () => {
const nextMonth = new Date() const nextMonth = new Date()
nextMonth.setDate(1) nextMonth.setDate(1)
nextMonth.setMonth(nextMonth.getMonth() + 1) nextMonth.setMonth(nextMonth.getMonth() + 1)
expect(result.date.getFullYear()).toBe(nextMonth.getFullYear()) expect(result?.date?.getFullYear()).toBe(nextMonth.getFullYear())
expect(result.date.getMonth()).toBe(nextMonth.getMonth()) expect(result?.date?.getMonth()).toBe(nextMonth.getMonth())
expect(result.date.getDate()).toBe(nextMonth.getDate()) expect(result?.date?.getDate()).toBe(nextMonth.getDate())
}) })
it('should recognize a date', () => { it('should recognize a date', () => {
const result = parseTaskText('Lorem Ipsum 06/26/2021') const result = parseTaskText('Lorem Ipsum 06/26/2021')
@ -200,9 +201,9 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const date = new Date() const date = new Date()
date.setFullYear(2021, 5, 26) date.setFullYear(2021, 5, 26)
expect(result.date.getFullYear()).toBe(date.getFullYear()) expect(result?.date?.getFullYear()).toBe(date.getFullYear())
expect(result.date.getMonth()).toBe(date.getMonth()) expect(result?.date?.getMonth()).toBe(date.getMonth())
expect(result.date.getDate()).toBe(date.getDate()) expect(result?.date?.getDate()).toBe(date.getDate())
}) })
it('should recognize end of month', () => { it('should recognize end of month', () => {
const result = parseTaskText('Lorem Ipsum end of month') const result = parseTaskText('Lorem Ipsum end of month')
@ -210,9 +211,9 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const curDate = new Date() const curDate = new Date()
const date = new Date(curDate.getFullYear(), curDate.getMonth() + 1, 0) const date = new Date(curDate.getFullYear(), curDate.getMonth() + 1, 0)
expect(result.date.getFullYear()).toBe(date.getFullYear()) expect(result?.date?.getFullYear()).toBe(date.getFullYear())
expect(result.date.getMonth()).toBe(date.getMonth()) expect(result?.date?.getMonth()).toBe(date.getMonth())
expect(result.date.getDate()).toBe(date.getDate()) expect(result?.date?.getDate()).toBe(date.getDate())
}) })
const cases = { const cases = {
@ -244,7 +245,7 @@ describe('Parse Task Text', () => {
'Sunday': 7, 'Sunday': 7,
'sun': 7, 'sun': 7,
'Sun': 7, 'Sun': 7,
} } as Record<string, number>
for (const c in cases) { for (const c in cases) {
it(`should recognize ${c} as weekday`, () => { it(`should recognize ${c} as weekday`, () => {
const result = parseTaskText(`Lorem Ipsum ${c}`) const result = parseTaskText(`Lorem Ipsum ${c}`)
@ -252,7 +253,7 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const nextDate = new Date() const nextDate = new Date()
nextDate.setDate(nextDate.getDate() + ((cases[c] + 7 - nextDate.getDay()) % 7)) nextDate.setDate(nextDate.getDate() + ((cases[c] + 7 - nextDate.getDay()) % 7))
expect(`${result.date.getFullYear()}-${result.date.getMonth()}-${result.date.getDate()}`).toBe(`${nextDate.getFullYear()}-${nextDate.getMonth()}-${nextDate.getDate()}`) expect(`${result?.date?.getFullYear()}-${result?.date?.getMonth()}-${result?.date?.getDate()}`).toBe(`${nextDate.getFullYear()}-${nextDate.getMonth()}-${nextDate.getDate()}`)
}) })
} }
it('should recognize weekdays with time', () => { it('should recognize weekdays with time', () => {
@ -261,8 +262,8 @@ describe('Parse Task Text', () => {
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
const nextThursday = new Date() const nextThursday = new Date()
nextThursday.setDate(nextThursday.getDate() + ((4 + 7 - nextThursday.getDay()) % 7)) nextThursday.setDate(nextThursday.getDate() + ((4 + 7 - nextThursday.getDay()) % 7))
expect(`${result.date.getFullYear()}-${result.date.getMonth()}-${result.date.getDate()}`).toBe(`${nextThursday.getFullYear()}-${nextThursday.getMonth()}-${nextThursday.getDate()}`) expect(`${result?.date?.getFullYear()}-${result?.date?.getMonth()}-${result?.date?.getDate()}`).toBe(`${nextThursday.getFullYear()}-${nextThursday.getMonth()}-${nextThursday.getDate()}`)
expect(`${result.date.getHours()}:${result.date.getMinutes()}`).toBe('14:0') expect(`${result?.date?.getHours()}:${result?.date?.getMinutes()}`).toBe('14:0')
}) })
it('should recognize dates of the month in the past but next month', () => { it('should recognize dates of the month in the past but next month', () => {
const time = new Date(2022, 0, 15) const time = new Date(2022, 0, 15)
@ -271,8 +272,8 @@ describe('Parse Task Text', () => {
const result = parseTaskText(`Lorem Ipsum ${time.getDate() - 1}th`) const result = parseTaskText(`Lorem Ipsum ${time.getDate() - 1}th`)
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
expect(result.date.getDate()).toBe(time.getDate() - 1) expect(result?.date?.getDate()).toBe(time.getDate() - 1)
expect(result.date.getMonth()).toBe(time.getMonth() + 1) expect(result?.date?.getMonth()).toBe(time.getMonth() + 1)
}) })
it('should recognize dates of the month in the past but next month when february is the next month', () => { it('should recognize dates of the month in the past but next month when february is the next month', () => {
const jan = new Date(2022, 0, 30) const jan = new Date(2022, 0, 30)
@ -282,8 +283,8 @@ describe('Parse Task Text', () => {
const expectedDate = new Date(2022, 2, jan.getDate() - 1) const expectedDate = new Date(2022, 2, jan.getDate() - 1)
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
expect(result.date.getDate()).toBe(expectedDate.getDate()) expect(result?.date?.getDate()).toBe(expectedDate.getDate())
expect(result.date.getMonth()).toBe(expectedDate.getMonth()) expect(result?.date?.getMonth()).toBe(expectedDate.getMonth())
}) })
it('should recognize dates of the month in the past but next month when the next month has less days than this one', () => { it('should recognize dates of the month in the past but next month when the next month has less days than this one', () => {
const mar = new Date(2022, 2, 32) const mar = new Date(2022, 2, 32)
@ -293,15 +294,15 @@ describe('Parse Task Text', () => {
const expectedDate = new Date(2022, 4, 31) const expectedDate = new Date(2022, 4, 31)
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
expect(result.date.getDate()).toBe(expectedDate.getDate()) expect(result?.date?.getDate()).toBe(expectedDate.getDate())
expect(result.date.getMonth()).toBe(expectedDate.getMonth()) expect(result?.date?.getMonth()).toBe(expectedDate.getMonth())
}) })
it('should recognize dates of the month in the future', () => { it('should recognize dates of the month in the future', () => {
const nextDay = new Date(+new Date() + MILLISECONDS_A_DAY) const nextDay = new Date(+new Date() + MILLISECONDS_A_DAY)
const result = parseTaskText(`Lorem Ipsum ${nextDay.getDate()}nd`) const result = parseTaskText(`Lorem Ipsum ${nextDay.getDate()}nd`)
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
expect(result.date.getDate()).toBe(nextDay.getDate()) expect(result?.date?.getDate()).toBe(nextDay.getDate())
}) })
it('should only recognize weekdays with a space before or after them 1', () => { it('should only recognize weekdays with a space before or after them 1', () => {
const result = parseTaskText('Lorem Ipsum renewed') const result = parseTaskText('Lorem Ipsum renewed')
@ -382,7 +383,7 @@ describe('Parse Task Text', () => {
'saturday': 6, 'saturday': 6,
'sun': 7, 'sun': 7,
'sunday': 7, 'sunday': 7,
} } as Record<string, number>
const prefix = [ const prefix = [
'next ', 'next ',
@ -399,9 +400,9 @@ describe('Parse Task Text', () => {
next.setDate(next.getDate() + distance) next.setDate(next.getDate() + distance)
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
expect(result.date.getFullYear()).toBe(next.getFullYear()) expect(result?.date?.getFullYear()).toBe(next.getFullYear())
expect(result.date.getMonth()).toBe(next.getMonth()) expect(result?.date?.getMonth()).toBe(next.getMonth())
expect(result.date.getDate()).toBe(next.getDate()) expect(result?.date?.getDate()).toBe(next.getDate())
}) })
} }
}) })
@ -462,7 +463,7 @@ describe('Parse Task Text', () => {
'dolor sit amet oct 21': '2021-10-21', 'dolor sit amet oct 21': '2021-10-21',
'dolor sit amet nov 21': '2021-11-21', 'dolor sit amet nov 21': '2021-11-21',
'dolor sit amet dec 21': '2021-12-21', 'dolor sit amet dec 21': '2021-12-21',
} } as Record<string, string | null>
for (const c in cases) { for (const c in cases) {
it(`should parse '${c}' as '${cases[c]}'`, () => { it(`should parse '${c}' as '${cases[c]}'`, () => {
@ -472,7 +473,7 @@ describe('Parse Task Text', () => {
return return
} }
expect(`${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}`).toBe(cases[c]) expect(`${date?.getFullYear()}-${date.getMonth() + 1}-${date?.getDate()}`).toBe(cases[c])
}) })
} }
}) })
@ -510,7 +511,7 @@ describe('Parse Task Text', () => {
'Something at 10:00 in 5 days': '2021-6-29 10:0', 'Something at 10:00 in 5 days': '2021-6-29 10:0',
'Something at 10:00 17th': '2021-7-17 10:0', 'Something at 10:00 17th': '2021-7-17 10:0',
'Something at 10:00 sep 17th': '2021-9-17 10:0', 'Something at 10:00 sep 17th': '2021-9-17 10:0',
} } as Record<string, string>
for (const c in cases) { for (const c in cases) {
it(`should parse '${c}' as '${cases[c]}'`, () => { it(`should parse '${c}' as '${cases[c]}'`, () => {
@ -695,15 +696,15 @@ describe('Parse Task Text', () => {
'every eight hours': {type: 'hours', amount: 8}, 'every eight hours': {type: 'hours', amount: 8},
'every nine hours': {type: 'hours', amount: 9}, 'every nine hours': {type: 'hours', amount: 9},
'every ten hours': {type: 'hours', amount: 10}, 'every ten hours': {type: 'hours', amount: 10},
} } as Record<string, IRepeatAfter>
for (const c in cases) { for (const c in cases) {
it(`should parse ${c} as recurring date every ${cases[c].amount} ${cases[c].type}`, () => { it(`should parse ${c} as recurring date every ${cases[c].amount} ${cases[c].type}`, () => {
const result = parseTaskText(`Lorem Ipsum ${c}`) const result = parseTaskText(`Lorem Ipsum ${c}`)
expect(result.text).toBe('Lorem Ipsum') expect(result.text).toBe('Lorem Ipsum')
expect(result.repeats.type).toBe(cases[c].type) expect(result?.repeats?.type).toBe(cases[c].type)
expect(result.repeats.amount).toBe(cases[c].amount) expect(result?.repeats?.amount).toBe(cases[c].amount)
}) })
} }
}) })

View File

@ -7,7 +7,7 @@ import type { IAttachment } from '@/modelTypes/IAttachment'
import {downloadBlob} from '@/helpers/downloadBlob' import {downloadBlob} from '@/helpers/downloadBlob'
export default class AttachmentService extends AbstractService<AttachmentModel> { export default class AttachmentService extends AbstractService<IAttachment> {
constructor() { constructor() {
super({ super({
create: '/tasks/{taskId}/attachments', create: '/tasks/{taskId}/attachments',

View File

@ -84,7 +84,7 @@ export function useSavedFilter(listId?: MaybeRef<IList['id']>) {
const filterService = shallowReactive(new SavedFilterService()) const filterService = shallowReactive(new SavedFilterService())
const filter = ref(new SavedFilterModel()) const filter = ref<ISavedFilter>(new SavedFilterModel())
const filters = computed({ const filters = computed({
get: () => filter.value.filters, get: () => filter.value.filters,
set(value) { set(value) {
@ -92,7 +92,7 @@ export function useSavedFilter(listId?: MaybeRef<IList['id']>) {
}, },
}) })
// loadSavedFilter // load SavedFilter
watch(() => unref(listId), async (watchedListId) => { watch(() => unref(listId), async (watchedListId) => {
if (watchedListId === undefined) { if (watchedListId === undefined) {
return return

View File

@ -86,7 +86,7 @@ export const useBaseStore = defineStore('base', () => {
} }
async function handleSetCurrentList( async function handleSetCurrentList(
{list, forceUpdate = false}: {list: IList | null, forceUpdate: boolean}, {list, forceUpdate = false}: {list: IList | null, forceUpdate?: boolean},
) { ) {
if (list === null) { if (list === null) {
setCurrentList({}) setCurrentList({})

View File

@ -180,7 +180,7 @@ export const useListStore = defineStore('list', () => {
export function useList(listId: MaybeRef<IList['id']>) { export function useList(listId: MaybeRef<IList['id']>) {
const listService = shallowReactive(new ListService()) const listService = shallowReactive(new ListService())
const {loading: isLoading} = toRefs(listService) const {loading: isLoading} = toRefs(listService)
const list: ListModel = reactive(new ListModel()) const list: IList = reactive(new ListModel())
const {t} = useI18n({useScope: 'global'}) const {t} = useI18n({useScope: 'global'})
watch( watch(

View File

@ -14,7 +14,6 @@
</router-link> </router-link>
</message> </message>
<add-task <add-task
:listId="defaultListId"
@taskAdded="updateTaskList" @taskAdded="updateTaskList"
class="is-max-width-desktop" class="is-max-width-desktop"
/> />
@ -76,6 +75,7 @@ import {useConfigStore} from '@/stores/config'
import {useNamespaceStore} from '@/stores/namespaces' import {useNamespaceStore} from '@/stores/namespaces'
import {useAuthStore} from '@/stores/auth' import {useAuthStore} from '@/stores/auth'
import {useTaskStore} from '@/stores/tasks' import {useTaskStore} from '@/stores/tasks'
import type {IList} from '@/modelTypes/IList'
const salutation = useDaytimeSalutation() const salutation = useDaytimeSalutation()
@ -94,12 +94,11 @@ const listHistory = computed(() => {
return getHistory() return getHistory()
.map(l => listStore.getListById(l.id)) .map(l => listStore.getListById(l.id))
.filter(l => l !== null) .filter((l): l is IList => l !== null)
}) })
const migratorsEnabled = computed(() => configStore.availableMigrators?.length > 0) const migratorsEnabled = computed(() => configStore.availableMigrators?.length > 0)
const hasTasks = computed(() => baseStore.hasTasks) const hasTasks = computed(() => baseStore.hasTasks)
const defaultListId = computed(() => authStore.settings.defaultListId)
const defaultNamespaceId = computed(() => namespaceStore.namespaces?.[0]?.id || 0) const defaultNamespaceId = computed(() => namespaceStore.namespaces?.[0]?.id || 0)
const hasLists = computed(() => namespaceStore.namespaces?.[0]?.lists.length > 0) const hasLists = computed(() => namespaceStore.namespaces?.[0]?.lists.length > 0)
const loading = computed(() => taskStore.isLoading) const loading = computed(() => taskStore.isLoading)

View File

@ -66,7 +66,7 @@ async function newLabel() {
showError.value = false showError.value = false
const labelStore = useLabelStore() const labelStore = useLabelStore()
const newLabel = labelStore.createLabel(label.value) const newLabel = await labelStore.createLabel(label.value)
router.push({ router.push({
name: 'labels.index', name: 'labels.index',
params: {id: newLabel.id}, params: {id: newLabel.id},

View File

@ -71,11 +71,13 @@ import {useI18n} from 'vue-i18n'
import {useTitle} from '@/composables/useTitle' import {useTitle} from '@/composables/useTitle'
import {useNamespaceStore} from '@/stores/namespaces' import {useNamespaceStore} from '@/stores/namespaces'
import type {INamespace} from '@/modelTypes/INamespace'
const {t} = useI18n({useScope: 'global'}) const {t} = useI18n({useScope: 'global'})
const namespaceStore = useNamespaceStore() const namespaceStore = useNamespaceStore()
const namespaceService = ref(new NamespaceService()) const namespaceService = ref(new NamespaceService())
const namespace = ref(new NamespaceModel()) const namespace = ref<INamespace>(new NamespaceModel())
const editorActive = ref(false) const editorActive = ref(false)
const title = ref('') const title = ref('')
useTitle(() => title.value) useTitle(() => title.value)

View File

@ -558,7 +558,7 @@ const canWrite = computed(() => (
const color = computed(() => { const color = computed(() => {
const color = task.getHexColor const color = task.getHexColor
? task.getHexColor() ? task.getHexColor()
: false : undefined
return color === TASK_DEFAULT_COLOR return color === TASK_DEFAULT_COLOR
? '' ? ''

View File

@ -50,14 +50,14 @@ async function authenticateWithCode() {
if (localStorage.getItem('authenticating')) { if (localStorage.getItem('authenticating')) {
return return
} }
localStorage.setItem('authenticating', true) localStorage.setItem('authenticating', 'true')
errorMessage.value = '' errorMessage.value = ''
if (typeof route.query.error !== 'undefined') { if (typeof route.query.error !== 'undefined') {
localStorage.removeItem('authenticating') localStorage.removeItem('authenticating')
errorMessage.value = typeof route.query.message !== 'undefined' errorMessage.value = typeof route.query.message !== 'undefined'
? route.query.message ? route.query.message as string
: t('user.auth.openIdGeneralError') : t('user.auth.openIdGeneralError')
return return
} }

View File

@ -130,8 +130,8 @@ async function submit() {
try { try {
await authStore.register(toRaw(credentials)) await authStore.register(toRaw(credentials))
} catch (e) { } catch (e: any) {
errorMessage.value = e.message errorMessage.value = e?.message
} }
} }
</script> </script>

View File

@ -41,7 +41,7 @@
<td>{{ tk.id }}</td> <td>{{ tk.id }}</td>
<td>{{ formatDateShort(tk.created) }}</td> <td>{{ formatDateShort(tk.created) }}</td>
<td class="has-text-right"> <td class="has-text-right">
<x-button type="secondary" @click="deleteToken(tk)"> <x-button variant="secondary" @click="deleteToken(tk)">
{{ $t('misc.delete') }} {{ $t('misc.delete') }}
</x-button> </x-button>
</td> </td>

View File

@ -246,7 +246,7 @@ watch(
const listStore = useListStore() const listStore = useListStore()
const defaultList = computed({ const defaultList = computed({
get: () => listStore.getListById(settings.value.defaultListId), get: () => listStore.getListById(settings.value.defaultListId) || undefined,
set(l) { set(l) {
settings.value.defaultListId = l ? l.id : DEFAULT_LIST_ID settings.value.defaultListId = l ? l.id : DEFAULT_LIST_ID
}, },

View File

@ -79,13 +79,14 @@ import {success} from '@/message'
import {useTitle} from '@/composables/useTitle' import {useTitle} from '@/composables/useTitle'
import {useConfigStore} from '@/stores/config' import {useConfigStore} from '@/stores/config'
import type {ITotp} from '@/modelTypes/ITotp'
const {t} = useI18n({useScope: 'global'}) const {t} = useI18n({useScope: 'global'})
useTitle(() => `${t('user.settings.totp.title')} - ${t('user.settings.title')}`) useTitle(() => `${t('user.settings.totp.title')} - ${t('user.settings.title')}`)
const totpService = shallowReactive(new TotpService()) const totpService = shallowReactive(new TotpService())
const totp = ref(new TotpModel()) const totp = ref<ITotp>(new TotpModel())
const totpQR = ref('') const totpQR = ref('')
const totpEnrolled = ref(false) const totpEnrolled = ref(false)
const totpConfirmPasscode = ref('') const totpConfirmPasscode = ref('')