1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-23 18:13:49 +01:00
onion/js/utils/dom_utils.js

31 lines
639 B
JavaScript
Raw Normal View History

'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;
}