computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
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.
16 lines
536 B
16 lines
536 B
2 years ago
|
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!)
|
||
|
);
|