Skip to content

Instantly share code, notes, and snippets.

@samteb
Last active December 28, 2020 08:38
Show Gist options
  • Save samteb/341c62ce59107aee65d0d722e5edf98e to your computer and use it in GitHub Desktop.
Save samteb/341c62ce59107aee65d0d722e5edf98e to your computer and use it in GitHub Desktop.
this.listTitle$ = this.listLevel$.pipe(
map(listLevel => {
switch (listLevel) {
case ListLevel.AUTHORS:
return 'Trending authors that published few minutes ago!';
case ListLevel.ARTICLES:
return 'Best articles for you!';
default:
break;
}
})
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment