mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-09 03:32:54 -05:00
Maintenance: Convert FixEncryptionKey, Loading, AnimatedLoading components to TypeScript (#1784)
This commit is contained in:
@@ -18,7 +18,7 @@ import Text from './Text';
|
||||
import View from './View';
|
||||
|
||||
export type ModalProps = {
|
||||
title: string;
|
||||
title?: string;
|
||||
isCurrent?: boolean;
|
||||
isHidden?: boolean;
|
||||
children: ReactNode | (() => ReactNode);
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
import React, { useState } from 'react';
|
||||
|
||||
import { type FinanceModals } from 'loot-core/src/client/state-types/modals';
|
||||
import { send } from 'loot-core/src/platform/client/fetch';
|
||||
import { getTestKeyError } from 'loot-core/src/shared/errors';
|
||||
|
||||
import { type BoundActions } from '../../hooks/useActions';
|
||||
import { theme } from '../../style';
|
||||
import { type CommonModalProps } from '../../types/modals';
|
||||
import Button, { ButtonWithLoading } from '../common/Button';
|
||||
import ExternalLink from '../common/ExternalLink';
|
||||
import InitialFocus from '../common/InitialFocus';
|
||||
@@ -13,11 +16,17 @@ import Paragraph from '../common/Paragraph';
|
||||
import Text from '../common/Text';
|
||||
import View from '../common/View';
|
||||
|
||||
type FixEncryptionKeyProps = {
|
||||
modalProps: CommonModalProps;
|
||||
actions: BoundActions;
|
||||
options: FinanceModals['fix-encryption-key'];
|
||||
};
|
||||
|
||||
export default function FixEncryptionKey({
|
||||
modalProps,
|
||||
actions,
|
||||
options = {},
|
||||
}) {
|
||||
}: FixEncryptionKeyProps) {
|
||||
let { hasExistingKey, cloudFileId, onSuccess } = options;
|
||||
|
||||
let [password, setPassword] = useState('');
|
||||
@@ -1,15 +1,15 @@
|
||||
import React from 'react';
|
||||
import React, { type SVGProps } from 'react';
|
||||
|
||||
import { css } from 'glamor';
|
||||
import { css, keyframes } from 'glamor';
|
||||
|
||||
import Loading from './Loading';
|
||||
|
||||
const rotation = css.keyframes({
|
||||
const rotation = keyframes({
|
||||
'0%': { transform: 'rotate(-90deg)' },
|
||||
'100%': { transform: 'rotate(666deg)' },
|
||||
});
|
||||
|
||||
function AnimatedLoading(props) {
|
||||
function AnimatedLoading(props: SVGProps<SVGSVGElement>) {
|
||||
return (
|
||||
<span
|
||||
className={`${css({
|
||||
@@ -1,6 +1,6 @@
|
||||
import React, { useState } from 'react';
|
||||
import React, { type SVGProps, useState } from 'react';
|
||||
|
||||
const SvgLoading = props => {
|
||||
const SvgLoading = (props: SVGProps<SVGSVGElement>) => {
|
||||
let { color = 'currentColor' } = props;
|
||||
let [gradientId] = useState('gradient-' + Math.random());
|
||||
|
||||
@@ -8,7 +8,7 @@ export type QueriesState = {
|
||||
updatedAccounts: string[];
|
||||
accounts: AccountEntity[];
|
||||
categories: Awaited<ReturnType<Handlers['get-categories']>>;
|
||||
payees: unknown[];
|
||||
payees: Awaited<ReturnType<Handlers['payees-get']>>;
|
||||
earliestTransaction: unknown | null;
|
||||
};
|
||||
|
||||
@@ -51,7 +51,7 @@ type LoadCategoriesAction = {
|
||||
|
||||
type LoadPayeesAction = {
|
||||
type: typeof constants.LOAD_PAYEES;
|
||||
payees: unknown[];
|
||||
payees: State['payees'];
|
||||
};
|
||||
|
||||
export type QueriesActions =
|
||||
|
||||
@@ -5,7 +5,7 @@ import { Backup } from '../server/backups';
|
||||
import { RemoteFile } from '../server/cloud-storage';
|
||||
import { Message } from '../server/sync';
|
||||
|
||||
import { AccountEntity } from './models';
|
||||
import { AccountEntity, PayeeEntity } from './models';
|
||||
import { EmptyObject } from './util';
|
||||
|
||||
export interface ServerHandlers {
|
||||
@@ -95,7 +95,7 @@ export interface ServerHandlers {
|
||||
|
||||
'payee-create': (arg: { name }) => Promise<unknown>;
|
||||
|
||||
'payees-get': () => Promise<unknown[]>;
|
||||
'payees-get': () => Promise<PayeeEntity[]>;
|
||||
|
||||
'payees-get-rule-counts': () => Promise<unknown>;
|
||||
|
||||
|
||||
6
upcoming-release-notes/1784.md
Normal file
6
upcoming-release-notes/1784.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Maintenance
|
||||
authors: [MikesGlitch]
|
||||
---
|
||||
|
||||
Convert FixEncryptionKey, Loading, AnimatedLoading components to TypeScript and update get-payee query type.
|
||||
Reference in New Issue
Block a user