mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-03 12:19:02 +00:00
chore: deprecate truncated-titles
This commit is contained in:
parent
2365b9043c
commit
daee8c70f5
@ -1,66 +0,0 @@
|
||||
/**
|
||||
* notion-enhancer: truncated titles
|
||||
* (c) 2021 admiraldus (https://github.com/admiraldus)
|
||||
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
||||
* (https://notion-enhancer.github.io/) under the MIT license
|
||||
*/
|
||||
|
||||
export default async function ({ web, components }, db) {
|
||||
const enhanceTableTitles = await db.get(['tables']),
|
||||
enhanceTimelineItems = await db.get(['timelines']),
|
||||
tableCellSelector = '.notion-table-view-header-cell',
|
||||
tableTitleSelector = `${tableCellSelector} div[style*="text-overflow"]`,
|
||||
timelineItemSelector = '.notion-timeline-item',
|
||||
$elements = [];
|
||||
|
||||
const addTooltips = () => {
|
||||
if (enhanceTableTitles) {
|
||||
document.querySelectorAll(tableTitleSelector).forEach(($tableTitle) => {
|
||||
if ($elements.includes($tableTitle)) return;
|
||||
|
||||
if ($tableTitle.scrollWidth > $tableTitle.clientWidth) {
|
||||
components.addTooltip(
|
||||
$tableTitle.parentElement.parentElement.parentElement,
|
||||
web.html`<span><b>${web.escape($tableTitle.innerText)}</b></span>`,
|
||||
750
|
||||
);
|
||||
$elements.push($tableTitle);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (enhanceTimelineItems) {
|
||||
document.querySelectorAll(timelineItemSelector).forEach(($timelineItem) => {
|
||||
const $title = $timelineItem.nextElementSibling.firstElementChild;
|
||||
$title.style.position = 'absolute';
|
||||
$title.style.left = $timelineItem.style.left;
|
||||
|
||||
if ($elements.includes($timelineItem)) return;
|
||||
$elements.push($timelineItem);
|
||||
|
||||
$title.style.width = $timelineItem.clientWidth + 'px';
|
||||
$title.firstElementChild.firstElementChild.style.maxWidth =
|
||||
$timelineItem.clientWidth + 'px';
|
||||
$timelineItem.addEventListener('mouseover', (event) => {
|
||||
$title.style.width = '100%';
|
||||
$title.firstElementChild.firstElementChild.style.maxWidth = '400px';
|
||||
});
|
||||
$timelineItem.addEventListener('mouseout', async (event) => {
|
||||
if (!$timelineItem.matches(':hover')) {
|
||||
$title.style.width = $timelineItem.clientWidth + 'px';
|
||||
$title.firstElementChild.firstElementChild.style.maxWidth =
|
||||
$timelineItem.clientWidth + 'px';
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
await web.whenReady();
|
||||
addTooltips();
|
||||
web.addDocumentObserver(addTooltips, [
|
||||
tableCellSelector,
|
||||
timelineItemSelector,
|
||||
`${timelineItemSelector} + div > :first-child`,
|
||||
]);
|
||||
}
|
@ -1,33 +0,0 @@
|
||||
{
|
||||
"name": "truncated titles",
|
||||
"id": "1794c0bd-7b96-46ad-aa0b-fc4bd76fc7fb",
|
||||
"version": "0.2.0",
|
||||
"description": "see the full text of a truncated title on hover.",
|
||||
"preview": "truncated-titles.jpg",
|
||||
"tags": ["extension", "layout"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "admiraldus",
|
||||
"homepage": "https://github.com/admiraldus",
|
||||
"avatar": "https://raw.githubusercontent.com/admiraldus/admiraldus/main/module.gif"
|
||||
}
|
||||
],
|
||||
"js": {
|
||||
"client": ["client.mjs"]
|
||||
},
|
||||
"css": {},
|
||||
"options": [
|
||||
{
|
||||
"type": "toggle",
|
||||
"key": "tables",
|
||||
"label": "table titles",
|
||||
"value": true
|
||||
},
|
||||
{
|
||||
"type": "toggle",
|
||||
"key": "timelines",
|
||||
"label": "timeline items",
|
||||
"value": true
|
||||
}
|
||||
]
|
||||
}
|
Binary file not shown.
Before Width: | Height: | Size: 5.6 KiB |
Loading…
Reference in New Issue
Block a user