Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not show HalfDays if corresponding PresenceType is inactive #169

Merged
merged 5 commits into from
May 5, 2020

Conversation

caebr
Copy link
Collaborator

@caebr caebr commented May 4, 2020

Testen mit test2@test.ch, BsBZI

@caebr caebr requested a review from hupf May 4, 2020 07:44
@caebr caebr linked an issue May 4, 2020 that may be closed by this pull request
Copy link
Collaborator

@hupf hupf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Würde die Checks positiv aufbauen (siehe Kommentare), sieht ansonsten gut aus.
Mit GymHofwyl konnte ich beim Edit den Fall wo der Halbtag aktiv ist nicht testen, da dieser NeedsConfirmation: false hat und rausgefiltert wird. Hast du dies einmal in echt testen können, ob der Halbtag angezeigt wird?

(c) => c !== Category.HalfDay
);
}
});
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ich würde versuchen dies positiv zu machen, d.h. die Halbtag-Option hinzufügen, wenn aktiv. Sonst poppt sie kurz auf und verschwindet wieder, je nachdem wie lange der Request dauer, nicht? Ev. könntest du gleich den ganzen categories Array dynamisch setzen...

this.absenceTypes$
.pipe(
map((types) =>
types.filter((t) => isHalfDay(t, this.settings) && t.Active)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Micro-Improvement: hier könntest du ein Boolean(types.find((t) => isHalfDay(t, this.settings))?.Active) machen und gleich auf einen boolean mappen. Das hat auch zum Vorteil, dass das Iterieren abgebrochen wir, sobald der Halfday gefunden wird.

this.presenceTypes$
.pipe(
map((types) =>
types.filter((t) => isHalfDay(t, this.settings) && t.Active)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hier das gleiche wie beim Edit.

if (types.length === 0) {
this.columns = this.columns.filter((c) => c.key !== 'TotalHalfDays');
}
});
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Auch hier, würde ich versuchen dies positiv zu machen.

@caebr caebr force-pushed the feature/125-presence-type-half-day branch from b7c70bd to cca117e Compare May 4, 2020 14:45
@caebr
Copy link
Collaborator Author

caebr commented May 4, 2020

Mit GymHofwyl konnte ich beim Edit den Fall wo der Halbtag aktiv ist nicht testen, da dieser NeedsConfirmation: false hat und rausgefiltert wird. Hast du dies einmal in echt testen können, ob der Halbtag angezeigt wird?

Nein bisher nicht. Ich habe im Ticket nachgefragt, wie ich das testen kann.

);
.subscribe((activeHalfDay) => {
if (activeHalfDay) {
this.categories.push(Category.HalfDay);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hier müsstest du noch die Reihenfolge beachten (so kommt der Halbtag am Schluss).

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternativ könntest du auch einen availableCategories Array mit allen Kategorien machen und einen activeCategories für den du setzt, indem du die availableCategories filterst...

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Würdest du dies dann für die die Columns nicht auch gleich so machen (available und dann filtern nach active)? Damit es einheitlich ist? Aber dann sind wir zurück bei den negativen Checks :)

this.columns = this.columns.filter((c) => c.key !== 'TotalHalfDays');
.subscribe((activeHalfDay) => {
if (activeHalfDay) {
this.columns.push({ key: 'TotalHalfDays', label: 'halfday' });
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Du kannst den ReadonlyArray behalten und immutable arbeiten: this.columns = [...this.columns, { key: 'TotalHalfDays', label: 'halfday' }]

@caebr caebr force-pushed the feature/125-presence-type-half-day branch from 48cc457 to 82def49 Compare May 5, 2020 09:21
@caebr caebr merged commit 1de9f20 into master May 5, 2020
@caebr caebr deleted the feature/125-presence-type-half-day branch May 5, 2020 09:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Freien Halbtag nicht anzeigen wenn inaktiv (0.5PT)
2 participants