Skip to content

Commit 2833d50

Browse files
authored
Merge pull request #454 from ckeditor/editor-integration/angular/add-usage-data
Feature: Align integration to work with self-service for premium features.
2 parents 7e60966 + 970b9af commit 2833d50

7 files changed

+90
-33
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
"@angular/platform-browser": "^16",
2828
"@angular/platform-browser-dynamic": "^16",
2929
"@angular/router": "^16",
30+
"@ckeditor/ckeditor5-integrations-common": "^2.2.0",
3031
"core-js": "^3.21.1",
3132
"rxjs": "^6.5.5",
3233
"tslib": "^2.0.3",
33-
"zone.js": "~0.13.0",
34-
"@ckeditor/ckeditor5-integrations-common": "^2.0.0"
34+
"zone.js": "~0.13.0"
3535
},
3636
"devDependencies": {
3737
"@angular-devkit/build-angular": "^16",

scripts/preparepackages.mjs

+16-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const __dirname = upath.dirname( __filename );
2222
const latestVersion = releaseTools.getLastFromChangelog();
2323
const versionChangelog = releaseTools.getChangesForVersion( latestVersion );
2424
const CKEDITOR5_ANGULAR_ROOT_DIR = upath.join( __dirname, '..' );
25+
const SOURCE_DIR = upath.join( CKEDITOR5_ANGULAR_ROOT_DIR, 'src', 'ckeditor' );
2526
const DIST_DIR = upath.join( CKEDITOR5_ANGULAR_ROOT_DIR, 'dist' );
2627
const RELEASE_ANGULAR_DIR = upath.join( CKEDITOR5_ANGULAR_ROOT_DIR, 'release', 'ckeditor5-angular' );
2728

@@ -68,6 +69,19 @@ const tasks = new Listr( [
6869
return false;
6970
}
7071
},
72+
{
73+
title: 'Updating version in usage data plugin.',
74+
task: async () => {
75+
const pluginPath = upath.join( SOURCE_DIR, 'plugins', 'angular-integration-usage-data.plugin.ts' );
76+
const content = await fs.readFile( pluginPath, 'utf8' );
77+
const updated = content.replace(
78+
/(?<=\/\* replace-version:start \*\/).*?(?=\/\* replace-version:end \*\/)/,
79+
` '${ latestVersion }' `
80+
);
81+
82+
await fs.writeFile( pluginPath, updated );
83+
}
84+
},
7185
{
7286
title: 'Generating the `dist` directory.',
7387
task: () => {
@@ -119,7 +133,8 @@ const tasks = new Listr( [
119133
return releaseTools.commitAndTag( {
120134
version: latestVersion,
121135
files: [
122-
'package.json'
136+
'package.json',
137+
'src/ckeditor/plugins/angular-integration-usage-data.plugin.ts'
123138
]
124139
} );
125140
},

src/ckeditor/ckeditor.component.spec.ts

+16
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { TestBed, type ComponentFixture } from '@angular/core/testing';
88

99
import { AngularEditor } from 'src/editor/editor';
1010
import { CKEditorComponent } from './ckeditor.component';
11+
import { AngularIntegrationUsageDataPlugin } from './plugins/angular-integration-usage-data.plugin';
1112

1213
describe( 'CKEditorComponent', () => {
1314
let component: CKEditorComponent;
@@ -128,6 +129,21 @@ describe( 'CKEditorComponent', () => {
128129
} );
129130
} );
130131

132+
describe( 'getConfig', () => {
133+
it( 'should return config with AngularIntegrationUsageDataPlugin if non-free license passed', async () => {
134+
( window as any ).CKEDITOR_VERSION = '44.0.0';
135+
component.config.licenseKey = 'foo';
136+
137+
fixture.detectChanges();
138+
139+
await waitCycle();
140+
141+
const config = ( component as any ).getConfig();
142+
143+
expect( config.extraPlugins ).toContain( AngularIntegrationUsageDataPlugin );
144+
} );
145+
} );
146+
131147
describe( 'component data', () => {
132148
it( 'initial data should be empty', async () => {
133149
fixture.detectChanges();

src/ckeditor/ckeditor.component.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ import type {
3737
import type { ControlValueAccessor } from '@angular/forms';
3838

3939
import { uid } from '@ckeditor/ckeditor5-integrations-common';
40+
import { appendAllIntegrationPluginsToConfig } from './plugins/append-all-integration-plugins-to-config';
4041

4142
const ANGULAR_INTEGRATION_READ_ONLY_LOCK_ID = 'Lock from Angular integration (@ckeditor/ckeditor5-angular)';
4243

@@ -453,7 +454,7 @@ export class CKEditorComponent<TEditor extends Editor = Editor> implements After
453454
config.initialData = initialData;
454455
}
455456

456-
return config;
457+
return appendAllIntegrationPluginsToConfig( config );
457458
}
458459

459460
/**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3+
* For licensing, see LICENSE.md.
4+
*/
5+
6+
import { VERSION } from '@angular/core';
7+
import { createIntegrationUsageDataPlugin } from '@ckeditor/ckeditor5-integrations-common';
8+
9+
/**
10+
* This part of the code is not executed in open-source implementations using a GPL key.
11+
* It only runs when a specific license key is provided. If you are uncertain whether
12+
* this applies to your installation, please contact our support team.
13+
*/
14+
export const AngularIntegrationUsageDataPlugin = createIntegrationUsageDataPlugin(
15+
'angular',
16+
{
17+
version: /* replace-version:start */ '9.0.0' /* replace-version:end */,
18+
frameworkVersion: VERSION.full
19+
}
20+
);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/**
2+
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3+
* For licensing, see LICENSE.md.
4+
*/
5+
6+
import { appendExtraPluginsToEditorConfig, isCKEditorFreeLicense } from '@ckeditor/ckeditor5-integrations-common';
7+
import type { EditorConfig, PluginConstructor } from 'ckeditor5';
8+
9+
import { AngularIntegrationUsageDataPlugin } from './angular-integration-usage-data.plugin';
10+
11+
/**
12+
* Appends all integration plugins to the editor configuration.
13+
*
14+
* @param editorConfig The editor configuration.
15+
* @returns The editor configuration with all integration plugins appended.
16+
*/
17+
export function appendAllIntegrationPluginsToConfig( editorConfig: EditorConfig ): EditorConfig {
18+
const extraPlugins: Array<PluginConstructor> = [];
19+
20+
if ( !isCKEditorFreeLicense( editorConfig.licenseKey ) ) {
21+
/**
22+
* This part of the code is not executed in open-source implementations using a GPL key.
23+
* It only runs when a specific license key is provided. If you are uncertain whether
24+
* this applies to your installation, please contact our support team.
25+
*/
26+
extraPlugins.push( AngularIntegrationUsageDataPlugin );
27+
}
28+
29+
return appendExtraPluginsToEditorConfig( editorConfig, extraPlugins );
30+
}

yarn.lock

+4-29
Original file line numberDiff line numberDiff line change
@@ -2258,7 +2258,7 @@
22582258
"@ckeditor/ckeditor5-utils" "43.3.1"
22592259
ckeditor5 "43.3.1"
22602260

2261-
"@ckeditor/ckeditor5-integrations-common@^2.0.0":
2261+
"@ckeditor/ckeditor5-integrations-common@^2.2.0":
22622262
version "2.2.0"
22632263
resolved "https://registry.yarnpkg.com/@ckeditor/ckeditor5-integrations-common/-/ckeditor5-integrations-common-2.2.0.tgz#3eb75e21eddc880c87a675125ec3fcfe0c258847"
22642264
integrity sha512-qH68tqgyMibuejo+VAJ+iSH3ZmZweqBEzaawv9hZb4zzSMkBityWBjSc2hKXMtmJgCNsbSK84cyHpa5J/MNyLg==
@@ -12055,16 +12055,7 @@ [email protected]:
1205512055
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
1205612056
integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
1205712057

12058-
"string-width-cjs@npm:string-width@^4.2.0":
12059-
version "4.2.3"
12060-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
12061-
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
12062-
dependencies:
12063-
emoji-regex "^8.0.0"
12064-
is-fullwidth-code-point "^3.0.0"
12065-
strip-ansi "^6.0.1"
12066-
12067-
"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
12058+
"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
1206812059
version "4.2.3"
1206912060
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
1207012061
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -12105,14 +12096,7 @@ stringify-object@^3.3.0:
1210512096
is-obj "^1.0.1"
1210612097
is-regexp "^1.0.0"
1210712098

12108-
"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
12109-
version "6.0.1"
12110-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
12111-
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
12112-
dependencies:
12113-
ansi-regex "^5.0.1"
12114-
12115-
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
12099+
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
1211612100
version "6.0.1"
1211712101
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1211812102
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -13029,7 +13013,7 @@ workerpool@^6.5.1:
1302913013
resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.5.1.tgz#060f73b39d0caf97c6db64da004cd01b4c099544"
1303013014
integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==
1303113015

13032-
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
13016+
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
1303313017
version "7.0.0"
1303413018
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
1303513019
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -13047,15 +13031,6 @@ wrap-ansi@^6.2.0:
1304713031
string-width "^4.1.0"
1304813032
strip-ansi "^6.0.0"
1304913033

13050-
wrap-ansi@^7.0.0:
13051-
version "7.0.0"
13052-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
13053-
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
13054-
dependencies:
13055-
ansi-styles "^4.0.0"
13056-
string-width "^4.1.0"
13057-
strip-ansi "^6.0.0"
13058-
1305913034
wrap-ansi@^8.1.0:
1306013035
version "8.1.0"
1306113036
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"

0 commit comments

Comments
 (0)