Skip to content

Instantly share code, notes, and snippets.

@ludeeus
Last active April 18, 2020 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ludeeus/b7acc6c560c9e59b70de20cb590cdf4f to your computer and use it in GitHub Desktop.
Save ludeeus/b7acc6c560c9e59b70de20cb590cdf4f to your computer and use it in GitHub Desktop.
Home Assistant Sidebar Access Management
/*
Use the format "panel-name" (from URL), and a list of user names
In this example if the username "hidden" does not exist, no one will see these entries.
All entries not in the UserAccess list are not modified.
NB!: This will only hide the sidebar entry, if the user have the direct URL to the panel they still will be able to see it.
Place it as /www/sidebarmanager.js
And include it in configuration.yaml like this:
frontend:
extra_module_url:
- /local/sidebarmanager.js
*/
customElements.whenDefined('hui-root').then(() => {
let hass = document.querySelector("home-assistant").hass
let entries = document.querySelector("home-assistant").shadowRoot.querySelector("home-assistant-main").shadowRoot.querySelector("app-drawer-layout").querySelector("app-drawer").querySelector("ha-sidebar").shadowRoot.querySelectorAll("a")
let UserAccess = {
"lovelace": ["hidden"],
"map": ["hidden"],
"history": ["hidden"],
"logbook": ["hidden"],
}
for (let child of entries) {
const panel = child.dataset.panel
if (UserAccess[panel]) {
if (!UserAccess[panel].includes(hass.user.name)) {
child.style.display = "none"
}
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment