Skip to content

Commit

Permalink
Empty accounts handling
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Nov 10, 2023
1 parent cae7d06 commit 4a1ca30
Showing 1 changed file with 16 additions and 32 deletions.
48 changes: 16 additions & 32 deletions packages/desktop-client/src/components/accounts/MobileAccounts.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,30 +123,14 @@ function AccountCard({ account, updated, getBalanceQuery, onSelect }) {
);
}

function EmptyMessage({ onAdd }) {
function EmptyMessage() {
return (
<View style={{ flex: 1, padding: 30 }}>
<Text style={styles.text}>
For Actual to be useful, you need to add an account. You can link an
account to automatically download transactions, or manage it locally
yourself.
</Text>

<Button
type="primary"
style={{ marginTop: 20, alignSelf: 'center' }}
onClick={() =>
alert(
'Account creation is not supported on mobile on the self-hosted service yet',
)
}
>
Add Account
</Button>

<Text style={{ marginTop: 20, color: theme.pageTextLight }}>
In the future, you can add accounts using the add button in the header.
</Text>
</View>
);
}
Expand All @@ -159,21 +143,15 @@ function AccountList({
getOffBudgetBalance,
onAddAccount,
onSelectAccount,
onSync,
}) {
const { syncAndDownload } = useActions();

const budgetedAccounts = accounts.filter(account => account.offbudget === 0);
const offbudgetAccounts = accounts.filter(account => account.offbudget === 1);
const noBackgroundColorStyle = {
backgroundColor: 'transparent',
color: 'white',
};

// If there are no accounts, show a helpful message
if (accounts.length === 0) {
return <EmptyMessage onAdd={onAddAccount} />;
}

return (
<View style={{ flex: 1 }}>
<Page
Expand All @@ -194,8 +172,11 @@ function AccountList({
</Button>
}
>
<PullToRefresh onRefresh={syncAndDownload}>
<AccountHeader name="For Budget" amount={getOnBudgetBalance()} />
{accounts.length === 0 && <EmptyMessage />}
<PullToRefresh onRefresh={onSync}>
{budgetedAccounts.length > 0 && (
<AccountHeader name="For Budget" amount={getOnBudgetBalance()} />
)}
{budgetedAccounts.map(acct => (
<AccountCard
account={acct}
Expand All @@ -206,11 +187,13 @@ function AccountList({
/>
))}

<AccountHeader
name="Off budget"
amount={getOffBudgetBalance()}
style={{ marginTop: 30 }}
/>
{offbudgetAccounts.length > 0 && (
<AccountHeader
name="Off budget"
amount={getOffBudgetBalance()}
style={{ marginTop: 30 }}
/>
)}
{offbudgetAccounts.map(acct => (
<AccountCard
account={acct}
Expand Down Expand Up @@ -238,7 +221,7 @@ export default function Accounts() {
);

const { list: categories } = useCategories();
let { getAccounts, replaceModal } = useActions();
let { getAccounts, replaceModal, syncAndDownload } = useActions();

const transactions = useState({});
const navigate = useNavigate();
Expand Down Expand Up @@ -274,6 +257,7 @@ export default function Accounts() {
onAddAccount={() => replaceModal('add-account')}
onSelectAccount={onSelectAccount}
onSelectTransaction={onSelectTransaction}
onSync={syncAndDownload}
/>
</View>
);
Expand Down

0 comments on commit 4a1ca30

Please sign in to comment.