mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
28 lines
863 B
TypeScript
28 lines
863 B
TypeScript
import React from 'react';
|
|
import { Stack } from 'office-ui-fabric-react';
|
|
import { TodoListItem } from './TodoListItem';
|
|
import { Store, FilterTypes } from '../store';
|
|
|
|
interface TodoListProps {
|
|
complete: (id: string) => void;
|
|
remove: (id: string) => void;
|
|
todos: Store['todos'];
|
|
filter: FilterTypes;
|
|
edit: (id: string, label: string) => void;
|
|
}
|
|
|
|
export const TodoList = (props: TodoListProps) => {
|
|
const { filter, todos, complete, remove, edit } = props;
|
|
const filteredTodos = Object.keys(todos).filter(id => {
|
|
return filter === 'all' || (filter === 'completed' && todos[id].completed) || (filter === 'active' && !todos[id].completed);
|
|
});
|
|
|
|
return (
|
|
<Stack gap={10}>
|
|
{filteredTodos.map(id => (
|
|
<TodoListItem key={id} id={id} todos={todos} complete={complete} remove={remove} edit={edit} />
|
|
))}
|
|
</Stack>
|
|
);
|
|
};
|