refs #4653 Save the last account and go to there when opened
This commit is contained in:
parent
293c680b1c
commit
189996a34a
|
@ -14,7 +14,9 @@ export default function Page() {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (router.query.id) {
|
if (router.query.id) {
|
||||||
console.log(router)
|
if (router.query.id && typeof localStorage !== 'undefined') {
|
||||||
|
localStorage.setItem('lastAccount', router.query.id as string)
|
||||||
|
}
|
||||||
const f = async () => {
|
const f = async () => {
|
||||||
const a = await db.accounts.get(parseInt(router.query.id as string))
|
const a = await db.accounts.get(parseInt(router.query.id as string))
|
||||||
if (a) {
|
if (a) {
|
||||||
|
|
|
@ -11,7 +11,16 @@ export default function Index() {
|
||||||
const f = async () => {
|
const f = async () => {
|
||||||
const accounts = await db.accounts.toArray()
|
const accounts = await db.accounts.toArray()
|
||||||
if (accounts.length > 0) {
|
if (accounts.length > 0) {
|
||||||
router.push(`/accounts/${accounts[0].id}`)
|
if (typeof localStorage !== 'undefined') {
|
||||||
|
const lastAccount = localStorage.getItem(`lastAccount`)
|
||||||
|
if (lastAccount) {
|
||||||
|
router.push(`/accounts/${lastAccount}`)
|
||||||
|
} else {
|
||||||
|
router.push(`/accounts/${accounts[0].id}`)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
router.push(`/accounts/${accounts[0].id}`)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
f()
|
f()
|
||||||
|
|
Loading…
Reference in New Issue