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

new Select to collect ConceptElements from values #2606

Merged
merged 10 commits into from
Aug 2, 2022

Conversation

awildturtok
Copy link
Collaborator

No description provided.

@awildturtok awildturtok force-pushed the feature/selects-on-concept-columns branch from e86fbea to b49f15c Compare July 14, 2022 13:48
@awildturtok awildturtok requested a review from thoniTUB July 25, 2022 09:33
Copy link
Collaborator

@thoniTUB thoniTUB left a comment

Choose a reason for hiding this comment

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

Ich bin mir hier noch nicht sicher, es gibt glaube ich viele Wege, das umzusetzen.

Es gibt noch keinen Test dafür ;)

Comment on lines 18 to 21
@JsonBackReference
@JsonIgnore
@Setter
private TreeConcept concept;
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 hier auch getHolder() nutzen, dann ist es eine Backreference weniger. Da ist die Typsierung zwar nicht so gut, aber vielleicht lässt sich da TreeConcept implizit erzwingen

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Das wäre dann ja auch nur eine Validierung, gute Idee.

Comment on lines 23 to 30
@Override
public Aggregator<?> createAggregator() {
if(resolved){
return new ConceptElementsAggregator(concept);
}

return new ConceptValuesAggregator(concept);
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

Ist es nicht besser zwei Select CPSTypes zu erstellen anstatt der Fallunterscheidung?

Copy link
Collaborator

Choose a reason for hiding this comment

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

Oder wäre es möglich anstatt des ConceptValuesAggregator einen InternToExternMapper zu nutzen und dann auf Manager-Seite das Mapping zu den Values zu machen?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Dann müsste man da die Baumlogik implementieren

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Ist es nicht besser zwei Select CPSTypes zu erstellen anstatt der Fallunterscheidung?

Das weiß ich selber auch nicht. Ich finde hier wo sie echt fast das gleiche machen es als eins umzusetzen besser weil man dann in der conf nicht nachdenken muss welche es gibt, sondern nur die Frage stellen muss ob man die Baumelemente oder die Werte haben möchte.

@delete-merged-branch delete-merged-branch bot deleted the branch develop July 26, 2022 10:37
@awildturtok awildturtok changed the base branch from feature/element-id-in-concept-column to develop July 26, 2022 13:22
@awildturtok awildturtok requested a review from thoniTUB July 26, 2022 13:22
thoniTUB
thoniTUB previously approved these changes Aug 2, 2022
Copy link
Collaborator

@thoniTUB thoniTUB left a comment

Choose a reason for hiding this comment

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

Nice. habe nur eine anmerkung wegen eines names

Comment on lines +29 to +33
@JsonIgnore
@ValidationMethod(message = "Holder must be TreeConcept.")
public boolean isHolderTreeConcept() {
return getHolder().findConcept() instanceof TreeConcept;
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

👌

@Data
public class ConceptColumnSelect extends UniversalSelect {

private boolean resolved = false;
Copy link
Collaborator

Choose a reason for hiding this comment

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

Würde ich umbenennen, z.B. in outputId. resolved heißt im code eigentlich, dass eine id aufgelöst wurde. hier heißt es das man eine Id bekommt. Das ist gut fürs hirntraining :D

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

resolved heißt im code eigentlich, dass eine id aufgelöst wurde. hier heißt es das man eine Id bekommt.

Aber hier wird doch auch die resolved-te id ausgegeben, das passt doch zusammen oder?

Was hälst du von asIds ? Dann steht das da auch in der conf ordentlich drin

Copy link
Collaborator

Choose a reason for hiding this comment

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

Das klingt gut :)

@awildturtok awildturtok merged commit 3b140d5 into develop Aug 2, 2022
@delete-merged-branch delete-merged-branch bot deleted the feature/selects-on-concept-columns branch August 2, 2022 12:14
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.

2 participants