🚚(app-desk) rename and group team Panel

- add folder Panel
- rename PanelTeams to TeamList
- rename PanelTeam to TeamItem
This commit is contained in:
Anthony LC
2024-02-14 10:39:33 +01:00
committed by Anthony LC
parent 5b9d2cccc5
commit 3bf8965209
7 changed files with 24 additions and 35 deletions

View File

@@ -4,7 +4,7 @@ import fetchMock from 'fetch-mock';
import { AppWrapper } from '@/tests/utils'; import { AppWrapper } from '@/tests/utils';
import { PanelTeams } from '../components/PanelTeams'; import { TeamList } from '../components/Panel/TeamList';
window.HTMLElement.prototype.scroll = function () {}; window.HTMLElement.prototype.scroll = function () {};
@@ -26,7 +26,7 @@ describe('PanelTeams', () => {
results: [], results: [],
}); });
render(<PanelTeams />, { wrapper: AppWrapper }); render(<TeamList />, { wrapper: AppWrapper });
expect(screen.getByRole('status')).toBeInTheDocument(); expect(screen.getByRole('status')).toBeInTheDocument();
@@ -49,7 +49,7 @@ describe('PanelTeams', () => {
], ],
}); });
render(<PanelTeams />, { wrapper: AppWrapper }); render(<TeamList />, { wrapper: AppWrapper });
expect(screen.getByRole('status')).toBeInTheDocument(); expect(screen.getByRole('status')).toBeInTheDocument();
@@ -75,7 +75,7 @@ describe('PanelTeams', () => {
], ],
}); });
render(<PanelTeams />, { wrapper: AppWrapper }); render(<TeamList />, { wrapper: AppWrapper });
expect(screen.getByRole('status')).toBeInTheDocument(); expect(screen.getByRole('status')).toBeInTheDocument();
@@ -105,7 +105,7 @@ describe('PanelTeams', () => {
], ],
}); });
render(<PanelTeams />, { wrapper: AppWrapper }); render(<TeamList />, { wrapper: AppWrapper });
expect(screen.getByRole('status')).toBeInTheDocument(); expect(screen.getByRole('status')).toBeInTheDocument();
@@ -117,7 +117,7 @@ describe('PanelTeams', () => {
status: 500, status: 500,
}); });
render(<PanelTeams />, { wrapper: AppWrapper }); render(<TeamList />, { wrapper: AppWrapper });
expect(screen.getByRole('status')).toBeInTheDocument(); expect(screen.getByRole('status')).toBeInTheDocument();

View File

@@ -1,2 +1,3 @@
export * from './useCreateTeam'; export * from './useCreateTeam';
export * from './useTeam'; export * from './useTeam';
export * from './useTeams';

View File

@@ -5,7 +5,7 @@ import { Box, Text } from '@/components';
import { useCunninghamTheme } from '@/cunningham'; import { useCunninghamTheme } from '@/cunningham';
import { PanelActions } from './PanelActions'; import { PanelActions } from './PanelActions';
import { PanelTeams } from './PanelTeams'; import { TeamList } from './TeamList';
export const Panel = () => { export const Panel = () => {
const { t } = useTranslation(); const { t } = useTranslation();
@@ -36,7 +36,7 @@ export const Panel = () => {
</Text> </Text>
<PanelActions /> <PanelActions />
</Box> </Box>
<PanelTeams /> <TeamList />
</Box> </Box>
); );
}; };

View File

@@ -5,11 +5,10 @@ import styled from 'styled-components';
import { Box, StyledLink } from '@/components'; import { Box, StyledLink } from '@/components';
import { useCunninghamTheme } from '@/cunningham'; import { useCunninghamTheme } from '@/cunningham';
import { TeamsOrdering } from '@/features/teams/api/';
import { TeamsOrdering } from '../api/useTeams'; import IconAdd from '@/features/teams/assets/icon-add.svg';
import IconAdd from '../assets/icon-add.svg'; import IconSort from '@/features/teams/assets/icon-sort.svg';
import IconSort from '../assets/icon-sort.svg'; import { useTeamStore } from '@/features/teams/store/useTeamsStore';
import { useTeamStore } from '../store/useTeamsStore';
const ButtonSort = styled(Button)<{ const ButtonSort = styled(Button)<{
$background: CSSProperties['background']; $background: CSSProperties['background'];

View File

@@ -5,15 +5,14 @@ import { useTranslation } from 'react-i18next';
import IconGroup from '@/assets/icons/icon-group.svg'; import IconGroup from '@/assets/icons/icon-group.svg';
import { Box, StyledLink, Text } from '@/components'; import { Box, StyledLink, Text } from '@/components';
import { useCunninghamTheme } from '@/cunningham'; import { useCunninghamTheme } from '@/cunningham';
import { Team } from '@/features/teams/api/';
import { Team } from '../api/types'; import IconNone from '@/features/teams/assets/icon-none.svg';
import IconNone from '../assets/icon-none.svg';
interface TeamProps { interface TeamProps {
team: Team; team: Team;
} }
export const PanelTeam = ({ team }: TeamProps) => { export const TeamItem = ({ team }: TeamProps) => {
const { t } = useTranslation(); const { t } = useTranslation();
const { colorsTokens } = useCunninghamTheme(); const { colorsTokens } = useCunninghamTheme();
const { const {

View File

@@ -4,12 +4,10 @@ import { useTranslation } from 'react-i18next';
import { Box, Text } from '@/components'; import { Box, Text } from '@/components';
import { InfiniteScroll } from '@/components/InfiniteScroll'; import { InfiniteScroll } from '@/components/InfiniteScroll';
import { Team, useTeams } from '@/features/teams/api/';
import { useTeamStore } from '@/features/teams/store/useTeamsStore';
import { Team } from '../api/types'; import { TeamItem } from './TeamItem';
import { useTeams } from '../api/useTeams';
import { useTeamStore } from '../store/useTeamsStore';
import { PanelTeam } from './PanelTeam';
interface PanelTeamsStateProps { interface PanelTeamsStateProps {
isLoading: boolean; isLoading: boolean;
@@ -17,11 +15,7 @@ interface PanelTeamsStateProps {
teams?: Team[]; teams?: Team[];
} }
const PanelTeamsState = ({ const TeamListState = ({ isLoading, isError, teams }: PanelTeamsStateProps) => {
isLoading,
isError,
teams,
}: PanelTeamsStateProps) => {
const { t } = useTranslation(); const { t } = useTranslation();
if (isError) { if (isError) {
@@ -57,10 +51,10 @@ const PanelTeamsState = ({
); );
} }
return teams.map((team) => <PanelTeam team={team} key={team.id} />); return teams.map((team) => <TeamItem team={team} key={team.id} />);
}; };
export const PanelTeams = () => { export const TeamList = () => {
const ordering = useTeamStore((state) => state.ordering); const ordering = useTeamStore((state) => state.ordering);
const { const {
data, data,
@@ -92,11 +86,7 @@ export const PanelTeams = () => {
className="p-0 mt-0" className="p-0 mt-0"
role="listbox" role="listbox"
> >
<PanelTeamsState <TeamListState isLoading={isLoading} isError={isError} teams={teams} />
isLoading={isLoading}
isError={isError}
teams={teams}
/>
</InfiniteScroll> </InfiniteScroll>
</Box> </Box>
); );

View File

@@ -1,2 +1,2 @@
export * from './Panel'; export * from './Panel/Panel';
export * from './TeamInfo'; export * from './TeamInfo';