31 lines
850 B
TypeScript
31 lines
850 B
TypeScript
import { AppCategory, IAppCategoryProps } from "./appCategory";
|
|
import { IAppProps } from "./app";
|
|
|
|
import { Headline, ListContainer } from "./elements";
|
|
|
|
export interface IAppListProps {
|
|
categories: Array<IAppCategoryProps>;
|
|
apps: Array<IAppProps>;
|
|
}
|
|
|
|
/**
|
|
* Renders one list containing all app categories and uncategorized apps
|
|
* @param {IAppListProps} props - The props of the given list of apps
|
|
*/
|
|
const AppList = ({ categories, apps }: IAppListProps) => (
|
|
<ListContainer>
|
|
<Headline>Applications</Headline>
|
|
{categories &&
|
|
categories.map(({ name, items }, idx) => (
|
|
<AppCategory key={[name, idx].join("")} name={name} items={items} />
|
|
))}
|
|
{apps && (
|
|
<AppCategory
|
|
name={categories ? "Uncategorized apps" : ""}
|
|
items={apps}
|
|
/>
|
|
)}
|
|
</ListContainer>
|
|
);
|
|
|
|
export default AppList;
|