design-comuni-plone-theme
Version:
Volto Theme for Italia design guidelines
18 lines (15 loc) • 320 B
JavaScript
export const getCategory = (item, show_type, show_section, props) => {
let cat = [];
if (item) {
if (show_section) {
cat.push(item.parent?.title);
}
if (show_type) {
cat.push(item.design_italia_meta_type);
}
}
if (cat.length > 0) {
return cat.join(' - ');
}
return null;
};