-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
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
Get area and floor by alias #126150
Get area and floor by alias #126150
Conversation
@balloob you commented on previous PR by Mike, could you check this one please? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some first look issue. Same for floors.
@callback | ||
def async_get_area_by_name(self, name: str) -> AreaEntry | None: | ||
"""Get area by name.""" | ||
return self.areas.get_by_name(name) | ||
"""Get area by name or alias.""" | ||
if area := self.areas.get_by_name(name): | ||
return area | ||
areas_list = self.areas.get_areas_for_alias(name) | ||
return areas_list[0] if areas_list else None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method is used by other methods in this class, like async_create
, therefore you cannot change it here without consequences.
What you probably wanted to do is to create a separate method for your new purpose and call it in templates.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method is used by other methods in this class, like
async_create
, therefore you cannot change it here without consequences.What you probably wanted to do is to create a separate method for your new purpose and call it in templates.
That's what i suggested in Discord to devs, but we agreed to use same method.
P.S. here's Discord link
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Who is devs
? Who is we
?
If there are some additional decisions made, they should be documented in the PR.
The code, as it is now, is buggy, and cannot be merged in this state.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Who is
devs
? Who iswe
?If there are some additional decisions made, they should be documented in the PR.
The code, as it is now, is buggy, and cannot be merged in this state.
I posted link to Discord discussion.
As you may see in description, this approach was originally proposed by @synesthesiam . However, that PR was closed because it was using unoptimized for
-loops. I used index array for it, but the logic remained the same.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see now that in the previous PR balloob
had the same reservations about this approach as I do. This cannot be merged like that.
If you want to, we can discuss it further on Discord.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see now that in the previous PR
balloob
had the same reservations about this approach as I do. This cannot be merged like that.If you want to, we can discuss it further on Discord.
I'd love to! :) I actually missed that comment by Paulus!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wrote to you on Discord.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Please be patient, I'm still in the process of trying to get the right people to look at it |
Oh, it has been quite some time. And some changes along the way. Still I think it looks OK. But please make sure it merges cleanly on current dev and CI still passes. |
Want me to merge dev? |
Yes. It's been 4 months, there's been some changes, let's make sure CI still passes. |
Remember, that CI can fail randomly too :) |
@arturpragacz your changes to the name normalization removed normalize_name method, that i used for aliases too. Should i use normalize_name from |
Use the one from the registry. |
Done. |
Any news? :) Another month... |
Hi there @formatBCE 👋 Thanks for the pull request. I've marked it as draft for a moment. I want to take this one into the core architectural meeting to check with the others. We had a discussion on the linked previous pull request by Mike, so I want to make sure all concerns are addressed in this pull request. Will get back to you later this week 👍 ../Frenck |
2685503
to
ec0ca01
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your patience on this one @formatBCE 🙏
We have discussed it with the team, and agreed this approach is acceptable. Reviewed the implementation and looks good as well 👍
Thanks for this one 🥇
../Frenck
Woohoo! Glad to help! :) |
Proposed change
Add ability to get area and floor by alias, when using corresponding
get_$_by_name
function.This is another take on changes, proposed in this PR by @synesthesiam
Type of change
Additional information
Checklist
ruff format homeassistant tests
)If user exposed functionality or configuration variables are added/changed:
If the code communicates with devices, web services, or third-party tools:
Updated and included derived files by running:
python3 -m script.hassfest
.requirements_all.txt
.Updated by running
python3 -m script.gen_requirements_all
.To help with the load of incoming pull requests: