-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathBaseCkeditorPackageAsset.php
126 lines (114 loc) · 3.71 KB
/
BaseCkeditorPackageAsset.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license GPL-3.0-or-later
*/
namespace craft\ckeditor\web\assets;
use Craft;
use craft\web\AssetBundle;
use craft\web\View;
/**
* Base asset bundle class for DLL-compatible CKEditor packages.
*
* Child classes can define a list of CKEditor plugin names and toolbar buttons provided by the package.
*
* If translation files are located in `translations/` relative to the source path, the appropriate translation file
* will automatically be published alongside the JavaScript files defined by [[js]].
*
* @since 3.4.0
*/
abstract class BaseCkeditorPackageAsset extends AssetBundle
{
/**
* Returns the CKEditor UI language that should be used based on the app language.
*
* @return string
* @since 3.5.0
*/
public static function uiLanguage(): string
{
return match (Craft::$app->language) {
'nb', 'nn' => 'no', // https://github.com/craftcms/ckeditor/issues/113
default => strtolower(Craft::$app->language),
};
}
/**
* @var string[] List of CKEditor plugins’ names that should be loaded by default.
*
* Plugins should be defined in the global `window.CKEditor5` object.
*
* ```js
* window.CKEditor5.placeholder = {
* Placeholder: MyPlaceholderPlugin,
* };
* ```
*
* The plugin names listed here should match the plugins’ `pluginName` getter values.
*/
public array $pluginNames = [];
/**
* @var array<string|string[]> List of toolbar items that should be available to CKEditor toolbars.
*
* Each item can be represented in one of these ways:
*
* - The button name, as registered via `editor.ui.componentFactory.add()` (e.g. `'bold'`).
* - An array of button names, if they should always be included together as a group
* (e.g. `['outdent', 'indent']`).
*
* If this list isn’t empty, the plugins referenced by [[pluginNames]] will only be included for editors where at
* least one of the associated toolbar items is selected.
*/
public array $toolbarItems = [];
/**
* @inheritdoc
*/
public function init()
{
parent::init();
$this->includeTranslation();
}
/**
* Registers the plugins and toolbar items provided by this package with `CKEditor5.craftcms.registerPackage()`.
*
* @param View $view
* @since 3.5.0
*/
public function registerPackage(View $view): void
{
if (!empty($this->pluginNames) || !empty($this->toolbarItems)) {
$view->registerJsWithVars(fn($package) => "CKEditor5.craftcms.registerPackage($package);", [
[
'pluginNames' => $this->pluginNames,
'toolbarItems' => $this->toolbarItems,
],
], View::POS_END);
}
}
private function includeTranslation(): void
{
if (in_array(Craft::$app->language, ['en', 'en-US'])) {
// that's what the source files use
return;
}
$language = static::uiLanguage();
if ($this->includeTranslationForLanguage($language)) {
return;
}
// maybe without the territory?
$dashPos = strpos($language, '-');
if ($dashPos !== false) {
$this->includeTranslationForLanguage(substr($language, 0, $dashPos));
}
}
private function includeTranslationForLanguage($language): bool
{
$subpath = "translations/$language.js";
$path = "$this->sourcePath/$subpath";
if (!file_exists($path)) {
return false;
}
$this->js[] = $subpath;
return true;
}
}