Focus tab of Mastodon when clicking notification (#2989)
This commit is contained in:
		
							parent
							
								
									c78e8c01a3
								
							
						
					
					
						commit
						88fd5cb688
					
				@ -50,7 +50,11 @@ export function updateNotifications(notification, intlMessages, intlLocale) {
 | 
				
			|||||||
      const title = new IntlMessageFormat(intlMessages[`notification.${notification.type}`], intlLocale).format({ name: notification.account.display_name.length > 0 ? notification.account.display_name : notification.account.username });
 | 
					      const title = new IntlMessageFormat(intlMessages[`notification.${notification.type}`], intlLocale).format({ name: notification.account.display_name.length > 0 ? notification.account.display_name : notification.account.username });
 | 
				
			||||||
      const body  = (notification.status && notification.status.spoiler_text.length > 0) ? unescapeHTML(notification.status.spoiler_text) : unescapeHTML(notification.status ? notification.status.content : '');
 | 
					      const body  = (notification.status && notification.status.spoiler_text.length > 0) ? unescapeHTML(notification.status.spoiler_text) : unescapeHTML(notification.status ? notification.status.content : '');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      new Notification(title, { body, icon: notification.account.avatar, tag: notification.id });
 | 
					      const notify = new Notification(title, { body, icon: notification.account.avatar, tag: notification.id });
 | 
				
			||||||
 | 
					      notify.addEventListener('click', () => {
 | 
				
			||||||
 | 
					        window.focus();
 | 
				
			||||||
 | 
					        notify.close();
 | 
				
			||||||
 | 
					      });
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user