Skip to content

Commit

Permalink
Merge pull request #275 from cabcookie:do-not-show-done-projects-on-d…
Browse files Browse the repository at this point in the history
…ayplan

fix: don't show done projects on daily plans
  • Loading branch information
cabcookie authored Dec 17, 2024
2 parents 0e7eba9 + fe742eb commit df4be0f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 15 deletions.
22 changes: 13 additions & 9 deletions api/useDailyPlans.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ import { handleApiErrors } from "@/api/globals";
import { useToast } from "@/components/ui/use-toast";
import { Context, useContextContext } from "@/contexts/ContextContext";
import { getTodos } from "@/helpers/dailyplans";
import { newDateTimeString, toISODateString } from "@/helpers/functional";
import { newDateTimeString, not, toISODateString } from "@/helpers/functional";
import { JSONContent } from "@tiptap/core";
import { generateClient, SelectionSet } from "aws-amplify/data";
import { format } from "date-fns";
import { map } from "lodash";
import { find, flow, get, identity } from "lodash/fp";
import { filter, find, flow, get, identity, map } from "lodash/fp";
import useSWR from "swr";
const client = generateClient<Schema>();

Expand Down Expand Up @@ -50,6 +49,7 @@ const selectionSet = [
"createdAt",
"projects.id",
"projects.projectId",
"projects.project.done",
"projects.maybe",
"todos.id",
"todos.postPoned",
Expand Down Expand Up @@ -82,11 +82,15 @@ const mapDailyPlan: (dayplan: DailyPlanData) => DailyPlan = ({
context: context || "work",
status,
todos: getTodos(todos),
projects: projects.map(({ id, projectId, maybe }) => ({
recordId: id,
projectId,
maybe: !!maybe,
})),
projects: flow(
identity<typeof projects>,
filter(flow(get("project.done"), not)),
map(({ id, projectId, maybe }) => ({
recordId: id,
projectId,
maybe: !!maybe,
}))
)(projects),
createdAt: new Date(createdAt),
});

Expand All @@ -108,7 +112,7 @@ const fetchDailyPlans =
if (errors) throw errors;
if (!data) throw new Error("No daily tasks list fetched");
try {
return map(data, mapDailyPlan);
return map(mapDailyPlan)(data);
} catch (error) {
console.error("fetchDailyPlans", { error });
throw error;
Expand Down
13 changes: 7 additions & 6 deletions docs/releases/next.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
# Kontext zu Personen im Chatbot berücksichtigen (Version :VERSION)
# Keine erledigten Projekte auf Tagesliste (Version :VERSION)

- Informationen zu Personen werden dem Kontext im Chatbot vermerkt, wenn eine Person erwähnt wird.

## Fehlerbehebungen

- Im Editor für Projektnotizen wird die Ebene der Überschriften nun wieder berücksichtigt.
- In der Tagesaufgabenliste werden erledigte Projekte nicht mehr angezeigt.

## Bekannte Fehler

Expand All @@ -15,6 +11,11 @@
## Geplant

- Chat stabilisieren
- Informationen zu mir im Chat erweitern (offene Todos, offene Projekte, Beziehungen, meine Kunden, Personen, die ich kürzlich getroffen habe, Personen, die demnächst Geburtstag haben, offene Gebetsanliegen)
- Das Konzept, dass zuerst eine Beziehung in der Datenbank angelegt wird, nur um das Formular anzeigen zu können, ist Mist; es erzeugt Waisen in der DB
- Bei den Beziehungen sollten auch Chef-Mitarbeiter Beziehungen abgebildet werden können
- Todos auch in der Projektliste abhaken
- Schnell eine neue Aktivität auch in der Next Actions Liste hinzufügen oder auch in der Tagesaufgabenliste

### Meetings

Expand Down

0 comments on commit df4be0f

Please sign in to comment.