Skip to content

Commit

Permalink
Add filter on taxonomy
Browse files Browse the repository at this point in the history
  • Loading branch information
MPParsley committed May 22, 2024
1 parent 21dd67b commit 24b0f42
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 52 deletions.
48 changes: 5 additions & 43 deletions webcomponents/besluiten-lijst/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,51 +30,13 @@
<body class="cs--blue">
<h1>Besluiten lijst</h1>
<besluiten-lijst
sparql-endpoint="https://probe.stad.gent/sparql"
aantal="5"
bestuursorganen="http://data.lblod.info/id/bestuursorganen/c126b20bc1a94de293b7fceaf998c82e9a7a1d56ba34cbf9992aa4bf01ae2b01 http://data.lblod.info/id/bestuursorganen/6efc9b0c3ebb3371031d45e517d88f66eb115adf28e5e1827684522f56a8aa2c"
>
<span slot="title">5 meest recente besluiten gemeenteraad en burgemeester (probe)</span>
</besluiten-lijst>
<besluiten-lijst
sparql-endpoint="https://probe.stad.gent/sparql"
aantal="1"
bestuursorganen="http://data.lblod.info/id/bestuursorganen/c126b20bc1a94de293b7fceaf998c82e9a7a1d56ba34cbf9992aa4bf01ae2b01 http://data.lblod.info/id/bestuursorganen/6efc9b0c3ebb3371031d45e517d88f66eb115adf28e5e1827684522f56a8aa2c"
taxonomy="http://stad.gent/id/concepts/decision_making_themes"
concepts="http://stad.gent/id/concepts/decision_making_themes/concept_37"
>
<span slot="title">Meest recente besluit gemeenteraad en burgemeester voor het thema "Jeugd" (probe)</span>
</besluiten-lijst>
<besluiten-lijst
sparql-endpoint="https://probe.stad.gent/sparql"
aantal="1"
bestuursorganen="http://data.lblod.info/id/bestuursorganen/c126b20bc1a94de293b7fceaf998c82e9a7a1d56ba34cbf9992aa4bf01ae2b01 http://data.lblod.info/id/bestuursorganen/6efc9b0c3ebb3371031d45e517d88f66eb115adf28e5e1827684522f56a8aa2c"
statussen="Afgekeurd"
>
<span slot="title">Meest recente afgekeurd besluit gemeenteraad en burgemeester aanvaard tot de zitting als hoogdringend agendapunt (probe)</span>
</besluiten-lijst>
<besluiten-lijst
sparql-endpoint="https://probe.stad.gent/sparql"
aantal="1"
bestuursorganen="http://data.lblod.info/id/bestuursorganen/c126b20bc1a94de293b7fceaf998c82e9a7a1d56ba34cbf9992aa4bf01ae2b01 http://data.lblod.info/id/bestuursorganen/6efc9b0c3ebb3371031d45e517d88f66eb115adf28e5e1827684522f56a8aa2c"
statussen="Gedeeltelijke ingetrokken, Verdaagd"
>
<span slot="title">Meest recente gedeeltelijke ingetrokken of verdaagd besluit gemeenteraad en burgemeester (probe)</span>
</besluiten-lijst>
<besluiten-lijst
sparql-endpoint="https://qa.centrale-vindplaats.lblod.info/sparql"
aantal="1"
>
<span slot="title">Meest recente besluit op centrale vindplaats</span>
<a slot="raadpleegomgeving" href="https://qa.centrale-vindplaats.lblod.info/" class="button button-primary">Alle besluiten op centrale vindplaats</a>
</besluiten-lijst>
<besluiten-lijst
sparql-endpoint="https://qa.centrale-vindplaats.lblod.info/sparql"
aantal="1"
sparql-endpoint="http://srvprobepr01:8890/sparql"
aantal="100"
bestuurseenheden="http://data.lblod.info/id/bestuurseenheden/763adc09114dd8d54a1c8bfabeaec5e5ce543d858c3dff057a1c39f9103249a0"
taxonomy="http://stad.gent/id/concepts/decision_making_themes"
concepts="http://stad.gent/id/concepts/decision_making_themes/concept_36"
>
<span slot="title">Meest recente besluit op centrale vindplaats van Heist-op-den-Berg</span>
<a slot="raadpleegomgeving" href="https://qa.centrale-vindplaats.lblod.info/" class="button button-primary">Alle besluiten op centrale vindplaats</a>
<span slot="title">Alle besluiten gemeenteraad en burgemeester voor het thema "Wegenregister" (probe)</span>
</besluiten-lijst>
</body>
</html>
25 changes: 16 additions & 9 deletions webcomponents/besluiten-lijst/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,16 @@ class BesluitenLijst extends HTMLElement {
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:inScheme <${taxonomy}> ;
skos:prefLabel ?label .
${filterparams}
}`;
?besluit ext:hasAnnotation ?annotation .
?annotation ext:withTaxonomy ?thema ;
ext:creationDate ?date ;
ext:hasLabel ?label .
?label ext:isTaxonomy ?concept .
VALUES ?thema { <${taxonomy}> }
VALUES ?concept { ` + conceptsArray.map(concept => `<${concept.trim()}>`).join(" ") + ` }
FILTER (!CONTAINS(STR(?url), "/notulen"))
`;
}

// @todo: remove OPTIONAL {} when eenheden are available.
Expand All @@ -117,15 +119,20 @@ class BesluitenLijst extends HTMLElement {
PREFIX besluit: <http://data.vlaanderen.be/ns/besluit#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX mandaat: <http://data.vlaanderen.be/ns/mandaat#>
PREFIX ext: <http://mu.semte.ch/vocabularies/ext/>
SELECT DISTINCT ?besluit ?title ?agendapunt ?zitting ?zitting_datum ?orgaan ?url ?status WHERE {
SELECT
DISTINCT ?besluit ?title ?agendapunt ?zitting ?zitting_datum ?orgaan ?url ?status
FROM <http://mu.semte.ch/graphs/public>
FROM <http://mu.semte.ch/application/probe/user-annotations>
WHERE {
?besluit a besluit:Besluit ;
eli:title_short ?title ;
prov:wasDerivedFrom ?url ;
prov:wasGeneratedBy/besluit:heeftStemming/besluit:gevolg ?status ;
${queryThema}
${queryBestuursorgaan}
?bestuursorgaanURI skos:prefLabel ?orgaanLabel .
${queryThema}
${filterparams}
BIND(CONCAT(UCASE(SUBSTR(?orgaanLabel, 1, 1)), SUBSTR(?orgaanLabel, 2)) AS ?orgaan)
${queryBestuurseenheid}
Expand Down

0 comments on commit 24b0f42

Please sign in to comment.