2023-01-11 13:28:42 +08:00
|
|
|
import store from './store';
|
|
|
|
|
|
|
|
export function getCurrentAccount() {
|
|
|
|
const accounts = store.local.getJSON('accounts') || [];
|
|
|
|
const currentAccount = store.session.get('currentAccount');
|
|
|
|
const account =
|
|
|
|
accounts.find((a) => a.info.id === currentAccount) || accounts[0];
|
|
|
|
return account;
|
|
|
|
}
|
2023-01-13 15:30:09 +08:00
|
|
|
|
|
|
|
export function getCurrentAccountNS() {
|
|
|
|
const account = getCurrentAccount();
|
|
|
|
const {
|
|
|
|
instanceURL,
|
|
|
|
info: { id },
|
|
|
|
} = account;
|
|
|
|
return `${id}@${instanceURL}`;
|
|
|
|
}
|