Er moet een mogelijkheid komen om de info in het hulp nodig menu configureerbaar te maken (met default hoe het nu is). code voorbeeld:
// Capture any widget that is present or will be present on the webpage.
vl.widget.client.capture(function (widget) {
console.log(`${widget.getPluginTypeId()} - ${widget.getPluginId()}`);
// Only process the widget if widget is a global header.
if (widget.getPluginTypeId() === 'global_header') {
...
widget.getExtension('contact')
.then(contact => {
console.log(contact);
contact.setServicePoints({
"displayMode": "grouped",
"groupLabel": "Neem contact op met Annelies",
"contextual": [
{
"type": "link",
"href": "https://www.goole.be",
"label": "Zoek een café in uw buurt"
}
],
"defaults": [{
"type": "contactOption",
"contactGroupId": "vlaanderen",
"label": "Algemene contactopties van de Vlaamse overheid"
}]
});
});
}
});
Er moet een mogelijkheid komen om de info in het hulp nodig menu configureerbaar te maken (met default hoe het nu is). code voorbeeld:
Doc: https://vlaamseoverheid.atlassian.net/wiki/spaces/IKPubliek/pages/6208359370/De+contactopties+in+Hulp+nodig+dynamisch+configureren