Widget: DCTList: Difference between revisions
From LINKS Community Center
Eschmidt (talk | contribs) No edit summary |
Eschmidt (talk | contribs) No edit summary |
||
Line 663: | Line 663: | ||
) { summary.textContent = 'No filter. Showing all results.'; } | ) { summary.textContent = 'No filter. Showing all results.'; } | ||
else { | else { | ||
let summaryHtml = '<table>'; | let summaryHtml = '<table>'; | ||
if (filter.type.functions) { | if (filter.type.functions) { | ||
summaryHtml += '<tr><td><strong>Functions</strong></td><td>' | summaryHtml += '<tr><td><strong>Functions</strong></td><td>'; | ||
if (filter.type.functions.size > 0) { | |||
+ '</td></tr>'; | summaryHtml += 'none'; | ||
} else { | |||
for (const [cat, subs] of filter.type.functions) { | |||
summaryHtml += cat + ': <small>(' + subs.joing(', ') + ')</small>'; | |||
} | |||
} | |||
summaryHtml += '</td></tr>'; | |||
} | } | ||
if (filter.type.dataSources) { | if (filter.type.dataSources) { |
Revision as of 15:35, 21 November 2022
Development verstion of the DCT List.
Not ready for production!