Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/devnet-bundle-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
nexus_url: ${{secrets.NEXUS_URL}}
nexus_url_release: ${{secrets.NEXUS_URL_RELEASE}}
nexus_url_snapshots: ${{secrets.NEXUS_URL_SNAPSHOTS}}
release_token: ${{secrets.RELEASE_TOKEN}}
release_token: ${{secrets.TECHNICAL_USER_RELEASE_TOKEN}}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/.idea
/.vs
/.env
**/nbactions.xml
**/*.iml
**/*.lnk
Expand Down
6 changes: 3 additions & 3 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"Vue.volar",
"Esri.arcgis-jsapi-snippets",
"vue.volar",
"esri.arcgis-maps-sdk-js-snippets",
"ctjdr.vscode-apprt-bundles"
]
}
}
7 changes: 7 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@
"script": "watch-types",
"group": "build",
"problemMatcher": [],
},
{
"label": "Init playwright tests",
"detail": "Initialize playwright tests for this bundle",
"type": "npm",
"script": "npm init playwright@latest",
"group": "build"
}
]
}
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![devnet-bundle-snapshot](https://github.com/conterra/mapapps-charting/actions/workflows/devnet-bundle-snapshot.yml/badge.svg)](https://github.com/conterra/mapapps-charting/actions/workflows/devnet-bundle-snapshot.yml)
![Static Badge](https://img.shields.io/badge/tested_for_map.apps-4.17.0-%20?labelColor=%233E464F&color=%232FC050)
![Static Badge](https://img.shields.io/badge/requires_map.apps-4.20.0-e5e5e5?labelColor=%233E464F&logoColor=%23e5e5e5)
![Static Badge](https://img.shields.io/badge/tested_for_map.apps-4.20.0-%20?labelColor=%233E464F&color=%232FC050)
# Charting

The Charting Bundle allows you to display various charts based on data from an AGSSearch store.
Expand All @@ -11,12 +12,8 @@ You can choose of a variety of different chart types like: bar, line, spline, ar
## Sample App
https://demos.conterra.de/mapapps/resources/apps/public_demo_charting/index.html?

## Installation Guide
**Requirement: map.apps 4.11.0 since version 1.10.1**

[dn_charting Documentation](https://github.com/conterra/mapapps-charting/tree/master/src/main/js/bundles/dn_charting)


## Quick start

Clone this project and ensure that you have all required dependencies installed correctly (see [Documentation](https://docs.conterra.de/en/mapapps/latest/developersguide/getting-started/set-up-development-environment.html)).
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
✅ Tested for map.apps 4.18.3 / Linie 4
✅ Tested for map.apps 4.20.0 / Linie 4

#### Release Notes
- autogenerated SNAPSHOT-Release
5 changes: 5 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
const gulp = require("gulp");
const mapapps = require('ct-mapapps-gulp-js');
const mapappsBrowserSync = require("ct-mapapps-browser-sync");
const dotEnv = require("dotenv");
// load .env file if it exits
// the local dev jsregistry will lookup any @@key.property@@ expression, also as environment variable with name "KEY_PROPERTY" for replacement.
dotEnv.config();

const isProduction = process.env.NODE_ENV === "production";
console.info(`Configuring gulp build for ${isProduction ? "production" : "development"}`);
Expand Down Expand Up @@ -107,6 +111,7 @@ mapappsBrowserSync.registerTask({
npmModules: [
"mocha",
"chai",
"sinon",
"@conterra/mapapps-mocha-runner"
]
},
Expand Down
54 changes: 33 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,46 @@
"version": "0.0.1",
"license": "CC0-1.0",
"scripts": {
"check-licenses": "tsx ./src/support/js/check-licenses.ts",
"check-types": "tsc --noEmit",
"watch-types": "tsc -w --noEmit"
"check-licenses": "tsx ./src/support/js/check-licenses.ts",
"check-types": "tsc --noEmit",
"watch-types": "tsc -w --noEmit",
"e2e-test": "playwright test",
"e2e-test:headed": "playwright test --headed",
"e2e-test:ui": "playwright test --ui"
},
"dependencies": {
"@arcgis/core": "4.33.14",
"vue": "2.7.16"
},
"devDependencies": {
"@conterra/ct-mapapps-typings": "~4.18.3",
"@conterra/ct-mapapps-typings": "4.20.0",
"@conterra/mapapps-mocha-runner": "1.1.1",
"@conterra/reactivity-core": "^0.4.0",
"@conterra/reactivity-core": "0.8.0",
"@playwright/test": "^1.52.0",
"@types/chai": "4.3.10",
"@types/chai": "4.3.20",
"@types/license-checker": "^25.0.6",
"@types/mocha": "10.0.4",
"arcgis-js-api": "4.29.10",
"chai": "4.3.10",
"ct-mapapps-browser-sync": "0.0.41",
"ct-mapapps-gulp-js": "0.10.3",
"eslint-config-ct-prodeng": "1.4.0",
"@types/mocha": "10.0.10",
"@types/node": "^22.18.1",
"@types/sinon": "^17.0.3",
"chai": "4.5.0",
"ct-mapapps-browser-sync": "0.0.47",
"ct-mapapps-gulp-js": "0.10.15",
"dojo-typings": "1.11.11",
"dotenv": "17.2.3",
"eslint": "8.57.1",
"eslint-config-ct-prodeng": "1.5.0",
"license-checker": "25.0.1",
"mocha": "10.2.0",
"puppeteer": "21.5.2",
"stylelint": "15.11.0",
"mocha": "11.7.4",
"puppeteer": "24.25.0",
"sinon": "19.0.2",
"stylelint-config-ct-prodeng": "2.0.0",
"stylelint-config-recommended": "13.0.0",
"stylelint-config-recommended-less": "2.0.0",
"stylelint-config-recommended": "13.0.0",
"stylelint": "15.11.0",
"ts-node": "^10.9.1",
"tsx": "^4.6.0",
"typescript": "5.4.5",
"vue": "2.7.15",
"vue-template-compiler": "2.7.15"
}
"tsx": "^4.20.5",
"typescript": "5.9.2",
"vue-template-compiler": "2.7.16"
},
"packageManager": "pnpm@10.18.3"
}
Loading
Loading