Skip to content

Commit

Permalink
Merge branch 'development' into dependabot/npm_and_yarn/follow-redire…
Browse files Browse the repository at this point in the history
…cts-1.15.4
  • Loading branch information
ledsoft authored Feb 7, 2024
2 parents a3d6dce + f4e5244 commit 0ce75e1
Show file tree
Hide file tree
Showing 7 changed files with 170 additions and 79 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge-to-protected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
node-version: "16.x"
- name: Install
run: npm install --legacy-peer-deps
run: npm install
- name: Prettier Check
run: npm run prettier:check
- name: Build
Expand Down
213 changes: 145 additions & 68 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@fortawesome/fontawesome-free": "^6.4.0",
"@opendata-mvcr/assembly-line-shared": "^0.3.2",
"apexcharts": "^3.41.0",
"axios": "^1.6.2",
"axios": "^1.6.5",
"bootstrap": "4.6.2",
"chart.js": "^3.9.1",
"classnames": "^2.3.2",
Expand All @@ -19,7 +19,7 @@
"easymde": "2.15.0",
"html-to-react": "1.5.0",
"htmlparser2": "^4.1.0",
"intelligent-tree-select": "0.11.1",
"intelligent-tree-select": "0.11.2",
"iso-639-1": "^2.1.15",
"javascript-time-ago": "2.5.9",
"js-cookie": "^3.0.5",
Expand Down Expand Up @@ -95,7 +95,7 @@
"@types/whatwg-mimetype": "^2.1.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"axios-mock-adapter": "^1.22.0",
"babel-plugin-macros": "3.1.0",
"babel-plugin-macros": "2.8.0",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"husky": "^7.0.4",
Expand Down
6 changes: 5 additions & 1 deletion src/component/statistics/assetcount/AssetCount.rq
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
PREFIX pdp: <http://onto.fel.cvut.cz/ontologies/slovník/agendový/popis-dat/pojem/>
PREFIX termit: <http://onto.fel.cvut.cz/ontologies/application/termit/pojem/>

CONSTRUCT {
?assetType termit:has-count ?count
} WHERE {
SELECT (COUNT(DISTINCT ?asset) AS ?count) {
?asset a ?assetType
?asset a ?assetType .
FILTER NOT EXISTS {
?asset a pdp:verze-objektu .
}
}
}
4 changes: 4 additions & 0 deletions src/component/statistics/assetcount/TermCount.rq
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
PREFIX pdp: <http://onto.fel.cvut.cz/ontologies/slovník/agendový/popis-dat/pojem/>
PREFIX termit: <http://onto.fel.cvut.cz/ontologies/application/termit/pojem/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

Expand All @@ -8,6 +9,9 @@ CONSTRUCT {
GRAPH ?v {
?asset a skos:Concept .
?v <http://onto.fel.cvut.cz/ontologies/slovník/agendový/popis-dat/pojem/má-glosář> ?g .
FILTER NOT EXISTS {
?asset a pdp:verze-pojmu .
}
}
}
}
Loading

0 comments on commit 0ce75e1

Please sign in to comment.