Skip to content

Commit 0d14176

Browse files
committed
Update documentation for new qwc2 npm package
1 parent d4143e5 commit 0d14176

File tree

2 files changed

+25
-20
lines changed

2 files changed

+25
-20
lines changed

src/configuration/ViewerConfiguration.md

+6-18
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ A particularly interesting aspect is the configuration of the entries in the app
177177
|`⁣  "shortcut": "<shortcut>"` | Optional, keyboard shortcut which triggers the entry, i.e. `"alt+shift+a"`. |
178178
|`}` | |
179179

180-
*Note:* The built-in icons are those located in [`qwc2-app/qwc2/icons`](https://github.com/qgis/qwc2/tree/master/icons) and in `qwc-app/icons`. The built-in icon names are the respective file names, without `.svg` extension.
180+
*Note:* The built-in icons are those located in [`qwc2/icons`](https://github.com/qgis/qwc2/tree/master/icons) and in `qwc-app/icons`. The built-in icon names are the respective file names, without `.svg` extension.
181181

182182
Also the map buttons ([LocationButton](../references/qwc2_plugins.md#locatebutton), [HomeButton](../references/qwc2_plugins.md#homebutton), [TaskButton](../references/qwc2_plugins.md#taskbutton), [ZoomButton](../references/qwc2_plugins.md#zoombutton)) support `themeFlagBlacklist` and `themeFlagWhitelist` for controlling the visibility based on the [theme flags](ThemesConfiguration.md#manual-theme-configuration).
183183

@@ -288,11 +288,11 @@ The legend print template `assets/templates/legendprint.html` is used when print
288288

289289
## Building a custom viewer <a name="custom-viewer"></a>
290290

291-
The QWC stock application, hosted at [https://github.com/qgis/qwc2/](https://github.com/qgis/qwc2/), can serve as a base for building a custom application. An example of a custom application is hosted at [https://github.com/qgis/qwc2-demo-app](https://github.com/qgis/qwc2-demo-app).
291+
The QWC stock application, hosted at [https://github.com/qgis/qwc2/](https://github.com/qgis/qwc2/), can serve as a base for building a custom application, and is published as an [NPM package](https://www.npmjs.com/package/qwc2). An example of a custom application is hosted at [https://github.com/qgis/qwc2-demo-app](https://github.com/qgis/qwc2-demo-app).
292292

293293
To build a custom viewer, the first step is cloning the demo application:
294294
```bash
295-
git clone --recursive https://github.com/qgis/qwc2-demo-app.git qwc-app
295+
git clone https://github.com/qgis/qwc2-demo-app.git qwc-app
296296
```
297297
The typical layout of a QWC app source tree is as follows:
298298

@@ -310,7 +310,6 @@ The typical layout of a QWC app source tree is as follows:
310310
|`│ ├─ Help.jsx` | Built-in component of custom Help dialog, see [Help dialog](#help-dialog). |
311311
|`│ └─ SearchProviders.js` | Built-in custom search providers, see [Search providers](#search-providers). |
312312
|`├─ icons/` | Application icons. |
313-
|`├─ qwc2/` | Git submodule containing the core QWC components. |
314313
|`├─ index.html` | Entry point. |
315314
|`├─ package.json` | NodeJS configuration file. |
316315
|`└─ webpack.config.js` | Webpack configuration. |
@@ -350,16 +349,8 @@ qwc-map-viewer:
350349
```
351350
### Keeping the QWC application up to date
352351
353-
As mentioned above, QWC is split into a common components repository and an application specific repository. The goal of this approach is to cleanly separate user-specific configuration and components which common components which serve as a basis for all QWC applications, and to make it as easy as possible to rebase the application onto the latest common QWC components.
352+
To update the base QWC components, just update the version of the `qwc2` dependency in `package.json`.
354353

355-
The recommended workflow is to keep the `qwc2` folder a submodule referencing the [upstream qwc2 repository](https://github.com/qgis/qwc2). To update it, just checkout/update the desired branch:
356-
```bash
357-
cd qwc2
358-
git checkout master
359-
# or
360-
git checkout YYYY-lts
361-
git pull
362-
```
363354
The [QWC Upgrade Notes](../release_notes/QWC2UpgradeNotes.md) documents major changes, and in particular all incompatible changes between releases which require changes to the application specific code and/or configuration.
364355

365356

@@ -375,12 +366,9 @@ The [`Settings`](../references/qwc2_plugins.md#settings) furthermore allows grap
375366

376367
### Adding and modify translations
377368

378-
When working inside a `qwc-app` source folder, the translations can be found on two levels:
379-
380-
- At QWC components level, in `qwc-app/qwc2/static/translations`.
381-
- At application level, in `qwc-app/static/translations`.
369+
When working inside a `qwc-app` source folder, the translations are located at `qwc-app/static/translations`.
382370

383-
A script will take care of merging the component translations into the application translations. This way, when updating the QWC submodule, new translations are automatically obtained. This script is automatically invoked on `yarn start`, but can also be manually invoked using
371+
A script will take care of merging the translations from the `qwc2` package into the application translations. This way, when updating the `qwc2` dependency, new translations are automatically obtained. This script is automatically invoked on `yarn start`, but can also be manually invoked using
384372

385373
yarn run tsupdate
386374

src/release_notes/QWC2UpgradeNotes.md

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
11
# Upgrade notes
22

3-
This document describes incompatibilites and other aspects which QWC applications need to address when updating against the latest qwc2 submodule.
3+
This document describes configuration and code incompatibilites, as well as other aspects, which need to addressed when updating to a new version of the QWC viewer.
44

5-
When updating the `qwc2` submodule, run `yarn install` to ensure the dependencies are up to date!
5+
Update to qwc2 2025.4.3
6+
-----------------------
7+
8+
**Switch to npm package**
9+
10+
The [QWC stock viewer ](https://github.com/qgis/qwc2) components are now published as an [NPM package](https://www.npmjs.com/package/qwc2).
11+
If you are building a custom viewer on top of the QWC stock components, it is recommended you pull it in as a dependency in `package.json` rather than as a git submodule.
12+
13+
To this end:
14+
15+
- Delete the submodule and adjust the `package.json` by removing the `qwc2` workspace and adding the `qwc2` dependency, see [`package.json`](https://github.com/qgis/qwc2-demo-app/blob/44b4d16b7c8a8684aa98317351d96de7453a922e/package.json).
16+
- Modify the `webpack.config.js` as follows
17+
```
18+
- new webpack.NormalModuleReplacementPlugin(/openlayers$/, path.join(__dirname, "qwc2", "libs", "openlayers")),
19+
+ new webpack.NormalModuleReplacementPlugin(/openlayers$/, path.join(__dirname, "node_modules", "qwc2", "libs", "openlayers")),
20+
```
21+
22+
No further code changes are necessary.
623

724
Update to qwc2 submodule revision [574fe2a](https://github.com/qgis/qwc2/tree/574fe2a) (06.02.2025)
825
---------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)