Description
I am using Polymer #2.0-preview version
iron-pages changing the visible pages dynamically. I tried to achieve this by data binding the selectable attribute via selectable="[[_calculatePageVisibility(user)]]" inside the function I was doing the following:
_calculatePageVisibility(user){
if(this.user)
return '.default, .useronly';
else
return '.default';
}
In debugger, I could see that the ironPage.selectable has changed as per the user state, but the ironPage.items is not getting updated. Please help me how to achieve this, and if I am doing something wrong in the process! (edited)
I've also tried to do the ironPage.forceSynchronousItemUpdate() in the _onUserChange observer.
_onUserChange(user){
var ironPage = this.root.querySelector('iron-pages');
ironPage.forceSynchronousItemUpdate();
ironPage.notifyResize();
this.notifyPath('_pageData.page');
}
still no luck! kindly help.
Expected outcome
On user login, and once the user property is set, the visible pages list should change because the _calculatePageVisibility function is selecting the pages based on user logged in or not. But the change is not reflecting though the selectable property is getting updated.
Actual outcome
Once user logged in the visibility of the the pages change as expected by the selectable.
Steps to reproduce
- Put a
iron-pages element in the page.
- Add say, 5 DIVs in the iron-pages with different classes say
default for 3 of them and userOnly for two of them
- Apply
selectable attribute for iron-pages as the function _calculatePageVisibility provided above.
- base the
_calculatePageVisibility on some known user state (say a toggle button on the same page).
- Then toggle the page and see the DIV visibility
Browsers Affected
Tested in Chrome and Firefox
Description
I am using Polymer #2.0-preview version
iron-pages changing the visible pages dynamically. I tried to achieve this by data binding the
selectableattribute viaselectable="[[_calculatePageVisibility(user)]]"inside the function I was doing the following:In debugger, I could see that the ironPage.selectable has changed as per the user state, but the ironPage.items is not getting updated. Please help me how to achieve this, and if I am doing something wrong in the process! (edited)
I've also tried to do the
ironPage.forceSynchronousItemUpdate()in the_onUserChangeobserver.still no luck! kindly help.
Expected outcome
On user login, and once the user property is set, the visible pages list should change because the
_calculatePageVisibilityfunction is selecting the pages based on user logged in or not. But the change is not reflecting though the selectable property is getting updated.Actual outcome
Once user logged in the visibility of the the pages change as expected by the selectable.
Steps to reproduce
iron-pageselement in the page.defaultfor 3 of them anduserOnlyfor two of themselectableattribute for iron-pages as the function_calculatePageVisibilityprovided above._calculatePageVisibilityon some known user state (say a toggle button on the same page).Browsers Affected
Tested in Chrome and Firefox