generated from cloudmaker97/JTL-Plugin-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1f276e2
Showing
17 changed files
with
8,002 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Build Webpack | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
tags: | ||
|
||
env: | ||
PLUGIN_NAME: plugin_test | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: setup_node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 'latest' | ||
|
||
- name: npm_install | ||
working-directory: ./frontend/webpack | ||
run: npm install | ||
|
||
- name: build_webpack | ||
working-directory: ./frontend/webpack | ||
run: npm run build | ||
|
||
- name: node_cleanup | ||
working-directory: ./frontend/webpack | ||
run: rm -rf node_modules | ||
|
||
- name: version | ||
id: get_version | ||
uses: michmich112/extract-version@main | ||
with: | ||
version-file: info.xml | ||
schema: major.minor.build | ||
|
||
- name: zip | ||
run: | | ||
mkdir temp_dir | ||
rm .git -rf | ||
find . -type f -not -path '*/temp_dir/*' -exec cp --parents '{}' './temp_dir/' \; | ||
mv temp_dir ${{ env.PLUGIN_NAME }} | ||
zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }} | ||
- name: release | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: ./${{ env.PLUGIN_NAME }}.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php declare(strict_types=1); | ||
/** | ||
* @package Plugin\plugin_test | ||
* @author Dennis Heinrich | ||
*/ | ||
|
||
namespace Plugin\plugin_test; | ||
|
||
use JTL\Events\Dispatcher; | ||
use JTL\Plugin\Bootstrapper; | ||
|
||
/** | ||
* Class Bootstrap | ||
* @package Plugin\plugin_test | ||
*/ | ||
class Bootstrap extends Bootstrapper | ||
{ | ||
/** | ||
* Executed on each plugin call (e.g. on each page visit) | ||
* @param Dispatcher $dispatcher | ||
* @return void | ||
*/ | ||
public function boot(Dispatcher $dispatcher): void | ||
{ | ||
parent::boot($dispatcher); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# BSD 3-Clause License | ||
|
||
Copyright (c) 2023, Dennis Heinrich | ||
<https://dennis-heinri.ch> | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
4. Links and references to the original author's website may not be removed from the files. | ||
It is not allowed to change it in any ways, nor to hide it. Links must be clearly visible. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
# Entwicklungsvorlage für Plugins | ||
|
||
Für Fragen zur Nutzung des Plugins kann man sich an mich per E-Mail wenden: | ||
|
||
- Dennis Heinrich <der@dennis-heinri.ch> | ||
|
||
## Mitgelieferte Features | ||
|
||
Diese Vorlage kommt mit folgenden Technologien: | ||
|
||
- Bootstrap Klasse | ||
- Webpack Bundler | ||
- TypeScript | ||
- SCSS Loader | ||
- TailwindCSS | ||
|
||
### Was ist Webpack? | ||
|
||
Webpack ist ein Bundler, der alle Dateien (JavaScript, CSS und ggf. Bilder) in eine einzelne Datei | ||
bündelt: Das Resultat ist das Bundle. Dabei werden alle SCSS Dateien in CSS Dateien kompiliert. | ||
Der Vorteil darin ist, dass Anfragen an den Shop gespart werden und die Seitengeschwindigkeit erhöht wird. | ||
|
||
### Was ist TailwindCSS? | ||
|
||
TailwindCSS ist ein CSS-Framework, das es ermöglicht, CSS direkt im HTML zu schreiben (ohne dabei Inline) | ||
zu sein. Es ist sehr flexibel und kann mit SCSS kombiniert werden und ist eine moderne Alternative zu | ||
überladenen CSS-Frameworks wie Bootstrap, denn Tailwind kompiliert ausschließlich die verwendeten Klassen | ||
und nicht das gesamte Framework in das Webpack Bundle. | ||
|
||
Wenn man mit dem Umgang nicht vertraut ist, kann das einfach ignoriert werden, denn wie bereits erwähnt wurde, | ||
werden nur benutzte Klassen kompiliert und erhöht nicht die Dateigröße vom Webpack Bundle. | ||
|
||
### Was ist TypeScript? | ||
|
||
TypeScript ist eine Programmiersprache, die auf JavaScript basiert. Sie bietet die Möglichkeit, Typen zu definieren, | ||
was die Entwicklung qualitativ aufwerten kann. Statt .js Dateien werden .ts Dateien verwendet, die dann in .js Dateien | ||
kompiliert werden. | ||
|
||
TypeScript zu schreiben ist optional und kann auch ignoriert werden, denn man kann auch reines JavaScript in die Datei | ||
schreiben. Dennoch muss nach dem Ändern der Datei das Webpack Bundle neu gebaut werden. | ||
|
||
## Entwicklung starten | ||
|
||
### Namespace anpassen | ||
|
||
Das Plugin benötigt einen einmaligen Namespace. Dieser muss in auch der Datei `./plugin.xml` angepasst werden. | ||
Die einfachste Lösung ist, im gesamtem Plugin nach `plugin_test` zu suchen und durch den gewünschten Namespace zu | ||
ersetzen, z.B. `meine_firma_plugin_fuer_funktion_xy`. Gängige Praxis ist es, ein Präfix zu verwenden, das allen | ||
eigenen Plugins vorangestellt wird, z.B. `meine_firma` und anschließend der technische Name des Plugins, z.B. `plugin_fuer_funktion_xy`. | ||
|
||
### README.md anpassen | ||
|
||
Die Datei `README.md` ist die Datei, die auf GitHub und im Plugin unter dem Tab "Dokumentation" angezeigt wird. | ||
Sie sollte mit Informationen zum Plugin angepasst werden, damit Nutzer die Funktion des Plugins verstehen. | ||
|
||
### Webpack Bundle bauen | ||
|
||
Damit das Webpack Bundle gebaut werden kann, müssen die Projekt-Voraussetzungen erfüllt sein. Dann muss die | ||
Kommandozeile im Ordner (`./frontend/webpack`) geöffnet werden. | ||
|
||
Um die Abhängigkeiten für Webpack zu installieren, müssen folgende Befehle ausgeführt werden: | ||
```shell | ||
npm install # Für Nutzer, die npm nutzen | ||
pnpm install # Für Nutzer, die pnpm nutzen | ||
``` | ||
|
||
Wenn nun entwickelt wird, muss bei sämtlichen Änderungen das Webpack Bundle neu gebaut werden. Dafür gibt es zwei | ||
verschiedene Befehle: einen um das Bundle einmalig zu bauen und einen um das Bundle bei Änderungen automatisch neu | ||
zu bauen. Bei der automatischen Variante muss die Kommandozeile offen bleiben. | ||
|
||
Für das einmalige Bauen des Bundles: | ||
```shell | ||
npm run build # Für Nutzer, die npm nutzen | ||
pnpm run build # Für Nutzer, die pnpm nutzen | ||
``` | ||
|
||
Für das automatische Bauen nach Änderung einer Datei: | ||
```shell | ||
npm run watch # Für Nutzer, die npm nutzen | ||
pnpm run watch # Für Nutzer, die pnpm nutzen | ||
``` | ||
|
||
### Veröffentlichung eines Plugins (Workflow) | ||
|
||
Wenn das Plugin fertig entwickelt wurde, kann es veröffentlicht werden. Dazu gehört u.a. das abschließende | ||
Bauen des Webpack Bundles und das Erstellen eines ZIP-Archivs. Um dem Entwickler eine | ||
einfache Möglichkeit zu geben, Versionen zu erstellen und zu veröffentlichen, gibt es ein GitHub-Workflow. | ||
|
||
Der Workflow wird automatisch nach einem Push auf GitHub ausgeführt, wenn ein neuer Tag mit Git erstellt wurde. So kann man | ||
wenn man eine neue Version erstellt hat, einen Tag mit der Versionsnummer erstellen und alle Schritte werden automatisch | ||
ausgeführt. Das Plugin bekommt dann unter dem Tab "Releases" auf GitHub einen Eintrag mit der Versionsnummer und dem Link zum | ||
Download des fertigen Plugins. Das erstellen eines Tags kann mit folgendem Befehl ausgeführt werden: | ||
|
||
```shell | ||
git tag 1.0.0 # Für die Version 1.0.0 | ||
git push --tags # Tags auf GitHub hochladen | ||
``` | ||
|
||
## Voraussetzungen | ||
|
||
- NodeJS mit `npm` oder `pnpm` | ||
- JTL Shop auf 5.0.0 oder höher | ||
- PHP 7.4 oder höher |
Empty file.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"name": "plugin_test", | ||
"version": "1.0.0", | ||
"description": "Frontend-Bundle für das Plugin", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"build": "webpack --mode=production --node-env=production", | ||
"build:dev": "webpack --mode=development", | ||
"build:prod": "webpack --mode=production --node-env=production", | ||
"watch": "webpack --watch" | ||
}, | ||
"author": "Dennis Heinrich", | ||
"license": "Siehe LICENSE des Plugins", | ||
"devDependencies": { | ||
"@babel/core": "^7.22.19", | ||
"@babel/preset-env": "^7.22.15", | ||
"@webpack-cli/generators": "^3.0.7", | ||
"autoprefixer": "^10.4.15", | ||
"babel-loader": "^9.1.3", | ||
"css-loader": "^6.8.1", | ||
"postcss": "^8.4.29", | ||
"postcss-loader": "^7.3.3", | ||
"postcss-preset-env": "^9.1.3", | ||
"prettier": "^3.0.3", | ||
"style-loader": "^3.3.3", | ||
"tailwindcss": "^3.3.3", | ||
"ts-loader": "^9.4.4", | ||
"typescript": "^5.2.2", | ||
"webpack": "^5.88.2", | ||
"webpack-cli": "^5.1.4", | ||
"webpack-dev-server": "^4.15.1" | ||
} | ||
} |
Oops, something went wrong.