{"id":695,"date":"2020-03-15T15:57:08","date_gmt":"2020-03-15T14:57:08","guid":{"rendered":"http:\/\/h2916922.stratoserver.net:8084\/?p=695"},"modified":"2020-03-15T15:58:44","modified_gmt":"2020-03-15T14:58:44","slug":"phasing-out-values-from-content-navigator-choicelists","status":"publish","type":"post","link":"https:\/\/www.ivojonker.nl\/?p=695","title":{"rendered":"Phasing out values from Content Navigator Choicelists"},"content":{"rendered":"\n<p>With Corona on the verge of closing schools and daycare in the coming week, i figured it was a good time to do some client-work, so i logged in. Immediately i found a colleague online as well (on a Sunday?!) . Anyway, he was working on a little script that needed some finetuning.<\/p>\n\n\n\n<p>The script was to allow content-navigator render values that were no-longer valid according to EDS \/ Filenet (think of migrated content). The OOTB implementation would just &#8220;hide&#8221; them. <\/p>\n\n\n\n<p> Eventually we tinkered the following:<\/p>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>require([\n        \"dojo\/_base\/declare\",\n        \"dojo\/_base\/lang\",\n        \"dojo\/aspect\",\n        \"ecm\/widget\/LayoutPropertiesPane\"\n    ],\n    function(declare,\n        lang,\n        aspect,\n        LayoutPropertiesPane) {\n\n        aspect.around(LayoutPropertiesPane.prototype, \"renderAttributes\", function(originalrenderAttributes) {\n            return function(attributeDefinitions, item, reason, isReadOnly, params) {\n\n                attributeDefinitions.forEach(function(def) {\n\n                    function addChoiceIfNotExists(value) {\n                        var choiceExists = def.choiceList.choices.some(function(choice) {\n                            return choice.value === value\n                        });\n                        if (!choiceExists) {\n                            def.choiceList.choices.push({\n                                valid: true,\n                                displayName: value + \" - deprecated\",\n                                value: value\n                            });\n                        }\n                    }\n\n                    if (def.choiceList) {\n                        if (def.cardinality === \"LIST\") {\n                            item.getValues(def.id).forEach(addChoiceIfNotExists);\n                        } else if (def.cardinality === \"SINGLE\") {\n                            addChoiceIfNotExists(item.getValue(def.id));\n                        } else {\n                            throw \"Unexpected choicelist cardinality\";\n                        }\n                    }\n                });\n\n                originalrenderAttributes.apply(this, arguments);\n            }\n        });\n    });<\/code><\/pre>\n\n\n\n<p>Credits of course to my colleague with the long name \ud83d\ude09 <a href=\"https:\/\/www.linkedin.com\/in\/bruno-raphael-marques-de-santana-688a1637\/\">Bruno Raphael Marques de Santana<\/a>. <\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>With Corona on the verge of closing schools and daycare in the coming week, i figured it was a good time to do some client-work, so i logged in. Immediately [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-695","post","type-post","status-publish","format-standard","hentry","category-geen-categorie"],"_links":{"self":[{"href":"https:\/\/www.ivojonker.nl\/index.php?rest_route=\/wp\/v2\/posts\/695","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ivojonker.nl\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ivojonker.nl\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ivojonker.nl\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ivojonker.nl\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=695"}],"version-history":[{"count":3,"href":"https:\/\/www.ivojonker.nl\/index.php?rest_route=\/wp\/v2\/posts\/695\/revisions"}],"predecessor-version":[{"id":698,"href":"https:\/\/www.ivojonker.nl\/index.php?rest_route=\/wp\/v2\/posts\/695\/revisions\/698"}],"wp:attachment":[{"href":"https:\/\/www.ivojonker.nl\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=695"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ivojonker.nl\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=695"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ivojonker.nl\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=695"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}