mirror of
https://github.com/ascribe/onion.git
synced 2024-12-23 09:50:31 +01:00
31 lines
639 B
JavaScript
31 lines
639 B
JavaScript
'use strict';
|
|
|
|
|
|
/**
|
|
* Get the number of unread notifications in the title.
|
|
*
|
|
* @return {int} the number of unread notifications
|
|
*/
|
|
export function getUnreadCount() {
|
|
const match = document.title.match(/^\((\d+)\)/);
|
|
return match ? match[1] : null;
|
|
}
|
|
|
|
|
|
/**
|
|
* Set the title in the browser window while keeping the unread notification count (if any).
|
|
*
|
|
* @return {string} the new document title
|
|
*/
|
|
export function setDocumentTitle(title) {
|
|
const count = getUnreadCount();
|
|
let newTitle = title;
|
|
|
|
if (count) {
|
|
newTitle = `(${count}) ` + newTitle;
|
|
}
|
|
|
|
document.title = newTitle;
|
|
return newTitle;
|
|
}
|