[Mobile] Fix account notes not retrieving correctly in mobile (#2599)

* Fix account notes not retrieving correctly

* Release notes

* Update release notes

* Fix type errors
This commit is contained in:
Joel Jeremy Marquez
2024-04-16 13:06:26 -07:00
committed by GitHub
parent b101f9989b
commit 672dd5ea4b
7 changed files with 31 additions and 52 deletions

View File

@@ -1,10 +1,8 @@
import React, { useEffect, useRef, useState, type ComponentProps } from 'react';
import { useLiveQuery } from 'loot-core/src/client/query-hooks';
import { send } from 'loot-core/src/platform/client/fetch';
import { q } from 'loot-core/src/shared/query';
import { type NoteEntity } from 'loot-core/types/models';
import { useNotes } from '../hooks/useNotes';
import { SvgCustomNotesPaper } from '../icons/v2';
import { type CSSProperties, theme } from '../style';
@@ -32,11 +30,7 @@ export function NotesButton({
}: NotesButtonProps) {
const triggerRef = useRef(null);
const [isOpen, setIsOpen] = useState<boolean>(false);
const data = useLiveQuery<NoteEntity[]>(
() => q('notes').filter({ id }).select('*'),
[id],
);
const note = data && data.length > 0 ? data[0].note : '';
const note = useNotes(id) || '';
const hasNotes = note && note !== '';
const [tempNotes, setTempNotes] = useState<string>(note);

View File

@@ -1,10 +1,9 @@
import React, { type ComponentProps, useState } from 'react';
import { useLiveQuery } from 'loot-core/src/client/query-hooks';
import { q } from 'loot-core/src/shared/query';
import { type AccountEntity } from 'loot-core/types/models';
import { useAccounts } from '../../hooks/useAccounts';
import { useNotes } from '../../hooks/useNotes';
import { SvgClose, SvgDotsHorizontalTriple, SvgLockOpen } from '../../icons/v1';
import { SvgNotesPaper } from '../../icons/v2';
import { type CSSProperties, styles, theme } from '../../style';
@@ -16,11 +15,6 @@ import { type CommonModalProps } from '../Modals';
import { Notes } from '../Notes';
import { Tooltip } from '../tooltips';
type NoteEntity = {
id: string;
note: string;
};
type AccountMenuModalProps = {
modalProps: CommonModalProps;
accountId: string;
@@ -42,11 +36,7 @@ export function AccountMenuModal({
}: AccountMenuModalProps) {
const accounts = useAccounts();
const account = accounts.find(c => c.id === accountId);
const data = useLiveQuery(
() => q('notes').filter({ id: account?.id }).select('*'),
[account?.id],
) as NoteEntity[] | null;
const originalNotes = data && data.length > 0 ? data[0].note : null;
const originalNotes = useNotes(`account-${accountId}`);
const _onClose = () => {
modalProps?.onClose();

View File

@@ -1,14 +1,10 @@
// @ts-strict-ignore
import React, { type ComponentProps, useState } from 'react';
import { useLiveQuery } from 'loot-core/src/client/query-hooks';
import { q } from 'loot-core/src/shared/query';
import {
type CategoryGroupEntity,
type NoteEntity,
} from 'loot-core/src/types/models';
import { type CategoryGroupEntity } from 'loot-core/src/types/models';
import { useCategories } from '../../hooks/useCategories';
import { useNotes } from '../../hooks/useNotes';
import { SvgDotsHorizontalTriple, SvgAdd, SvgTrash } from '../../icons/v1';
import { SvgNotesPaper, SvgViewHide, SvgViewShow } from '../../icons/v2';
import { type CSSProperties, styles, theme } from '../../style';
@@ -42,11 +38,7 @@ export function CategoryGroupMenuModal({
}: CategoryGroupMenuModalProps) {
const { grouped: categoryGroups } = useCategories();
const group = categoryGroups.find(g => g.id === groupId);
const data = useLiveQuery<NoteEntity[]>(
() => q('notes').filter({ id: group.id }).select('*'),
[group.id],
);
const notes = data && data.length > 0 ? data[0].note : null;
const notes = useNotes(group.id);
const _onClose = () => {
modalProps?.onClose();

View File

@@ -1,15 +1,11 @@
// @ts-strict-ignore
import React, { useState } from 'react';
import { useLiveQuery } from 'loot-core/src/client/query-hooks';
import { q } from 'loot-core/src/shared/query';
import {
type CategoryEntity,
type NoteEntity,
} from 'loot-core/src/types/models';
import { type CategoryEntity } from 'loot-core/src/types/models';
import { useCategory } from '../../hooks/useCategory';
import { useCategoryGroup } from '../../hooks/useCategoryGroup';
import { useNotes } from '../../hooks/useNotes';
import { SvgDotsHorizontalTriple, SvgTrash } from '../../icons/v1';
import { SvgNotesPaper, SvgViewHide, SvgViewShow } from '../../icons/v2';
import { type CSSProperties, styles, theme } from '../../style';
@@ -40,12 +36,7 @@ export function CategoryMenuModal({
}: CategoryMenuModalProps) {
const category = useCategory(categoryId);
const categoryGroup = useCategoryGroup(category?.cat_group);
const data = useLiveQuery<NoteEntity[]>(
() => q('notes').filter({ id: category.id }).select('*'),
[category.id],
);
const originalNotes = data && data.length > 0 ? data[0].note : null;
const originalNotes = useNotes(category.id);
const _onClose = () => {
modalProps?.onClose();
onClose?.();

View File

@@ -1,10 +1,7 @@
// @ts-strict-ignore
import React, { useEffect, useState } from 'react';
import { useLiveQuery } from 'loot-core/src/client/query-hooks';
import { q } from 'loot-core/src/shared/query';
import { type NoteEntity } from 'loot-core/types/models';
import { useNotes } from '../../hooks/useNotes';
import { SvgCheck } from '../../icons/v2';
import { Button } from '../common/Button';
import { Modal } from '../common/Modal';
@@ -20,11 +17,7 @@ type NotesProps = {
};
export function Notes({ modalProps, id, name, onSave }: NotesProps) {
const data = useLiveQuery<NoteEntity[]>(
() => q('notes').filter({ id }).select('*'),
[id],
);
const originalNotes = data && data.length > 0 ? data[0].note : null;
const originalNotes = useNotes(id);
const [notes, setNotes] = useState(originalNotes);
useEffect(() => setNotes(originalNotes), [originalNotes]);

View File

@@ -0,0 +1,13 @@
import { useMemo } from 'react';
import { useLiveQuery } from 'loot-core/client/query-hooks';
import { q } from 'loot-core/shared/query';
import { type NoteEntity } from 'loot-core/types/models';
export function useNotes(id: string) {
const data = useLiveQuery<NoteEntity[]>(
() => q('notes').filter({ id }).select('*'),
[id],
);
return useMemo(() => (data && data.length > 0 ? data[0].note : null), [data]);
}

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [joel-jeremy]
---
Fix account notes not retrieving correctly in mobile.