Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Use condition with map

canBeTransferred$ = this.userService
.getCurrentUser()
.pipe(map((user) => user.data.id === this.ticket.userId || user.data.isCsm || user.data.owner));

I have a observable like above and I want to add another condition

this.ticket.status !== 'Archived'

I am trying like

canBeTransferred$ = this.userService
.getCurrentUser()
.pipe(map((user) => user.data.id === this.ticket.userId || user.data.isCsm || user.data.owner) && this.ticket.status !== 'Archived');

but the compiler is throwing error. How to add it?

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Seems that you put on the wrong place the new condition, it should be like:

canBeTransferred$ = this.userService
.getCurrentUser()
.pipe(map((user) => user.data.id === (this.ticket.userId || user.data.isCsm || 
user.data.owner) && this.ticket.status !== 'Archived'));

Just enclose in parentesis all the existing conditions and add another one next to the closing parentesis.

user.data.id === (this.ticket.userId || user.data.isCsm || 
user.data.owner) && this.ticket.status !== 'Archived'
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading