diff --git a/README.md b/README.md index 77b52e4..6f08e51 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,13 @@ Buy here. Ngx-jodit-proJodit ProAngularTypeDemoReadme -npmv1.x>= v12ModuleDemoReadme +npmv4.x>= v16StandaloneDemoReadme -npmv2.x>= v12ModuleDemoReadme +npmv4.xv12 - v15ModuleDemoReadme -npmv2.x>= v16StandaloneDemoReadme +v1.x (deprecated)v1.xv12 - v15ModuleDemoReadme diff --git a/libs/ngx-jodit-pro/README.md b/libs/ngx-jodit-pro/README.md index d1ad396..c0eb3d9 100644 --- a/libs/ngx-jodit-pro/README.md +++ b/libs/ngx-jodit-pro/README.md @@ -1,9 +1,12 @@ -# ngx-jodit-pro v2.x (beta) +# ngx-jodit-pro v2.x Angular wrapper for Jodit PRO WYSIWYG editor. It supports Angular >= 12 and jodit-pro beta. You need a license key in order to use this wrapper. Buy here. ## License -This package does not contain the source code of Jodit Pro. You have to install it as described here (scroll down). This wrapper is licensed under MIT License, Jodit Pro is licensed seperately ([see license](https://xdsoft.net/jodit/pro/license/)). + +This package does not contain the source code of Jodit Pro. You have to install it as described here (scroll down). This +wrapper is licensed under MIT License, Jodit Pro is licensed +seperately ([see license](https://xdsoft.net/jodit/pro/license/)). ## Compatibility table @@ -11,37 +14,45 @@ This package does not contain the source code of Jodit Pro. You have to install Ngx-jodit-proJodit ProAngularTypeDemoReadme -npmv1.x>= v12ModuleDemoReadme +npmv4.x>= v16StandaloneDemoReadme -npmv2.x>= v12ModuleDemoReadme +npmv4.xv12 - v15ModuleDemoReadme -npmv2.x>= v16StandaloneDemoReadme +v1.x (deprecated)v1.xv12 - v15ModuleDemoReadme ## Demo -You can find a demo of ngx-jodit-pro 2.x [here](https://github.julianpoemp.com/ngx-jodit-pro/2.x/). +You can find a demo of ngx-jodit-pro 3.x [here](https://github.julianpoemp.com/ngx-jodit-pro/2.x/). + +## Remarks + +ESM for Jodit-Pro is not currently working. See [issue 34](https://github.com/julianpoemp/ngx-jodit/issues/34). You have to include the es2021 build (see installation). ## Installation -1. Make sure that jodit-pro@beta AND jodit@beta is installed: +1. Make sure that jodit-pro@4 AND jodit@4 is installed: ``` - npm install jodit-pro@beta jodit@beta --save + npm install jodit-pro@4 jodit@4 --save ``` 2. ``` npm install ngx-jodit-pro@2x --save ``` -3. Add the following path to your app's styles in angular.json (or project.json for +3. Add the following paths to your app's styles and scripts in angular.json (or project.json for Nx): ``` ... , "styles": [ - "node_modules/jodit-pro/es2021/jodit.fat.min.css", + "node_modules/jodit-pro/es2021/jodit.min.css", + ... + ], + "scripts": [ + "node_modules/jodit-pro/es2021/jodit.min.js", ... ], ... @@ -58,17 +69,43 @@ You can find a demo of ngx-jodit-pro 2.x [here](https://github.julianpoemp.com/n ... }) ``` -6. Now you can use the component - - ```angular2html - +5. Add `"skipLibCheck": true` to compilerOptions in your `tsconfig.app.json`. This is needed because the + check fails to typing errors of the jodit package. **This is still the issue in v4**. If you know any other solution, let me know :): + ``` + ... + "compilerOptions": { + ..., + "skipLibCheck": true + } + ... ``` -## Usage +6. Each toolbar element by Jodit v4 is considered as plugin. While basic plugins are imported automatically, you have to import other plugins manually. See section "How to import plugins". + +7. Now you can use the component. See [example here](https://github.com/julianpoemp/ngx-jodit/tree/v2.x/apps/demo-pro). + +- Without AngularForms: + + ```angular2html + + ``` + +- With AngularForms (make sure to import AngularForms): + - Template driven + + ```angular2html + + ``` + - Reactive + ```angular2html +
+ +
+ ``` -### Using Jodit Pro API +If you are facing any issues have a look on [Troubleshooting](https://github.com/julianpoemp/ngx-jodit/blob/main/libs/ngx-jodit/README.md#troubleshooting) first. Create an issue if it's not solved. -### Use (Pro) plugins +## How to import plugins You can install plugins from Jodit and Jodit Pro. For more information about Jodit Pro plugins see [Jodit Pro Docs](https://xdsoft.net/jodit/pro/docs/). @@ -78,16 +115,23 @@ You can install plugins from Jodit and Jodit Pro. For more information about Jod 4. Import "jodit" and the path to this file in a Typescript file of your application. E.g. the Angular component that includes ngx-jodit-pro. For example: ```typescript -import "jodit"; import "node_modules/jodit-pro/esm/plugins/tune-block/tune-block.js"; + +declare const Jodit: any; // <- needed because of missing ESM, see issue 34 +Jodit.lang.de = de; ``` +You can import your plugins wherever you want, e.g. in a global ts file that's imported anyway like index.ts or main.ts files. + Now you can apply the plugin options to ngx-jodit-pro `options` property. For example: ```typescript import {JoditProConfig} from 'ngx-jodit-pro'; +import "node_modules/jodit-pro/esm/plugins/tune-block/tune-block.js"; + +declare const Jodit: any; // <- needed because of missing ESM, see issue 34 -options:JoditProConfig = { +options: JoditProConfig = { tuneBlock: { popup: { p: Jodit.atom(['align', 'tune.up', 'tune.remove', 'tune.down']) @@ -101,6 +145,7 @@ options:JoditProConfig = { You can access the initialized Jodit from the attribute "jodit" of the NgxJoditProComponent to use the Pro API: Any component.ts: + ````Typescript import {ViewChild} from '@angular/core'; @@ -108,16 +153,18 @@ import {ViewChild} from '@angular/core'; @ViewChild("joditComponent") joditComponent?: NgxJoditProComponent; // in ngAfterViewInit -if (this.joditComponent){ +if (this.joditComponent) { // example: - this.joditComponent.jodit.plugins.add("hello", ()=>{ + this.joditComponent.jodit.plugins.add("hello", () => { alert("hello!"); }); } ```` Any component.html: + ```HTML + ``` @@ -149,10 +196,15 @@ All [options](https://xdsoft.net/jodit/docs/classes/config.Config.html) from Jod -### Events for ngx-jodit -

- You can bind events using the Angular way, e.g.:
<ngx-jodit (joditChange)="onChange($event)"></ngx-jodit> -

+## Events for ngx-jodit + +You can bind events using the Angular way, e.g.: + +```angular2html + + +``` + @@ -219,3 +271,7 @@ All [options](https://xdsoft.net/jodit/docs/classes/config.Config.html) from Jod
+ +## Troubleshooting + +- **Some of the buttons don't show any icon**
Check your options if you used the correct button names. If yes, check the folder `node_modules/jodit/es2021/plugins/` for a folder named like the button you want to use. Then import the found plugin to your app as described [here](https://github.com/julianpoemp/ngx-jodit/blob/main/libs/ngx-jodit-pro/README.md#how-to-import-plugins). If that doesn't helpt look in the web console for an error message that indicates a missing plugin.