Skip to content

Commit

Permalink
Move params
Browse files Browse the repository at this point in the history
  • Loading branch information
MPParsley committed May 21, 2024
1 parent b3b0242 commit 9749ed7
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions webcomponents/besluiten-lijst/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ class BesluitenLijst extends HTMLElement {
const bestuursorganenArray = bestuursorganen.split(" ");
filterparams += "VALUES ?bestuursorgaanURI { " + bestuursorganenArray.map(bestuursorgaan => `<${bestuursorgaan.trim()}>`).join(" ") + " }"
}
if (concepts) {
const conceptsArray = concepts.split(" ");
filterparams += "VALUES ?concept { " + conceptsArray.map(concept => `<${concept.trim()}>`).join(" ") + " }"
}

let queryBestuursorgaan = `
prov:wasGeneratedBy/dct:subject ?agendapunt .
Expand All @@ -88,11 +84,14 @@ class BesluitenLijst extends HTMLElement {
let queryBestuurseenheid = `?bestuursorgaanURI besluit:bestuurt ?bestuureenheidURI.`;
let queryThema = '';
if (concepts) {
const conceptsArray = concepts.split(" ");
filterparams += "VALUES ?concept { " + conceptsArray.map(concept => `<${concept.trim()}>`).join(" ") + " }"
queryThema = `
SERVICE <https://stad.gent/sparql> {
?concept a skos:Concept ;
skos:prefLabel ?label ;
skos:inScheme <${taxonomy}> .
${filterparams}
}`;
}

Expand Down Expand Up @@ -124,8 +123,8 @@ class BesluitenLijst extends HTMLElement {
eli:title_short ?title ;
prov:wasDerivedFrom ?url ;
prov:wasGeneratedBy/besluit:heeftStemming/besluit:gevolg ?status ;
${queryBestuursorgaan}
${queryThema}
${queryBestuursorgaan}
?bestuursorgaanURI skos:prefLabel ?orgaanLabel .
${filterparams}
BIND(CONCAT(UCASE(SUBSTR(?orgaanLabel, 1, 1)), SUBSTR(?orgaanLabel, 2)) AS ?orgaan)
Expand Down

0 comments on commit 9749ed7

Please sign in to comment.