Reputation: 1120
I am new to Polymer and currently learning Polymer 3.0. I am trying to make an app which is working as follows:
Problem:(where i am stuck)
On refreshing page, http://127.0.0.1:8081/playlist1
, the router is loading 404 page and not the playlist page, coz playlistName
is empty. However if i click on any playlist (after refreshing page), the router is working.
I cannot access the updated playlistNames
array in a different function '_routePageChanged'. Code snippet is below.
In handleResponse() func
i am getting correct output (array with list of playlists). But in _routePageChanged() func'
the output is [ ], an empty array.
Question:
My understanding: app-route
element is handled before iron-ajax
element.
How can i access the new value of playlistNames
in _routePageChanged
?
file: my-element.js
class MyApp extends PolymerElement {
static get template() {
return html `
<!-- make api calls to fetch the playlists -->
<iron-ajax
auto
url=""
handle-as = "json"
on-response="handleResponse"
last-response="{{ajaxResponse}}">
</iron-ajax>
<app-location route="{{route}}" url-space-regex="^[[rootPath]]">
</app-location>
<app-route route="{{route}}" pattern="[[rootPath]]:page" data="{{routeData}}" tail="{{subroute}}">
</app-route>
...
<iron-pages selected="[[page]]" attr-for-selected="name" role="main">
<my-view404 name="view404"></my-view404>
<data-send name="playlist" prop1="[[selectedPlaylist]]"></data-send>
</iron-pages>
`;
}
static get properties() {
return {
page: {
type: String,
reflectToAttribute: true,
observer: '_pageChanged'
},
playlists: {
type: Array,
reflectToAttribute: true,
value: 'waiting...',
reflectToAttribute: true
},
playlistNames: {
type: Array,
value: function() {
return [];
}
},
selectedPlaylist: {
type: String,
value: 'selectedPlaylist is empty'
},
routeData: Object,
subroute: Object
};
}
static get observers() {
return [
'_routePageChanged(routeData.page, this.playlistNames.splices)'
];
}
// this function is called on api call
handleResponse(event, request) {
// get all the playlists from the api call response
this.playlists = request.response.playlists;
// get all the playlist names
for(let playlist of this.playlists) {
if(this.playlistNames.length < this.playlists.length) {
// this.playlistNames.push(playlist.name);
this.push('playlistNames', playlist.name);
}
}
console.log('handleResponse playlists', this.playlistNames); // ['playlist1', 'playlist2' ...]
// on refreshing url, if any route is present, then find its id to fetch songs list from api
if(this.routeData.page){
for(let playlist of this.playlists){
if(playlist.name === this.routeData.page){
this.selectedPlaylist = playlist.id;
}
}
}
}
// this func is called on route change or page refresh
_routePageChanged(page, data) {
console.log('routeData.page=', page);
console.log('data=', data); // undefined
console.log('_routePageChanged playlists.length=', this.playlistNames.length); // 0
console.log('_routePageChanged playlists=', this.playlistNames); // empty
if (!page) {
this.page = 'view404';
} else if (["playlist1", "playlist2"].indexOf(page) !== -1) {
//playlistNames is empty[],
// } else if (this.playlistNames.indexOf(page) !== -1) {
this.page = 'playlist';
} else {
this.page = 'view404';
}
}
_pageChanged(page) {
switch (page) {
case 'view404':
import('./my-view404.js');
break;
case 'playlist':
import('./playlist-songs.js');
break;
}
}
}
Upvotes: 3
Views: 109
Reputation: 958
EDIT: Improved answer
As you stated in the comment, when route changes to the view, _routePageChanged()
will always run before handleResponse()
(because handleResponse()
is asynchronous) so whatever handleResponse()
does, will only do after _routePageChanged()
.
If you're gonna follow my solution, you need to first make the changes on the array property playlistNames
observable, so:
Instead of:
this.playlistNames.push(playlist.name);
Use:
this.push('playlistNames', playlist.name);
Solution - If you really need to check on _routePageChanged()
:
You can change _routePageChanged
to observe two properties, instead of just the one property page
. So instead of _routePageChanged(page)
, you can declare the observer as _routePagePlaylistNamesChanged(page, playlistNames)
and have logic in it. This way, the observer will fire anytime any of the two properties change value and you can have logic in it, something like:
_routePagePlaylistNamesChanged(page, playlistNames) {
if(page == "myelement" && playlistNames.length > 0){
//This is correct page and the playlistNames are defined
console.log('_routePagePlaylistNamesChanged playlists', this.playlistNames);
}
}
Upvotes: 3