Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmx-systems/dmx-plugin-template
A starter project for developing a DMX plugin
https://github.com/dmx-systems/dmx-plugin-template
Last synced: 3 months ago
JSON representation
A starter project for developing a DMX plugin
- Host: GitHub
- URL: https://github.com/dmx-systems/dmx-plugin-template
- Owner: dmx-systems
- Created: 2017-04-19T16:01:19.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-17T12:59:57.000Z (over 1 year ago)
- Last Synced: 2024-08-08T18:22:53.905Z (6 months ago)
- Language: JavaScript
- Homepage: https://dmx.berlin
- Size: 71.3 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - dmx-systems/dmx-plugin-template - A starter project for developing a DMX plugin (others)
README
# DMX 5 Plugin Template
This project is aimed at [DMX 5](https://github.com/dmx-systems/dmx-platform) plugin developers.
A plugin for the DMX platform can contain both, a server-side part, and/or a client-side part. At client-side a plugin either *extends* the DMX Webclient, or *creates* a complete custom web front-end (which possibly provides its own extension mechanism).
This template project assumes you want develop a DMX plugin that extends the DMX Webclient. It is *not* suited for developing a custom web front-end. You can also use this template to add a server-side part to the plugin later on, however this is not demonstrated here.
### Build DMX 5 from source
The template project assumes you have built DMX 5 from source.
These tools are needed:
- Java 8
- Maven
- Node.js
- gitBuild from source:
```sh
git clone https://github.com/dmx-systems/dmx-platform.git
cd dmx-platform
mvn clean install -P all
```Only when you build DMX 5 from source you will get Hot Module Replacement. Hot Module Replacement provides you a comfortable development experience.
### Clone the template project
Clone the template project inside DMX's `modules-external` directory:
```sh
cd modules-external
git clone https://github.com/dmx-systems/dmx-plugin-template.git
```Cloning inside `modules-external` gives you 2 features without requiring manual configuration:
- For building the production version of the plugin the existing Webpack installation of the DMX installation will be reused (you don't need install Webpack for every plugin project again and again).
- The production build of your plugin is automatically copied to DMX's `bundle-deploy` directory in order to get hot deployed.### Configure Hot Module Replacement
In `dmx-platform/modules/dmx-webclient/src/main/js/plugin-manager.js` look for the comment `// while development add your plugins here` and add a `initPlugin()` call as follows:
```js
// while development add your plugins here
initPlugin(require('modules-external/dmx-plugin-template/src/main/js/plugin.js').default)
```This gives you Hot Module Replacement. That is every time you modify any of your plugin's front-end files (e.g. `.js`, `.vue`) the browser provides you instant feedback. Hot Module Replacement is handled by Webpack Dev Server.
### Start the server(s)
1. Start the DMX server:
```
cd dmx-platform
mvn pax:run
```By default the DMX server listens on port `8080`.
2. In another terminal: start the Webpack Dev Server:
```
cd dmx-platform
npm run dev
```The Webpack Dev Server (which listens on port `8082`) will build the DMX Webclient along with your plugin (as you have added it to `plugin-manager.js`), and then launches the Webclient along with your plugin in a browser window (`http://localhost:8082`).
### What the plugin does
The plugin mounts a "Greetings!" button into the Webclient's toolbar. When you click it, another "Greetings" Note topic is created in the database and revealed on the topicmap.
![greetings-button](img/greetings-button.png)
Although this is trivial functionality the plugin's source code demonstrates a couple of crucial plugin concepts:
* Mounting Vue.js components into the DMX Webclient
* Registering a Vuex store module for managing the plugin's state
* Injecting Webclient dependencies (e.g. `dmx-api`) into components and store module
* Dispatching Webclient actions (e.g. `revealTopic`)### Start developing
Now adapt the plugin to your own needs. Every DMX plugin which extends the standard Webclient has a `src/main/js/plugin.js` file. The `plugin.js` file declares the various assets your plugin provides (e.g. Vue.js components, Vuex store module). Start your inspection there.
While development the result of every modification you make is immediately visible in the browser due to Hot Module Replacement.
### Build plugin for production
```sh
cd dmx-plugin-template
mvn clean package
```This will build a `.jar` file for production and copy it to DMX's `bundle-deploy` directory. The `.jar` file contains your plugin (minified Javascript, extracted CSS, both hashed for longterm caching) and is deployable in every DMX 5 installation. The production build is handled by Webpack. The DMX server serves the plugin front-end assets via http(s).
Test the production build of your plugin by opening the Webclient, but this time as served from the DMX server `http://localhost:8080/systems.dmx.webclient/` (note that the trailing slash is needed). The "Greetings!" button is supposed to appear and function like before. But note that this time the DMX Webclient fetches the plugin's front-end assets (Javascript, CSS) from the DMX server (no Webpack Dev Server involved). You can see this in the browser console:
![fetch-plugin](img/fetch-plugin.png)
### Learn more
To learn more about DMX plugin development have a look at the DMX Developer Guide:
https://docs.dmx.systems/en/latest/devel.html## Version History
**0.7.2** -- Jun 17, 2023
* Compatible with DMX 5.3
**0.7.1** -- Jul 23, 2021
* Compatible with DMX 5.2
**0.7** -- Jan 2, 2021
* Code Examples:
* Dispatching Webclient actions (`revealTopic`)
* Adding Vuex state (`greetingCount`)
* Chore:
* Adapt URLs to `github.com/dmx-systems`
* Code run through `eslint`
* Compatible with DMX 5.1**0.6.1** -- Aug 17, 2020
* Chore:
* Compatible with DMX 5.0
* Revised README**0.6** -- Mar 30, 2020
* Improvement:
* Support code splitting also for CSS
* Chore:
* Adapt to `clean-webpack-plugin` 3.0
* Requires DMX 5.0-beta-7**0.5** -- Nov 25, 2019
* Improvement:
* Default config supports code splitting
* Chore:
* Adapt to DMX 5.0-beta-6
* Revised README**0.4.1** -- Apr 24, 2019
* Chore:
* Adapt to newer `clean-webpack-plugin`
* Depends on DMX 5.0-beta-2**0.4** -- Feb 4, 2019
* Plugin production build:
* CSS extraction
* Add hashes to js and css files to support longterm caching
* Remove old builds
* More example code annotations
* Simplified pom.xml
* Change license to `GPL-3.0-or-later`**0.3** -- Oct 14, 2018
* Illustrates dependency injection (`dm5`, `axios`, `Vue`)
* into `plugin.js`
* into a Vuex store module
* into a Vue component
* Illustrates CSS usage
* New script `stats` runs the Webpack Bundle Analyzer
* Uses the Webpack installation of the DMX platform**0.2** -- Mar 26, 2018
**0.1** -- May 1, 2017