Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
536 B

import { atom, computed } from 'nanostores';
import type { UserTeamItem } from '../components/TeamDropdown/TeamDropdown';
export const $teamList = atom<UserTeamItem[]>([]);
export const $currentTeam = atom<UserTeamItem | undefined>();
export const $currentTeamRole = computed($currentTeam, (team) => team?.role);
export const $isCurrentTeamAdmin = computed($currentTeamRole, (role) =>
['admin'].includes(role!)
);
export const $canManageCurrentTeam = computed($currentTeamRole, (role) =>
['admin', 'manager'].includes(role!)
);