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

move sortable and no_index to the field field abstract… #118

Merged
merged 4 commits into from
May 6, 2021

Conversation

leibale
Copy link
Contributor

@leibale leibale commented Apr 13, 2021

will fix #34 and #116

@leibale leibale requested a review from MeirShpilraien April 13, 2021 14:23
@leibale leibale self-assigned this Apr 13, 2021
if no_index and not sortable:
raise ValueError('Non-Sortable non-Indexable fields are ignored')
Field.__init__(self, name, *args)
Field.__init__(self, name, *args, **kwargs)

Choose a reason for hiding this comment

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

Usually you put the call to the father as the first call in the constructor. Maybe we can call it first and create an add_arg function of the father that the child can use to add the extra arguments after? WDYT?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

why not just use self.args.append directly (instead of adding the add_arg function)?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Also, the sortable and no_index flags (which being added in Field.__init__) should be at the end

Choose a reason for hiding this comment

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

Exactly because of that, if you expose it as a method then it's an API and the father can decide to implement it anyway it wants. He can save it on a separate array and manage the arguments positions (for example)..

Copy link

@MeirShpilraien MeirShpilraien left a comment

Choose a reason for hiding this comment

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

Looks good.
Small comment, let me know what you think.
Also, we need to add tests to verify we can add sortable and no_index on all fields type.

@leibale leibale requested a review from MeirShpilraien April 13, 2021 18:23
@gkorland gkorland linked an issue May 4, 2021 that may be closed by this pull request
@sonarqubecloud
Copy link

sonarqubecloud bot commented May 4, 2021

Kudos, SonarCloud Quality Gate passed!

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@gkorland gkorland merged commit 5aa42a6 into master May 6, 2021
@gkorland gkorland deleted the abstract-field-options branch May 6, 2021 22:07
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.

Sortable option missing for Tag fields Python client does not allow to create Text field with noindex
3 participants