Changes for page Nice Display

Last modified by Benjamin Fischer on 2025/06/04 11:55

From version 47.1
edited by Benjamin Fischer
on 2025/06/04 11:55
Change comment: There is no comment for this version
To version 45.28
edited by Benjamin Fischer
on 2025/03/26 12:43
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -4,6 +4,8 @@
4 4  #if ( $ntrg_tagCols == $null )
5 5  #set( $ntrg_tagCols = [["Tags", true]] )
6 6  #end
7 +#set ($shouldMinify = !$hasProgramming )
8 +#set ($discard = $xwiki.jsx.use('Research Groups.Nice Display.WebHome', {"minify": $shouldMinify}))
7 7  
8 8  #set ($columnsProperties = {
9 9   'affiliation': {"filterable":true, "sortable":true, "html":true},
... ... @@ -11,7 +11,6 @@
11 11   "content": {"type": "hidden"},
12 12   "coopDetails": {"type": "hidden"},
13 13   "coop": {"html": true},
14 - "Community": {"tooltip": "KAT - Astroparticle Physics<br/>KET - Elementary Particles Physics<br/>KfB - Accelerator Physics<br/>KFN - Research with neutrons<br/>KFS - Research with synchrotron radiation<br/>KFSI - Research with nuclear probes and ion beams<br/>KHuK - Hadron and nuclear physics<br/>RDS - German Observatory Council"},
15 15   "tags": {"sortable": false, "filterable": false, "html": true, "headerClass": "tagsCol", "aux": $ntrg_tagCols},
16 16   "doc.date": {"filterable": false, "displayName": "Last Updated"},
17 17   '_actions': {"actions":["view","edit"]}
... ... @@ -33,5 +33,24 @@
33 33  #livetable("research_groups" $columns $columnsProperties $options)
34 34  {{/velocity}}
35 35  
36 -{{include reference="Applications.Helpers.Howto Modify Footer.WebHome"}}
37 +(% id="howto" %)
38 +== How-To Add/Update Entries ==
37 37  
40 +You need to be logged in to perform any modifications.
41 +
42 +=== Add entry ===
43 +
44 +1. click {{html}}<button class="btn"><i class="fa fa-plus"/>Create</button>{{/html}} (top right)
45 +1. fill in the Title in the top left (must be unique)
46 +1. click {{html}}<button class="btn btn-primary">Create</button>{{/html}} (bottom left)
47 +1. fill out the form
48 +1. click {{html}}<button class="btn btn-primary">Save & View</button>{{/html}} (bottom left)
49 +1. add tags (bottom left): click on the [+] behind: "Tags:"
50 +
51 +=== Modfiy entry ===
52 +
53 +1. click on {{icon name="pencil"/}} Edit
54 +1. update the form
55 +1. click {{html}}<button class="btn btn-primary">Save & View</button>{{/html}} (bottom left)
56 +1. update the Tags (bottom left)
57 +
XWiki.JavaScriptExtension[0]
Caching policy
... ... @@ -1,0 +1,1 @@
1 +default
Code
... ... @@ -1,0 +1,99 @@
1 +(()=>{
2 + const tabName = "research_groups";
3 + const coopDetailsLabel = "Cooperation Details";
4 + let tagCols;
5 +
6 + document.observe('xwiki:livetable:loading', () => {
7 + const mats = document.getElementById(tabName);
8 + if (!mats) return;
9 +
10 + // coulmn data sources
11 + const conf = JSON.parse(mats.dataset.settings);
12 + tagCols = (conf.columnDescriptors.tags ?? {aux: []}).aux ?? [["Tags", true]];
13 + tagCols.forEach(([name], i) => {
14 + const cn = `tags-${i}`;
15 + conf.columns.splice(conf.columns.indexOf("tags"), 1, cn);
16 + conf.columnDescriptors[cn] = {
17 + displayName: name,
18 + headerClass: "tagsCol",
19 + html: true,
20 + sortable: false,
21 + };
22 + });
23 + mats.dataset.settings = JSON.stringify(conf);
24 +
25 + // column headers
26 + mats.querySelectorAll(".xwiki-livetable-display-header .tagsCol").forEach(
27 + (v, i) => v.textContent = tagCols[i][0]
28 + );
29 +
30 + // handle clicks for tags
31 + document.getElementById(`${tabName}-display`).addEventListener("click", ev => {
32 + if (ev.button) return; // only left click
33 + if (ev.target.nodeName !== "SPAN") return;
34 + if (!ev.target.classList.contains("ltTag")) return;
35 + const tag = ev.target.textContent;
36 + ev.preventDefault();
37 + const lt = mats.__liveTable;
38 + const st = lt.tagCloud.selectedTags;
39 + if (tag in st) delete st[tag];
40 + else st[tag] = {};
41 + lt.tags = Object.keys(st);
42 + lt.clearCache();
43 + lt.showRows(1, lt.limit);
44 + })
45 + });
46 +
47 + document.observe(`xwiki:livetable:${tabName}:receivedEntries`, ({memo: {data}}) => {
48 + for (const row of data.rows) {
49 + const a = new Element("a", { href: row.URL });
50 + a.innerHTML = row.affiliation_value.split("\n").map((a, i) => i ? a : `<b class="wikiexternallink">${a}</b>`).join("<br/>");
51 + a.title = row.doc_title;
52 + if (row.content !== "-") {
53 + let c = row.content;
54 + if (row.coopDetails !== "-")
55 + c = `${c}<br/><b>${coopDetailsLabel}:</b> ${row.coopDetails}`;
56 + a.dataset.content = c;
57 + a.dataset.toggle = "popover";
58 + }
59 + row.affiliation = a.outerHTML;
60 +
61 + row.coop = row.coop.replace(/\b \.\.\. \b/g, " ...<br/>");
62 + if (row.coopDetails !== "-") {
63 + const d = new Element("div");
64 + d.innerHTML = row.coop;
65 + d.title = coopDetailsLabel;
66 + d.dataset.content = row.coopDetails;
67 + d.dataset.toggle = "popover";
68 + row.coop = d.outerHTML;
69 + }
70 +
71 + row.doc_date = row.doc_date.split(" ")[0].split("/").slice(0, 2).join("/");
72 +
73 + // tags
74 + const tags = new Set(row.tags_value.slice(1, -1).split(", "));
75 + tagCols.forEach(([name, ...want], i) =>
76 + row[`tags-${i}`] = (
77 + want[0] === true
78 + ? Array.from(tags)
79 + : want.filter(tag => tags.delete(tag))
80 + ).sort().map(tag => `<span class="ltTag" style="cursor:pointer;">${tag}</span>`).join(", ")
81 + );
82 + }
83 + });
84 +
85 + require(['jquery', 'bootstrap'], function($) {
86 + document.styleSheets[0].insertRule(`#mainContentArea .popover {max-width: 50%;}`);
87 +
88 + const ttApply = () => {
89 + $(`#${tabName} [data-toggle="popover"]`).popover({
90 + html: true,
91 + container: `#mainContentArea`,
92 + trigger: "hover",
93 + });
94 + };
95 +
96 + document.observe(`xwiki:livetable:${tabName}:displayComplete`, ttApply);
97 + ttApply();
98 + });
99 +})();
Name
... ... @@ -1,0 +1,1 @@
1 +Nice Table - Research Groups
Parse content
... ... @@ -1,0 +1,1 @@
1 +No
Use this extension
... ... @@ -1,0 +1,1 @@
1 +onDemand