Changes for page Helpers
Last modified by Benjamin Fischer on 2025/06/17 11:57
From version 1.1
edited by Benjamin Fischer
on 2025/05/15 13:30
on 2025/05/15 13:30
Change comment:
There is no comment for this version
To version 1.17
edited by Benjamin Fischer
on 2025/05/15 16:57
on 2025/05/15 16:57
Change comment:
There is no comment for this version
Summary
-
Objects (0 modified, 1 added, 0 removed)
Details
- XWiki.JavaScriptExtension[0]
-
- Caching policy
-
... ... @@ -1,0 +1,1 @@ 1 +default - Code
-
... ... @@ -1,0 +1,138 @@ 1 +const livetableRowHook = {}; 2 + 3 +((() => { 4 + const tagCols = {}; 5 + 6 + document.observe('xwiki:livetable:loading', () => { 7 + for (const tab of document.querySelectorAll(".xwiki-livetable")) { 8 + const tableId = tab.id; 9 + if (!tableId) continue; 10 + 11 + // coulmn data sources 12 + const conf = JSON.parse(tab.dataset.settings); 13 + 14 + tagCols[tableId] = (conf.columnDescriptors.tags ?? { aux: [] }).aux ?? [["Tags", true]]; 15 + tagCols[tableId].forEach(([name], i) => { 16 + const cn = `tags-${i}`; 17 + conf.columns.splice(conf.columns.indexOf("tags"), 1, cn); 18 + conf.columnDescriptors[cn] = { 19 + displayName: name, 20 + headerClass: "tagsCol", 21 + html: true, 22 + sortable: false, 23 + }; 24 + }); 25 + tab.dataset.settings = JSON.stringify(conf); 26 + 27 + // column headers 28 + tab.querySelectorAll(".xwiki-livetable-display-header .tagsCol").forEach( 29 + (v, i) => v.textContent = tagCols[tableId][i][0] 30 + ); 31 + 32 + // filter fields 33 + tab.querySelectorAll(".xwiki-livetable-display-header-filter input[type=text]").forEach( 34 + v => v.placeholder = "Filter ..." 35 + ); 36 + 37 + // column tooltips 38 + tab.querySelectorAll(".xwiki-livetable-display-header-text").forEach( 39 + el => { 40 + const t = el.textContent.trim(); 41 + const c = conf.columnDescriptors[t]?.tooltip; 42 + if (c) { 43 + el.title = t; 44 + el.dataset.content = c; 45 + el.dataset.toggle = "popover"; 46 + el.dataset.placement = "top"; 47 + } 48 + } 49 + ) 50 + 51 + // handle clicks for tags 52 + tab.getElementsByClassName("xwiki-livetable-display-body")[0].addEventListener("click", ev => { 53 + if (ev.button) return; // only left click 54 + if (ev.target.nodeName !== "SPAN") return; 55 + if (!ev.target.classList.contains("ltTag")) return; 56 + const tag = ev.target.textContent; 57 + ev.preventDefault(); 58 + const lt = tab.__liveTable; 59 + const st = lt.tagCloud.selectedTags; 60 + if (tag in st) delete st[tag]; 61 + else st[tag] = {}; 62 + lt.tags = Object.keys(st); 63 + lt.clearCache(); 64 + lt.showRows(1, lt.limit); 65 + }); 66 + 67 + } 68 + }); 69 + 70 + document.observe("xwiki:livetable:receivedEntries", ({ memo: { data, tableId } }) => { 71 + const rf = livetableRowHook[tableId]; 72 + for (const row of data.rows) { 73 + if (rf) rf(row); 74 + 75 + // tags 76 + const tags = new Set(row.tags_value.slice(1, -1).split(", ")); 77 + tagCols[tableId]?.forEach(([name, ...want], i) => 78 + row[`tags-${i}`] = ( 79 + want[0] === true 80 + ? Array.from(tags) 81 + : want.filter(tag => tags.delete(tag)) 82 + ).sort().map(tag => `<span class="ltTag" style="cursor:pointer;white-space:nowrap;">${tag}</span>`).join(", ") 83 + ); 84 + } 85 + }); 86 + 87 + livetableRowHook.jobs = row => { 88 + const a = new Element("a", { href: row.link }); 89 + a.innerHTML = `<b class="wikiexternallink">${row.doc_title}</b>`; 90 + row.doc_title = a.outerHTML; 91 + 92 + row.doc_date = row.doc_date.split(" ")[0]; 93 + }; 94 + 95 + livetableRowHook.materials = row => { 96 + const ol = new DOMParser().parseFromString(row.doc_location, "text/xml").documentElement; 97 + const li = ol.children; 98 + 99 + switch (li[0].textContent) { 100 + case "MoccaCalendar": 101 + li[1].remove(); // the sub calendar 102 + case "Material collection": 103 + li[0].remove(); // the "app" 104 + } 105 + for (let i = 1; i < li.length - 1; i++) // intermediate 106 + li[i].textContent = li[i].textContent; // remove link 107 + 108 + const a = li[li.length - 1].children[0]; 109 + const b = a.ownerDocument.createElement("b"); 110 + a.replaceWith(b); 111 + b.appendChild(a); 112 + a.textContent = row.doc_title; 113 + 114 + const u = new URL(row.link_value); 115 + let icon; 116 + if (u.hostname.includes("github")) icon = "github"; 117 + if (u.hostname.includes("github.io")) icon = "book"; 118 + if (u.hostname.includes("gitlab")) icon = "gitlab"; 119 + if (u.hostname.includes("google")) icon = "google"; 120 + if (u.hostname.includes("colab")) icon = "code"; 121 + if (u.hostname.includes("youtube")) icon = "youtube-play"; 122 + if (u.pathname.endsWith(".pdf")) icon = "file-pdf-o"; 123 + if (u.pathname.endsWith(".pptx")) icon = "file-powerpoint-o"; 124 + if (icon) { 125 + const s = a.ownerDocument.createElement("span"); 126 + s.appendChild(a.ownerDocument.createElement("wbr")); 127 + s.setAttribute("class", `fa fa-${icon}`); 128 + s.setAttribute("style", "padding-right: .3em;"); 129 + a.insertBefore(s, a.firstChild); 130 + } 131 + a.setAttribute("class", "wikiexternallink"); 132 + a.setAttribute("href", u.href); 133 + 134 + row.doc_location = ol.outerHTML; 135 + }; 136 + 137 +})()); 138 + - Name
-
... ... @@ -1,0 +1,1 @@ 1 +Global Helpers - Parse content
-
... ... @@ -1,0 +1,1 @@ 1 +No - Use this extension
-
... ... @@ -1,0 +1,1 @@ 1 +always