`; console.log('started??'); proof = document.querySelector("#main > div > ng-component > div > div > form > form-group:nth-child(8)"); if (proof) { proof.innerHTML = `
Voeg een certificaat, diploma of getuigschrift toe (jpg, jpeg, png, pdf)
Verwijderen
`; done = "1"; } } } // ARTICLES if ( artp == "/articles/" ) { if ( artedit == "/edit" ) { comparePublishDate(); if ( document.querySelector("#datum") && setdate ===0 ) { var today = new Date(); document.querySelector('#datum').value = today.getFullYear() + '-' + ('0' + (today.getMonth() + 1)).slice(-2) + '-' + ('0' + today.getDate()).slice(-2); setdate = 1; console.log('datum set'); } else { if (setdate === 0 ) { addbut = document.querySelector("#published_at"); addbut.innerHTML = addbut.innerHTML + ` Publicatiedatum
Aanpassen
`; } } } if ( done === 0 ) { let link = document.querySelector("#main > ng-component > div > div.row.g-4.mb-5 > div.col-md-4 > div:nth-child(1) > experts-list-item > a"); if (link !== null) { linkhref = link.href; linkparts = linkhref.replace(/\/\s*$/,"").split("/"); expert = linkparts[4]; url = getURL()+"/legacy/router.php?type=isactive&user="+expert; fetch(url) .then ( function(response) { response.text().then(function(data) { qbutton = document.querySelector('#qbuttondiv'); if (data == 'inactive') { if (qbutton !== null) { qbutton.setAttribute("style", "display:none"); } done = '1'; } else { if (qbutton !== null) { qbutton.setAttribute("style", "display:block"); } done = "1"; } }); } ) .catch(function(err) { console.error("Fetch Error -", err); }); } else { done = "1"; buttona = document.querySelector('#main > ng-component > div > div.row.g-4.mb-5 > div.col-md-4 > div:nth-child(2) > button'); if (buttona !== null) { buttona.setAttribute("style", "display:none"); } } } } // EXPERTS if ( expertp == "/experts") { let uname = window.location.href.split("/").pop(); let eqmodal = document.querySelector("#questionmodal"); let taxidfield = document.querySelector("#taxidfield"); if ( eqmodaldone === 0) { if (eqmodal) { document.querySelector("#questionmodal").setAttribute("src", getURL()+"/legacy/question-modal.php?expert="+uname); eqmodaldone = "1"; } } /* if ( gettaxiddone === 0) { if (taxidfield) { document.querySelector("#questionmodal").setAttribute("src", getURL()+"/legacy/question-modal.php?expert="+uname); eqmodaldone = "1"; } }*/ } // QUESTIONS & ANSWERS if ( questionp == "/questions/" && done === 0 ) { iframe = document.querySelector("#answerframe"); if (iframe) { fetch(getURL()+"/legacy/router.php?type=isactive&user="+expert) .then((response) => response.text()) .then((json) => console.log(json)); expertid = ""; user = ""; questionid = ""; iframe.src = getURL()+"/legacy/answer-modal.php?expertid="+expertid+"&user="+user+"&questionid="+questionid; } } // GET POPULAR SPECIALIZATIONS if ( questionp == "/questions" && getpopularspecsdone === 0 ) { let popspecsel = document.querySelector('#main > ng-component > div:nth-child(2) > div > div.col-md-4 > div:nth-child(7)'); fetch(getURL()+"/legacy/router.php?type=getpopularspecs&limit=5&noaccepth") .then((response) => response.text()) .then((text) => { popspecsel.innerHTML = text; getpopularspecsdone = 1; }); } if ( account == 'account' ) { let vatfield = document.querySelector('#main > ng-component > div:nth-child(2) > form > div:nth-child(2) > div.col > div > div.col-md-12 > form-group > div > input-text > input'); let email = document.querySelector('#main > ng-component > div:nth-child(2) > form > div:nth-child(2) > div.col > div > div:nth-child(3) > form-group > div > input-text > input').value; if ( vatdone == "0") { if ( vatfield ) { url = getURL()+'/legacy/router.php?type=getvat&email='+email+'&noaccepth'; xhttp = new XMLHttpRequest(); xhttp.open("GET", url, true); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { document.querySelector('#main > ng-component > div:nth-child(2) > form > div:nth-child(2) > div.col > div > div.col-md-12 > form-group > div > label').classList.add("ng-star-inserted"); document.querySelector('#main > ng-component > div:nth-child(2) > form > div:nth-child(2) > div.col > div > div.col-md-12 > form-group > div > label').classList.add("active"); vatfield.value = this.responseText; vatdone = "1"; } }; xhttp.send(null); } } } // MODALS if ( emodaldone === 0 ) { // EXPERT let uname = window.location.href.split("/").pop(); let emodal = document.querySelector("#expertinfomodal"); if (emodal) { document.querySelector("#expertinfomodal").setAttribute("src", getURL()+"/legacy/expert-modal.php?user="+uname); emodaldone = "1"; } } if ( qmodaldone === 0 && expertp != "/experts" ) { // QUESTION let qmodal = document.querySelector("#questionmodal"); if (qmodal) { document.querySelector("#questionmodal").setAttribute("src", getURL()+"/legacy/question-modal.php"); qmodaldone = "1"; } } }, 1000); // FUNC function uploadFile(action) { if (action == "proof") { var fileproof = document.getElementById("proof").files; if ( fileproof.length > 0 ) { var formData = new FormData(); formData.append("file", fileproof[0]); var url = getURL()+"/legacy/router.php?type=setupexpert&action="+action; var xhttp = new XMLHttpRequest(); xhttp.open("POST", url, true); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { var response = this.responseText; document.getElementById("proofwrapper").setAttribute("style", "display:none;"); document.getElementById("provenwrapper").setAttribute("style", "display:block;"); } }; xhttp.send(formData); } else { alert("Selecteer een bestand van maximum 1 Mb"); } } else if (action == "avatar") { var files = document.getElementById("file").files; if ( files.length > 0 ) { var formData = new FormData(); formData.append("file", files[0]); var url = getURL()+"/legacy/router.php?type=setupexpert&action="+action; var xhttp = new XMLHttpRequest(); xhttp.open("POST", url, true); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { var response = this.responseText; document.getElementById("expertAvatar").src = response; console.log('uploaded and responded'); } else { console.log('uploaded but not responded'); } }; xhttp.send(formData); } else { alert("Selecteer een bestand van maximum 1 Mb"); } } } function getAvatarNative(username) { expertname = username; url = getURL()+'/legacy/router.php?type=nativeavatar&expert='+expertname; xhttp = new XMLHttpRequest(); xhttp.open("GET", url, true); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { response = this.responseText; file = response; //8yCDVYCleC0RaODe0oSfz8rEn38VzuyaX00lvrQv.jpg urlbase = getURL()+'/storage/avatars/'; lastfour = file.slice(-4); filename = file.slice(0, -4); size = '_md'; newfile = urlbase+filename+size+lastfour; console.log(newfile); } }; xhttp.send(null); } function replaceAvatarNative(username) { expertname = username; url = getURL()+'/legacy/router.php?type=nativeavatar&expert='+expertname; xhttp = new XMLHttpRequest(); xhttp.open("GET", url, true); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { response = this.responseText; file = response; //8yCDVYCleC0RaODe0oSfz8rEn38VzuyaX00lvrQv.jpg urlbase = getURL()+'/storage/avatars/'; lastfour = file.slice(-4); filename = file.slice(0, -4); size = '_md'; newfile = urlbase+filename+size+lastfour; if (document.querySelector('#expertAvatar')) { document.querySelector('#expertAvatar').src = newfile; } } }; xhttp.send(null); } function scheduleArticle() { if ( document.querySelector('.cover').src == "" ) { alert('Coverfoto is verplicht'); } else { let cururl = window.location.href; let article = cururl.substring( cururl.indexOf("articles/") + 9, cururl.lastIndexOf("/edit")); let type = 'setpublishdate'; let user = document.querySelector('#myusername').innerHTML; let date = document.querySelector('#datum').value; url = getURL()+'/legacy/router.php?type=setpublishdate&date='+date+'&article='+article+'&user='+user+'&noaccepth'; xhttp = new XMLHttpRequest(); xhttp.open("GET", url, true); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { response = this.responseText; file = response; } }; xhttp.send(null); } } function publishNow() { if (abletopublish()) { let cururl = window.location.href; let article = cururl.substring( cururl.indexOf("articles/") + 9, cururl.lastIndexOf("/edit")); let type = 'setpublishdate'; let user = document.querySelector('#myusername').innerHTML; let date = new Date().toJSON().slice(0, 10); url = getURL()+'/legacy/router.php?type=setpublishdate&date='+date+'&article='+article+'&user='+user+'&noaccepth'; xhttp = new XMLHttpRequest(); xhttp.open("GET", url, true); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { response = this.responseText; file = response; } }; xhttp.send(null); } else { alert('Coverfoto is verplicht'); } } function abletopublish() { if ( document.querySelector('.cover').src !== "" ) { return true; } else { return false; } } function depublishNow() { let cururl = window.location.href; let article = cururl.substring( cururl.indexOf("articles/") + 9, cururl.lastIndexOf("/edit")); let type = 'depublish'; let user = document.querySelector('#myusername').innerHTML; let date = ''; url = getURL()+'/legacy/router.php?type='+type+'&article='+article+'&user='+user+'&noaccepth'; xhttp = new XMLHttpRequest(); xhttp.open("GET", url, true); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { response = this.responseText; file = response; } }; xhttp.send(null); } function comparePublishDate() { let cururl = window.location.href; let article = cururl.substring( cururl.indexOf("articles/") + 9, cururl.lastIndexOf("/edit")); url = getURL()+'/legacy/router.php?type=getpublishdate&article='+article+'&noaccepth'; xhttp = new XMLHttpRequest(); xhttp.open("GET", url, true); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { response = this.responseText; datarr = response.slice(0, 10); date = datarr; datarr = datarr.split("-"); datehtml = datarr[2]+"-"+datarr[1]+"-"+datarr[0]; publishdate = new Date(date); today = new Date(); if ( response == '' ) { document.querySelector('#status').innerHTML = "Niet gepubliceerd"; document.querySelector('#plannedlabel').innerHTML = ''; document.querySelector('#planned').style.display = 'none'; document.querySelector('#depublish').style.display = 'none'; document.querySelector('#publishnow').style.display = 'block'; } else { document.querySelector('#planned').style.display = 'block'; if (today < publishdate) { console.log('>today'); document.querySelector('#status').innerHTML = "Publicatie gepland"; document.querySelector('#plannedlabel').innerHTML = 'Op '; document.querySelector('#planned').innerHTML = datehtml; document.querySelector('#depublish').style.display = 'block'; document.querySelector('#publishnow').style.display = 'none'; } if (today >= publishdate) { console.log('< today'); document.querySelector('#status').innerHTML = "Gepubliceerd"; document.querySelector('#plannedlabel').innerHTML = 'Op '; document.querySelector('#planned').innerHTML = datehtml; document.querySelector('#depublish').style.display = 'block'; document.querySelector('#publishnow').style.display = 'none'; } } if ( document.querySelector("#datum") ) { if ( !document.querySelector("#datum").classList.contains('done') ) { document.querySelector("#datum").value = date; document.querySelector("#datum").classList.add("done"); } } } }; xhttp.send(null); } function pubdatechanged() { edbut = document.querySelector("#editdate"); setTimeout(() => { edbut.setAttribute('style', 'background-color:#4DAF58!important;color:white!important;width: 100%;font-size:0.9rem;margin-top:10px;margin-bottom:10px'); }, 200); setTimeout(() => { edbut.setAttribute('style', 'color:#4DAF58!important;background-color:white!important;width: 100%;font-size:0.9rem;margin-top:10px;margin-bottom:10px'); }, 800); } function getDate() { var today = new Date(); document.querySelector('#datum').value = today.getFullYear() + '-' + ('0' + (today.getMonth() + 1)).slice(-2) + '-' + ('0' + today.getDate()).slice(-2); } function getURL() { thisurl = window.location.origin; if ( thisurl == "http://localhost:4200" ) { url = "http://localhost:8000"; } else if ( thisurl == "http://localhost:8000" ) { url = "http://localhost:8000"; } else if ( thisurl == 'https://staging.panoramaexperts.be' ) { url = 'https://staging.panoramaexperts.be' } else { url = "https://panoramaexperts.be" } return url; } intervalID = setInterval(stickyEditor, 500); function stickyEditor() { /* if (document.querySelector("input-wysiwyg")) { let editor = document.querySelector("input-wysiwyg"); if (window.scrollY > 100) { editor.setAttribute("style", "position:fixed;top:200px;z-index:9999;height:600px;width:800px;overflow:scroll;display:block"); } else { editor.setAttribute("style", "position:relative;top:auto;z-index:9999;"); } } */ } function paymentModal() {/* if ( paymentmodaldone === 0 ) { let pagepath = window.location.pathname; let page = pagepath.slice(0, 9); let usern = pagepath.slice(9, 999); let pmodal = document.querySelector(".modal-body"); if ( page == "/experts/" ) { if ( pmodal ) { let pmcontainer = document.querySelector(".cdk-overlay-pane"); let modbody = document.querySelector(".modal-body"); pmcontainer.style.width = "80%"; pmcontainer.style.height = "80%"; modbody.style.overflow = "hidden"; pmodal.innerHTML = ``; paymentmodaldone = 1; } } }*/ } setInterval(() => { paymentModal(); }, 200);
TESTOMGEVING
Terug

1 dec. 2023 | 5 min leestijd

Verlichting bij eczeem

Eczeem is een alom gekende huidaandoening die miljoenen mensen over de hele wereld treft. Het kan gepaard gaan met vervelende symptomen welke voor heel wat ongemakken kunnen zorgen. Gelukkig zijn er effectieve behandelingsmethoden beschikbaar om de symptomen onder controle te houden en verlichting te bieden. In wat volgt, krijg je alle informatie die van belang kan zijn.



Wat is eczeem?


Eczeem, ook bekend als dermatitis, is een ontstekingsaandoening van de huid die wordt gekenmerkt door typische schilfering van de huid. Het kan op verschillende delen van het lichaam voorkomen en in verschillende vormen optreden. De twee meest voorkomende soorten eczeem zijn atopisch eczeem (constitutioneel eczeem) en contacteczeem:

  1. Atopisch eczeem is een chronische ontstekingsaandoening die ontstaat door een combinatie van genetische, immunologische en omgevingsfactoren.
  2. Contacteczeem ontstaat bij direct contact van de huid met irriterende stoffen of allergenen door een irritatie van de huid of reactie van het immuunsysteem op een stof die als allergeen wordt beschouwd.


Oorzaken van eczeem


De exacte oorzaak van eczeem is niet volledig begrepen, maar het is waarschijnlijk het resultaat van een combinatie van genetische aanleg en omgevingsfactoren. De triggers omvatten:

  • Allergieën
  • Stress
  • Irriterende chemicaliën
  • Parfum
  • Nikkel
  • Pollen


Symptomen van eczeem


De symptomen van eczeem kunnen variëren van persoon tot persoon en kunnen verergering en remissie doormaken. De meest voorkomende symptomen zijn:

  • Jeuk
  • Roodheid
  • Droogheid
  • Schilfering
  • Blaarvorming


Effectieve behandelingsmethoden


Gelukkig zijn er verschillende behandelingsmethoden beschikbaar om de symptomen van eczeem onder controle te houden en verlichting te bieden. Hier zijn enkele effectieve behandelingsmethoden:


  1. Hydratatie: Houd de huid goed gehydrateerd met behulp van vochtinbrengende crèmes of zalven. Deze kunt u vinden bij uw apotheek. Breng deze aan na het douchen om vocht vast te houden.
  2. Corticosteroïden: Voor matige tot ernstige gevallen van eczeem kunnen corticosteroïden worden voorgeschreven door een arts om ontstekingen te verminderen en jeuk te verlichten.
  3. Topische calcineurine-remmers: Deze medicijnen kunnen worden gebruikt op gevoelige delen van het lichaam, zoals het gezicht of de hals, en werken ook ontstekingsremmend. Ze werken in op het enzym calcineurine, dat mede verantwoordelijk is voor de ontstekingsreactie, waardoor ze de ontsteking kunnen verminderen en symptomen verlichten.
  4. Antihistaminica: Orale antihistaminica kunnen jeuk verminderen en slaapproblemen door eczeem verlichten door in te werken op histaminereceptoren en de werking van histamine te doorbreken.
  5. Vermijd triggers: Identificeer en vermijd factoren die je eczeem verergeren, zoals allergenen, irriterende stoffen of stress.
  6. Zacht reinigen: Gebruik milde, ongeparfumeerde zeep en vermijd langdurig warm water. Ook deze zijn te vinden in uw apotheek.

Oplossing


Eczeem kan een uitdagende aandoening zijn, maar met de juiste behandeling en zorg kan het goed onder controle worden gehouden. Het is belangrijk om een dermatoloog te raadplegen voor een juiste diagnose en behandeling. Met hydratatie, medicatie en het vermijden van triggers kun je jeuk, roodheid en andere symptomen van eczeem verminderen en een comfortabeler leven leiden. Vergeet niet dat elke persoon anders is, dus een individuele aanpak kan nodig zijn om het beste resultaat te bereiken. Als je last hebt van eczeem, wacht dan niet langer en neem contact op met een arts of apotheker voor een gepersonaliseerd behandelplan dat jou kan helpen om symptoomvrij te leven. Graag nog extra uitleg of antwoorden op je vragen, kom dan zeker even langs bij apotheek Panorama.



Deel dit artikel met je vrienden

Panorama
Op Panorama Experts vind je een betrouwbaar antwoord op jouw gezondheidsgerelateerde vragen en krijg je advies van echte experts.
Contact

PANORAMA EXPERTS

Groep Panorama Apotheken BV

VAT BE0537 764 436

Dorpsstraat 18, 3560 Lummen, Belgium