-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #216 from Flexberry/add-ember-flexberry-tinymce-ar…
…ticle Статья про ember-flexberry-tinymce
- Loading branch information
Showing
3 changed files
with
70 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
Binary file added
BIN
+31.6 KB
images/pages/products/flexberry-ember/3.x/components/ember-flexberry-tinymce.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions
60
...roducts/flexberry-ember/3.x/additional-addons/ef3_ember_flexberry_tinymce.ru.md
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,60 @@ | ||
--- | ||
title: Аддон Ember flexberry tinymce | ||
sidebar: flexberry-ember-3_sidebar | ||
keywords: Ember Flexberry Tinymce | ||
toc: true | ||
permalink: ru/ef3_ember_flexberry_tinymce.html | ||
lang: ru | ||
summary: Описание аддона Ember flexberry tinymce | ||
--- | ||
|
||
## Описание аддона | ||
|
||
`ember-flexberry-tinymce` - аддон для [ember-flexberry](ef3_landing_page.html), позволяющий встроить в свое приложение WYSIWYG HTML редактор. | ||
|
||
WYSIWYG (является аббревиатурой от англ. What You See Is What You Get, «что видишь, то и получишь») — свойство прикладных программ или веб-интерфейсов, в которых содержание отображается в процессе редактирования. Также широко используется понятие «визуальный редактор». | ||
|
||
Редактор представляет из себя поле для ввода текста и функциями его редакирования, а также включает в себя получившуюся html разметку. Выглядит это следующим образом: | ||
|
||
![Example](/images\pages\products\flexberry-ember\3.x\components\ember-flexberry-tinymce.png) | ||
|
||
## Установка | ||
|
||
Установить аддон в свое ember приложение можно командой: | ||
|
||
```cmd | ||
ember install ember-flexberry-tinymce | ||
``` | ||
|
||
Также нужно установить `broccoli-funnel@^3.0.8` и `tinymce@^6`, выполнив следующие команды: | ||
|
||
```bash | ||
npm install broccoli-funnel@^3.0.8 | ||
npm install tinymce@^6 | ||
``` | ||
|
||
Далее, нужно добавить изменения в файл `ember-cli-build.js`: | ||
|
||
```js | ||
const Funnel = require('broccoli-funnel'); | ||
|
||
module.exports = function(defaults) { | ||
let app = new EmberAddon(defaults, { | ||
// Добавьте эти опции для включения TinyMCE | ||
autoImport: { | ||
webpack: { | ||
externals: { tinymce: 'tinymce' }, | ||
}, | ||
}, | ||
}); | ||
|
||
app.import('node_modules/tinymce/tinymce.min.js'); | ||
|
||
const tinymceTree = new Funnel('node_modules/tinymce/', { | ||
include: ['icons/**/*', 'models/**/*', 'skins/**/*', 'themes/**/*', 'plugins/**/*', 'langs/**/*'], | ||
destDir: '/assets' | ||
}); | ||
|
||
return app.toTree(tinymceTree); | ||
}; | ||
``` |