Select the types of activity you want to include in your feed.
feat: done command parsing
starting to come together I realized I'm going to have to seperate selection and filter state And do actions based on that, some how show that different context depending on which action is selected
···8585 const todos = useQuery(ctx, "SELECT * FROM todos where completed = 0").data;
8686 const [newText, setNewText] = useState("");
8787 const [rowSelection, setRowSelection] = useState({});
8888+ // TODO:
8989+ // We need to seperate selection state
9090+ // From filter state
9191+ // Since we don't want selection to impact filter when we're filtering
9292+ // We want add to our selection state while we filter
9393+ // But selection state should apply to modify and done
9494+ // (but probably not add?)
9595+ const [selectionContext, setSelectionContext] = useState({});
8896 const [currentAction, setCurrentAction] = useState("add");
89979098 const handleActionChange = (action: string) => {