mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 20:59:02 +00:00
tabs: #84 include page icons in title
This commit is contained in:
parent
1f802e5146
commit
64c88f5c42
@ -216,7 +216,38 @@ module.exports = (store, __exports) => {
|
||||
|
||||
if (tabsEnabled) {
|
||||
let tab_title = '';
|
||||
const TITLE_OBSERVER = new MutationObserver(() =>
|
||||
__electronApi.setWindowTitle('notion.so')
|
||||
);
|
||||
__electronApi.setWindowTitle = (title) => {
|
||||
const $container =
|
||||
document.querySelector(
|
||||
'.notion-peek-renderer [style="padding-left: calc(126px + env(safe-area-inset-left)); padding-right: calc(126px + env(safe-area-inset-right)); max-width: 100%; width: 100%;"]'
|
||||
) ||
|
||||
document.querySelector(
|
||||
'.notion-frame [style="padding-left: calc(96px + env(safe-area-inset-left)); padding-right: calc(96px + env(safe-area-inset-right)); max-width: 100%; margin-bottom: 8px; width: 100%;"]'
|
||||
) ||
|
||||
document.querySelector('.notion-peak-renderer') ||
|
||||
document.querySelector('.notion-frame'),
|
||||
icon = $container.querySelector(
|
||||
'.notion-record-icon [aria-label]:not([src^="data:"])'
|
||||
),
|
||||
text = $container.querySelector('[placeholder="Untitled"]');
|
||||
title =
|
||||
(icon ? `<img src="${icon.getAttribute('src')}">` : '') +
|
||||
(text
|
||||
? text.innerText
|
||||
: [
|
||||
setTimeout(() => __electronApi.setWindowTitle(title), 250),
|
||||
title,
|
||||
][1]);
|
||||
TITLE_OBSERVER.disconnect();
|
||||
TITLE_OBSERVER.observe($container, {
|
||||
childList: true,
|
||||
subtree: true,
|
||||
characterData: true,
|
||||
attributes: true,
|
||||
});
|
||||
if (tab_title !== title) {
|
||||
tab_title = title;
|
||||
electron.ipcRenderer.sendToHost('enhancer:set-tab-title', title);
|
||||
|
@ -130,6 +130,10 @@ body,
|
||||
border-bottom: 4px solid var(--theme--table-border);
|
||||
opacity: 0.8;
|
||||
}
|
||||
#tabs .tab img {
|
||||
width: 1em;
|
||||
margin: 0 0.5em -3px 0.1em;
|
||||
}
|
||||
#tabs .tab:first-child {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
@ -744,7 +744,11 @@ module.exports = (store, __exports) => {
|
||||
this.views.tabs[id] = $tab;
|
||||
},
|
||||
},
|
||||
React.createElement('span', {}, title),
|
||||
React.createElement('span', {
|
||||
dangerouslySetInnerHTML: {
|
||||
__html: title,
|
||||
},
|
||||
}),
|
||||
React.createElement(
|
||||
'span',
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user