Explorar o código

Merge branch 'master' into t/ckeditor5/1343

Aleksander Nowodzinski %!s(int64=7) %!d(string=hai) anos
pai
achega
8f58a32038
Modificáronse 54 ficheiros con 409 adicións e 130 borrados
  1. 1 1
      packages/ckeditor5-media-embed/.eslintrc.js
  2. 6 5
      packages/ckeditor5-media-embed/.travis.yml
  3. 20 0
      packages/ckeditor5-media-embed/CHANGELOG.md
  4. 1 1
      packages/ckeditor5-media-embed/LICENSE.md
  5. 1 1
      packages/ckeditor5-media-embed/docs/_snippets/features/build-media-source.js
  6. 2 2
      packages/ckeditor5-media-embed/docs/_snippets/features/media-embed.js
  7. 1 1
      packages/ckeditor5-media-embed/docs/features/media-embed.md
  8. 2 1
      packages/ckeditor5-media-embed/lang/contexts.json
  9. 30 0
      packages/ckeditor5-media-embed/lang/translations/az.po
  10. 5 1
      packages/ckeditor5-media-embed/lang/translations/cs.po
  11. 5 1
      packages/ckeditor5-media-embed/lang/translations/de.po
  12. 5 1
      packages/ckeditor5-media-embed/lang/translations/en.po
  13. 5 1
      packages/ckeditor5-media-embed/lang/translations/et.po
  14. 5 1
      packages/ckeditor5-media-embed/lang/translations/fa.po
  15. 6 2
      packages/ckeditor5-media-embed/lang/translations/fr.po
  16. 5 1
      packages/ckeditor5-media-embed/lang/translations/gl.po
  17. 5 1
      packages/ckeditor5-media-embed/lang/translations/hr.po
  18. 5 1
      packages/ckeditor5-media-embed/lang/translations/hu.po
  19. 5 1
      packages/ckeditor5-media-embed/lang/translations/it.po
  20. 30 0
      packages/ckeditor5-media-embed/lang/translations/ku.po
  21. 5 1
      packages/ckeditor5-media-embed/lang/translations/ne.po
  22. 5 1
      packages/ckeditor5-media-embed/lang/translations/no.po
  23. 5 1
      packages/ckeditor5-media-embed/lang/translations/pl.po
  24. 5 1
      packages/ckeditor5-media-embed/lang/translations/pt-br.po
  25. 5 1
      packages/ckeditor5-media-embed/lang/translations/sq.po
  26. 5 1
      packages/ckeditor5-media-embed/lang/translations/tr.po
  27. 5 1
      packages/ckeditor5-media-embed/lang/translations/uk.po
  28. 5 1
      packages/ckeditor5-media-embed/lang/translations/zh-cn.po
  29. 29 25
      packages/ckeditor5-media-embed/package.json
  30. 7 3
      packages/ckeditor5-media-embed/src/automediaembed.js
  31. 1 1
      packages/ckeditor5-media-embed/src/converters.js
  32. 1 1
      packages/ckeditor5-media-embed/src/mediaembed.js
  33. 5 11
      packages/ckeditor5-media-embed/src/mediaembedcommand.js
  34. 16 11
      packages/ckeditor5-media-embed/src/mediaembedediting.js
  35. 4 3
      packages/ckeditor5-media-embed/src/mediaembedtoolbar.js
  36. 17 4
      packages/ckeditor5-media-embed/src/mediaembedui.js
  37. 1 1
      packages/ckeditor5-media-embed/src/mediaregistry.js
  38. 23 6
      packages/ckeditor5-media-embed/src/ui/mediaformview.js
  39. 45 9
      packages/ckeditor5-media-embed/src/utils.js
  40. 28 2
      packages/ckeditor5-media-embed/tests/automediaembed.js
  41. 1 1
      packages/ckeditor5-media-embed/tests/insertmediacommand.js
  42. 1 1
      packages/ckeditor5-media-embed/tests/manual/mediaembed.js
  43. 1 1
      packages/ckeditor5-media-embed/tests/manual/semanticmediaembed.js
  44. 1 1
      packages/ckeditor5-media-embed/tests/mediaembed.js
  45. 7 3
      packages/ckeditor5-media-embed/tests/mediaembedediting.js
  46. 4 3
      packages/ckeditor5-media-embed/tests/mediaembedtoolbar.js
  47. 6 1
      packages/ckeditor5-media-embed/tests/mediaembedui.js
  48. 1 1
      packages/ckeditor5-media-embed/tests/mediaregistry.js
  49. 9 5
      packages/ckeditor5-media-embed/tests/ui/mediaformview.js
  50. 1 1
      packages/ckeditor5-media-embed/theme/icons/media-placeholder.svg
  51. 1 1
      packages/ckeditor5-media-embed/theme/icons/media.svg
  52. 12 1
      packages/ckeditor5-media-embed/theme/mediaembed.css
  53. 1 1
      packages/ckeditor5-media-embed/theme/mediaembedediting.css
  54. 1 1
      packages/ckeditor5-media-embed/theme/mediaform.css

+ 1 - 1
packages/ckeditor5-media-embed/.eslintrc.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 

+ 6 - 5
packages/ckeditor5-media-embed/.travis.yml

@@ -9,17 +9,18 @@ addons:
     - google-chrome-stable
     - google-chrome-stable
 language: node_js
 language: node_js
 node_js:
 node_js:
-- '6'
+- '8'
 cache:
 cache:
-- node_modules
+  yarn: true
 branches:
 branches:
-   except:
-   - stable
+  except:
+  - stable
 before_install:
 before_install:
 - export DISPLAY=:99.0
 - export DISPLAY=:99.0
 - sh -e /etc/init.d/xvfb start
 - sh -e /etc/init.d/xvfb start
+- npm i -g yarn
 install:
 install:
-- npm install @ckeditor/ckeditor5-dev-tests
+- yarn add @ckeditor/ckeditor5-dev-tests
 - ckeditor5-dev-tests-install-dependencies
 - ckeditor5-dev-tests-install-dependencies
 script:
 script:
 - ckeditor5-dev-tests-travis
 - ckeditor5-dev-tests-travis

+ 20 - 0
packages/ckeditor5-media-embed/CHANGELOG.md

@@ -1,6 +1,26 @@
 Changelog
 Changelog
 =========
 =========
 
 
+## [10.1.0](https://github.com/ckeditor/ckeditor5-media-embed/compare/v10.0.0...v10.1.0) (2018-12-05)
+
+### Features
+
+* Implemented a tip in the form that helps users discover the auto embedding. Closes [#35](https://github.com/ckeditor/ckeditor5-media-embed/issues/35). ([ebdec7e](https://github.com/ckeditor/ckeditor5-media-embed/commit/ebdec7e))
+* Improved responsiveness of the media form view in narrow viewports (see [ckeditor/ckeditor5#416](https://github.com/ckeditor/ckeditor5/issues/416)). ([c753463](https://github.com/ckeditor/ckeditor5-media-embed/commit/c753463))
+
+### Bug fixes
+
+* Floated content and media widgets should not overlap. Closes [#53](https://github.com/ckeditor/ckeditor5-media-embed/issues/53). ([d3aa6e8](https://github.com/ckeditor/ckeditor5-media-embed/commit/d3aa6e8))
+* Made the media interactive when the editor is in the read-only mode (just like links). Closes [#58](https://github.com/ckeditor/ckeditor5-media-embed/issues/58). ([09c387a](https://github.com/ckeditor/ckeditor5-media-embed/commit/09c387a))
+* The `AutoMediaEmbed` should not upcast the pasted URL if a media element is disallowed at the current selection. Closes [#47](https://github.com/ckeditor/ckeditor5-media-embed/issues/47). ([47092c6](https://github.com/ckeditor/ckeditor5-media-embed/commit/47092c6))
+
+### Other changes
+
+* Improved SVG icons size. See [ckeditor/ckeditor5-theme-lark#206](https://github.com/ckeditor/ckeditor5-theme-lark/issues/206). ([b95fc42](https://github.com/ckeditor/ckeditor5-media-embed/commit/b95fc42))
+* Moved widget spacing styles from `@ckeditor/ckeditor5-theme-lark` to the feature content styles sheet (see [ckeditor/ckeditor5-theme-lark#209](https://github.com/ckeditor/ckeditor5-theme-lark/issues/209)). ([501a567](https://github.com/ckeditor/ckeditor5-media-embed/commit/501a567))
+* Updated translations. ([58614b0](https://github.com/ckeditor/ckeditor5-media-embed/commit/58614b0)) ([120912c](https://github.com/ckeditor/ckeditor5-media-embed/commit/120912c)) ([e1b4206](https://github.com/ckeditor/ckeditor5-media-embed/commit/e1b4206)) ([c376e7f](https://github.com/ckeditor/ckeditor5-media-embed/commit/c376e7f))
+
+
 ## [10.0.0](https://github.com/ckeditor/ckeditor5-media-embed/tree/v10.0.0) (2018-10-08)
 ## [10.0.0](https://github.com/ckeditor/ckeditor5-media-embed/tree/v10.0.0) (2018-10-08)
 
 
 Initial implementation of the media embed feature.
 Initial implementation of the media embed feature.

+ 1 - 1
packages/ckeditor5-media-embed/LICENSE.md

@@ -2,7 +2,7 @@ Software License Agreement
 ==========================
 ==========================
 
 
 **CKEditor 5 Media Embed Feature**  – https://github.com/ckeditor/ckeditor5-media-embed <br>
 **CKEditor 5 Media Embed Feature**  – https://github.com/ckeditor/ckeditor5-media-embed <br>
-Copyright (c) 2003-2018, [CKSource](http://cksource.com) Frederico Knabben. All rights reserved.
+Copyright (c) 2003-2019, [CKSource](http://cksource.com) Frederico Knabben. All rights reserved.
 
 
 Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html).
 Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html).
 
 

+ 1 - 1
packages/ckeditor5-media-embed/docs/_snippets/features/build-media-source.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 

+ 2 - 2
packages/ckeditor5-media-embed/docs/_snippets/features/media-embed.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
@@ -14,7 +14,7 @@ ClassicEditor
 			items: [
 			items: [
 				'mediaEmbed', '|', 'heading', '|', 'bold', 'italic', '|', 'undo', 'redo'
 				'mediaEmbed', '|', 'heading', '|', 'bold', 'italic', '|', 'undo', 'redo'
 			],
 			],
-			viewportTopOffset: 100
+			viewportTopOffset: window.getViewportTopOffsetConfig()
 		}
 		}
 	} )
 	} )
 	.then( editor => {
 	.then( editor => {

+ 1 - 1
packages/ckeditor5-media-embed/docs/features/media-embed.md

@@ -304,7 +304,7 @@ using this code snippet:
 		// to discover the media.
 		// to discover the media.
 		const anchor = document.createElement( 'a' );
 		const anchor = document.createElement( 'a' );
 
 
-		anchor.setAttribute( 'href', element.getAttribute( 'url ') );
+		anchor.setAttribute( 'href', element.getAttribute( 'url' ) );
 		anchor.className = 'embedly-card';
 		anchor.className = 'embedly-card';
 
 
 		element.appendChild( anchor );
 		element.appendChild( anchor );

+ 2 - 1
packages/ckeditor5-media-embed/lang/contexts.json

@@ -1,7 +1,8 @@
 {
 {
 	"media widget": "Label for the media widget.",
 	"media widget": "Label for the media widget.",
 	"Media URL": "Label for the URL input in the Media Embed URL editing balloon.",
 	"Media URL": "Label for the URL input in the Media Embed URL editing balloon.",
-	"Paste the URL into the content to embed faster.": "The tip displayed next to the media URL input informing about an easier way of embedding.",
+	"Paste the media URL in the input.": "The help text displayed under the media URL input helping users to discover the interface.",
+	"Tip: Paste the URL into the content to embed faster.": "The tip displayed next to the media URL input informing about an easier way of embedding.",
 	"The URL must not be empty.": "An error message that informs about an empty value in the URL input.",
 	"The URL must not be empty.": "An error message that informs about an empty value in the URL input.",
 	"This media URL is not supported.": "An error message that informs about unsupported media URL.",
 	"This media URL is not supported.": "An error message that informs about unsupported media URL.",
 	"Insert media": "Toolbar button tooltip for the Media Embed feature."
 	"Insert media": "Toolbar button tooltip for the Media Embed feature."

+ 30 - 0
packages/ckeditor5-media-embed/lang/translations/az.po

@@ -0,0 +1,30 @@
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
+msgid ""
+msgstr ""
+"Language-Team: Azerbaijani (https://www.transifex.com/ckeditor/teams/11143/az/)\n"
+"Language: az\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+msgctxt "Label for the media widget."
+msgid "media widget"
+msgstr "media vidgeti"
+
+msgctxt "Label for the URL input in the Media Embed URL editing balloon."
+msgid "Media URL"
+msgstr "Media URL"
+
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr ""
+
+msgctxt "An error message that informs about an empty value in the URL input."
+msgid "The URL must not be empty."
+msgstr "URL boş olmamalıdır."
+
+msgctxt "An error message that informs about unsupported media URL."
+msgid "This media URL is not supported."
+msgstr "Bu media URL dəstəklənmir."
+
+msgctxt "Toolbar button tooltip for the Media Embed feature."
+msgid "Insert media"
+msgstr "Media əlavə ed"

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/cs.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Czech (https://www.transifex.com/ckeditor/teams/11143/cs/)\n"
 "Language-Team: Czech (https://www.transifex.com/ckeditor/teams/11143/cs/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "URL adresa"
 msgstr "URL adresa"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr ""
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "URL adresa musí být vyplněna."
 msgstr "URL adresa musí být vyplněna."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/de.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: German (https://www.transifex.com/ckeditor/teams/11143/de/)\n"
 "Language-Team: German (https://www.transifex.com/ckeditor/teams/11143/de/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "Medien-Url"
 msgstr "Medien-Url"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr "Fügen Sie die Url in den Inhalt ein, um sie schneller einzubinden."
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "Die Url darf nicht leer sein"
 msgstr "Die Url darf nicht leer sein"

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/en.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language: \n"
 "Language: \n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "Media URL"
 msgstr "Media URL"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr "Paste the URL into the content to embed faster."
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "The URL must not be empty."
 msgstr "The URL must not be empty."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/et.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Estonian (https://www.transifex.com/ckeditor/teams/11143/et/)\n"
 "Language-Team: Estonian (https://www.transifex.com/ckeditor/teams/11143/et/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "Meedia URL"
 msgstr "Meedia URL"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr "Aseta URL sisusse, et seda kiiremini põimida."
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "URL-i lahter ei tohi olla tühi."
 msgstr "URL-i lahter ei tohi olla tühi."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/fa.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Persian (https://www.transifex.com/ckeditor/teams/11143/fa/)\n"
 "Language-Team: Persian (https://www.transifex.com/ckeditor/teams/11143/fa/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "آدرس اینترنتی رسانه"
 msgstr "آدرس اینترنتی رسانه"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr ""
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "آدرس اینترنتی URL نباید خالی باشد."
 msgstr "آدرس اینترنتی URL نباید خالی باشد."

+ 6 - 2
packages/ckeditor5-media-embed/lang/translations/fr.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: French (https://www.transifex.com/ckeditor/teams/11143/fr/)\n"
 "Language-Team: French (https://www.transifex.com/ckeditor/teams/11143/fr/)\n"
@@ -13,13 +13,17 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "URL média"
 msgstr "URL média"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr "Coller l'URL dans le contenu pour l'insérer plus rapidement"
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "L'URL ne peut être vide."
 msgstr "L'URL ne peut être vide."
 
 
 msgctxt "An error message that informs about unsupported media URL."
 msgctxt "An error message that informs about unsupported media URL."
 msgid "This media URL is not supported."
 msgid "This media URL is not supported."
-msgstr "Cet URL média n'est pas supporté."
+msgstr "Cette URL média n'est pas supportée."
 
 
 msgctxt "Toolbar button tooltip for the Media Embed feature."
 msgctxt "Toolbar button tooltip for the Media Embed feature."
 msgid "Insert media"
 msgid "Insert media"

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/gl.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Galician (https://www.transifex.com/ckeditor/teams/11143/gl/)\n"
 "Language-Team: Galician (https://www.transifex.com/ckeditor/teams/11143/gl/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "URL multimedia"
 msgstr "URL multimedia"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr "Pegue o URL no contido para incorporalo máis rápido."
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "O URL non debe estar baleiro."
 msgstr "O URL non debe estar baleiro."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/hr.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Croatian (https://www.transifex.com/ckeditor/teams/11143/hr/)\n"
 "Language-Team: Croatian (https://www.transifex.com/ckeditor/teams/11143/hr/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "URL medija"
 msgstr "URL medija"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr ""
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "URL ne smije biti prazan."
 msgstr "URL ne smije biti prazan."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/hu.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Hungarian (https://www.transifex.com/ckeditor/teams/11143/hu/)\n"
 "Language-Team: Hungarian (https://www.transifex.com/ckeditor/teams/11143/hu/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "Média URL"
 msgstr "Média URL"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr "A gyorsabb beágyazás érdekében illessze be az URL-t."
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "Az URL nem lehet üres."
 msgstr "Az URL nem lehet üres."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/it.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Italian (https://www.transifex.com/ckeditor/teams/11143/it/)\n"
 "Language-Team: Italian (https://www.transifex.com/ckeditor/teams/11143/it/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "URL media"
 msgstr "URL media"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr "Incollare l'URL nel contenuto per un'incorporazione più veloce."
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "L'URL non può essere vuoto."
 msgstr "L'URL non può essere vuoto."

+ 30 - 0
packages/ckeditor5-media-embed/lang/translations/ku.po

@@ -0,0 +1,30 @@
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
+msgid ""
+msgstr ""
+"Language-Team: Kurdish (https://www.transifex.com/ckeditor/teams/11143/ku/)\n"
+"Language: ku\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+msgctxt "Label for the media widget."
+msgid "media widget"
+msgstr ""
+
+msgctxt "Label for the URL input in the Media Embed URL editing balloon."
+msgid "Media URL"
+msgstr "بەستەری میدیا"
+
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr ""
+
+msgctxt "An error message that informs about an empty value in the URL input."
+msgid "The URL must not be empty."
+msgstr ""
+
+msgctxt "An error message that informs about unsupported media URL."
+msgid "This media URL is not supported."
+msgstr ""
+
+msgctxt "Toolbar button tooltip for the Media Embed feature."
+msgid "Insert media"
+msgstr "میدیا دابنێ"

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/ne.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Nepali (Nepal) (https://www.transifex.com/ckeditor/teams/11143/ne_NP/)\n"
 "Language-Team: Nepali (Nepal) (https://www.transifex.com/ckeditor/teams/11143/ne_NP/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "मिडिया यूआरएल"
 msgstr "मिडिया यूआरएल"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr ""
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "यूआरएल खाली हुनु हुँदैन।"
 msgstr "यूआरएल खाली हुनु हुँदैन।"

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/no.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Norwegian (https://www.transifex.com/ckeditor/teams/11143/no/)\n"
 "Language-Team: Norwegian (https://www.transifex.com/ckeditor/teams/11143/no/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "Media-URL"
 msgstr "Media-URL"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr "Lim inn URL-en direkte i innholdet for å legge inn media raskere."
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "URL-en kan ikke være tom."
 msgstr "URL-en kan ikke være tom."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/pl.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Polish (https://www.transifex.com/ckeditor/teams/11143/pl/)\n"
 "Language-Team: Polish (https://www.transifex.com/ckeditor/teams/11143/pl/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "Adres URL"
 msgstr "Adres URL"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr "Wklej URL wprost do treści edytora by wstawić go szybciej."
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "Adres URL nie może być pusty."
 msgstr "Adres URL nie może być pusty."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/pt-br.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/ckeditor/teams/11143/pt_BR/)\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/ckeditor/teams/11143/pt_BR/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "URL da mídia"
 msgstr "URL da mídia"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr ""
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "A URL não pode ficar em branco."
 msgstr "A URL não pode ficar em branco."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/sq.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Albanian (https://www.transifex.com/ckeditor/teams/11143/sq/)\n"
 "Language-Team: Albanian (https://www.transifex.com/ckeditor/teams/11143/sq/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "URL e Medies"
 msgstr "URL e Medies"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr ""
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "URL nuk duhet të jetë e zbrazët."
 msgstr "URL nuk duhet të jetë e zbrazët."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/tr.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Turkish (https://www.transifex.com/ckeditor/teams/11143/tr/)\n"
 "Language-Team: Turkish (https://www.transifex.com/ckeditor/teams/11143/tr/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "Medya URL'si"
 msgstr "Medya URL'si"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr "Daha hızlı gömülü görünüm için URL'yi içeriğe yapıştırınız."
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "URL boş olamaz."
 msgstr "URL boş olamaz."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/uk.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Ukrainian (https://www.transifex.com/ckeditor/teams/11143/uk/)\n"
 "Language-Team: Ukrainian (https://www.transifex.com/ckeditor/teams/11143/uk/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "Медіа URL"
 msgstr "Медіа URL"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr ""
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "URL не повинен бути порожнім."
 msgstr "URL не повинен бути порожнім."

+ 5 - 1
packages/ckeditor5-media-embed/lang/translations/zh-cn.po

@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+# Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Language-Team: Chinese (China) (https://www.transifex.com/ckeditor/teams/11143/zh_CN/)\n"
 "Language-Team: Chinese (China) (https://www.transifex.com/ckeditor/teams/11143/zh_CN/)\n"
@@ -13,6 +13,10 @@ msgctxt "Label for the URL input in the Media Embed URL editing balloon."
 msgid "Media URL"
 msgid "Media URL"
 msgstr "媒体URL"
 msgstr "媒体URL"
 
 
+msgctxt "The tip displayed next to the media URL input informing about an easier way of embedding."
+msgid "Paste the URL into the content to embed faster."
+msgstr ""
+
 msgctxt "An error message that informs about an empty value in the URL input."
 msgctxt "An error message that informs about an empty value in the URL input."
 msgid "The URL must not be empty."
 msgid "The URL must not be empty."
 msgstr "URL不可以为空。"
 msgstr "URL不可以为空。"

+ 29 - 25
packages/ckeditor5-media-embed/package.json

@@ -1,6 +1,6 @@
 {
 {
   "name": "@ckeditor/ckeditor5-media-embed",
   "name": "@ckeditor/ckeditor5-media-embed",
-  "version": "10.0.0",
+  "version": "10.1.0",
   "description": "Media Embed feature for CKEditor 5.",
   "description": "Media Embed feature for CKEditor 5.",
   "keywords": [
   "keywords": [
     "ckeditor",
     "ckeditor",
@@ -10,33 +10,33 @@
     "ckeditor5-plugin"
     "ckeditor5-plugin"
   ],
   ],
   "dependencies": {
   "dependencies": {
-    "@ckeditor/ckeditor5-clipboard": "^10.0.3",
-    "@ckeditor/ckeditor5-core": "^11.0.1",
-    "@ckeditor/ckeditor5-engine": "^11.0.0",
-    "@ckeditor/ckeditor5-enter": "^10.1.2",
-    "@ckeditor/ckeditor5-image": "^11.0.0",
-    "@ckeditor/ckeditor5-theme-lark": "^11.1.0",
-    "@ckeditor/ckeditor5-ui": "^11.1.0",
-    "@ckeditor/ckeditor5-undo": "^10.0.3",
-    "@ckeditor/ckeditor5-utils": "^11.0.0",
-    "@ckeditor/ckeditor5-widget": "^10.3.0"
+    "@ckeditor/ckeditor5-clipboard": "^10.0.4",
+    "@ckeditor/ckeditor5-core": "^11.1.0",
+    "@ckeditor/ckeditor5-engine": "^12.0.0",
+    "@ckeditor/ckeditor5-enter": "^10.1.3",
+    "@ckeditor/ckeditor5-image": "^12.0.0",
+    "@ckeditor/ckeditor5-theme-lark": "^12.0.0",
+    "@ckeditor/ckeditor5-ui": "^11.2.0",
+    "@ckeditor/ckeditor5-undo": "^10.0.4",
+    "@ckeditor/ckeditor5-utils": "^11.1.0",
+    "@ckeditor/ckeditor5-widget": "^10.3.1"
   },
   },
   "devDependencies": {
   "devDependencies": {
-    "@ckeditor/ckeditor5-basic-styles": "^10.0.3",
-    "@ckeditor/ckeditor5-editor-balloon": "^11.0.1",
-    "@ckeditor/ckeditor5-editor-classic": "^11.0.1",
-    "@ckeditor/ckeditor5-link": "^10.0.4",
-    "@ckeditor/ckeditor5-list": "^11.0.2",
-    "@ckeditor/ckeditor5-paragraph": "^10.0.3",
-    "@ckeditor/ckeditor5-typing": "^11.0.1",
+    "@ckeditor/ckeditor5-basic-styles": "^10.1.0",
+    "@ckeditor/ckeditor5-editor-balloon": "^11.0.2",
+    "@ckeditor/ckeditor5-editor-classic": "^11.0.2",
+    "@ckeditor/ckeditor5-link": "^10.1.0",
+    "@ckeditor/ckeditor5-list": "^11.0.3",
+    "@ckeditor/ckeditor5-paragraph": "^10.0.4",
+    "@ckeditor/ckeditor5-typing": "^11.0.2",
     "eslint": "^5.5.0",
     "eslint": "^5.5.0",
-    "eslint-config-ckeditor5": "^1.0.7",
-    "husky": "^0.14.3",
+    "eslint-config-ckeditor5": "^1.0.9",
+    "husky": "^1.3.1",
     "lint-staged": "^7.0.0"
     "lint-staged": "^7.0.0"
   },
   },
   "engines": {
   "engines": {
-    "node": ">=6.9.0",
-    "npm": ">=3.0.0"
+    "node": ">=8.0.0",
+    "npm": ">=5.7.1"
   },
   },
   "author": "CKSource (http://cksource.com/)",
   "author": "CKSource (http://cksource.com/)",
   "license": "GPL-2.0-or-later",
   "license": "GPL-2.0-or-later",
@@ -52,8 +52,7 @@
     "theme"
     "theme"
   ],
   ],
   "scripts": {
   "scripts": {
-    "lint": "eslint --quiet '**/*.js'",
-    "precommit": "lint-staged"
+    "lint": "eslint --quiet '**/*.js'"
   },
   },
   "lint-staged": {
   "lint-staged": {
     "**/*.js": [
     "**/*.js": [
@@ -63,5 +62,10 @@
   "eslintIgnore": [
   "eslintIgnore": [
     "src/lib/**",
     "src/lib/**",
     "packages/**"
     "packages/**"
-  ]
+  ],
+  "husky": {
+    "hooks": {
+      "pre-commit": "lint-staged"
+    }
+  }
 }
 }

+ 7 - 3
packages/ckeditor5-media-embed/src/automediaembed.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
@@ -14,6 +14,7 @@ import LiveRange from '@ckeditor/ckeditor5-engine/src/model/liverange';
 import LivePosition from '@ckeditor/ckeditor5-engine/src/model/liveposition';
 import LivePosition from '@ckeditor/ckeditor5-engine/src/model/liveposition';
 import Undo from '@ckeditor/ckeditor5-undo/src/undo';
 import Undo from '@ckeditor/ckeditor5-undo/src/undo';
 import global from '@ckeditor/ckeditor5-utils/src/dom/global';
 import global from '@ckeditor/ckeditor5-utils/src/dom/global';
+import { insertMedia } from './utils';
 
 
 const URL_REGEXP = /^(?:http(s)?:\/\/)?[\w.-]+(?:\.[\w.-]+)+[\w\-._~:/?#[\]@!$&'()*+,;=]+$/;
 const URL_REGEXP = /^(?:http(s)?:\/\/)?[\w.-]+(?:\.[\w.-]+)+[\w\-._~:/?#[\]@!$&'()*+,;=]+$/;
 
 
@@ -153,12 +154,15 @@ export default class AutoMediaEmbed extends Plugin {
 
 
 				writer.remove( urlRange );
 				writer.remove( urlRange );
 
 
+				let insertionPosition;
+
 				// Check if position where the media element should be inserted is still valid.
 				// Check if position where the media element should be inserted is still valid.
+				// Otherwise leave it as undefined to use document.selection - default behavior of model.insertContent().
 				if ( this._positionToInsert.root.rootName !== '$graveyard' ) {
 				if ( this._positionToInsert.root.rootName !== '$graveyard' ) {
-					writer.setSelection( this._positionToInsert );
+					insertionPosition = this._positionToInsert;
 				}
 				}
 
 
-				mediaEmbedCommand.execute( url );
+				insertMedia( editor.model, url, insertionPosition );
 
 
 				this._positionToInsert.detach();
 				this._positionToInsert.detach();
 				this._positionToInsert = null;
 				this._positionToInsert = null;

+ 1 - 1
packages/ckeditor5-media-embed/src/converters.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 

+ 1 - 1
packages/ckeditor5-media-embed/src/mediaembed.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 

+ 5 - 11
packages/ckeditor5-media-embed/src/mediaembedcommand.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
@@ -9,7 +9,7 @@
 
 
 import Command from '@ckeditor/ckeditor5-core/src/command';
 import Command from '@ckeditor/ckeditor5-core/src/command';
 import { findOptimalInsertionPosition } from '@ckeditor/ckeditor5-widget/src/utils';
 import { findOptimalInsertionPosition } from '@ckeditor/ckeditor5-widget/src/utils';
-import { getSelectedMediaElement } from './utils';
+import { getSelectedMediaModelWidget, insertMedia } from './utils';
 
 
 /**
 /**
  * The insert media command.
  * The insert media command.
@@ -31,7 +31,7 @@ export default class MediaEmbedCommand extends Command {
 		const selection = model.document.selection;
 		const selection = model.document.selection;
 		const schema = model.schema;
 		const schema = model.schema;
 		const position = selection.getFirstPosition();
 		const position = selection.getFirstPosition();
-		const selectedMedia = getSelectedMediaElement( selection );
+		const selectedMedia = getSelectedMediaModelWidget( selection );
 
 
 		let parent = position.parent;
 		let parent = position.parent;
 
 
@@ -55,7 +55,7 @@ export default class MediaEmbedCommand extends Command {
 	execute( url ) {
 	execute( url ) {
 		const model = this.editor.model;
 		const model = this.editor.model;
 		const selection = model.document.selection;
 		const selection = model.document.selection;
-		const selectedMedia = getSelectedMediaElement( selection );
+		const selectedMedia = getSelectedMediaModelWidget( selection );
 
 
 		if ( selectedMedia ) {
 		if ( selectedMedia ) {
 			model.change( writer => {
 			model.change( writer => {
@@ -64,13 +64,7 @@ export default class MediaEmbedCommand extends Command {
 		} else {
 		} else {
 			const insertPosition = findOptimalInsertionPosition( selection, model );
 			const insertPosition = findOptimalInsertionPosition( selection, model );
 
 
-			model.change( writer => {
-				const mediaElement = writer.createElement( 'media', { url } );
-
-				model.insertContent( mediaElement, insertPosition );
-
-				writer.setSelection( mediaElement, 'on' );
-			} );
+			insertMedia( model, url, insertPosition );
 		}
 		}
 	}
 	}
 }
 }

+ 16 - 11
packages/ckeditor5-media-embed/src/mediaembedediting.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
@@ -13,8 +13,6 @@ import { modelToViewUrlAttributeConverter } from './converters';
 import MediaEmbedCommand from './mediaembedcommand';
 import MediaEmbedCommand from './mediaembedcommand';
 import MediaRegistry from './mediaregistry';
 import MediaRegistry from './mediaregistry';
 import { toMediaWidget, createMediaFigureElement } from './utils';
 import { toMediaWidget, createMediaFigureElement } from './utils';
-import { downcastElementToElement } from '@ckeditor/ckeditor5-engine/src/conversion/downcast-converters';
-import { upcastElementToElement } from '@ckeditor/ckeditor5-engine/src/conversion/upcast-converters';
 
 
 import '../theme/mediaembedediting.css';
 import '../theme/mediaembedediting.css';
 
 
@@ -24,6 +22,13 @@ import '../theme/mediaembedediting.css';
  * @extends module:core/plugin~Plugin
  * @extends module:core/plugin~Plugin
  */
  */
 export default class MediaEmbedEditing extends Plugin {
 export default class MediaEmbedEditing extends Plugin {
+	/**
+	 * @inheritDoc
+	 */
+	static get pluginName() {
+		return 'MediaEmbedEditing';
+	}
+
 	/**
 	/**
 	 * @inheritDoc
 	 * @inheritDoc
 	 */
 	 */
@@ -170,7 +175,7 @@ export default class MediaEmbedEditing extends Plugin {
 		} );
 		} );
 
 
 		// Model -> Data
 		// Model -> Data
-		conversion.for( 'dataDowncast' ).add( downcastElementToElement( {
+		conversion.for( 'dataDowncast' ).elementToElement( {
 			model: 'media',
 			model: 'media',
 			view: ( modelElement, viewWriter ) => {
 			view: ( modelElement, viewWriter ) => {
 				const url = modelElement.getAttribute( 'url' );
 				const url = modelElement.getAttribute( 'url' );
@@ -179,7 +184,7 @@ export default class MediaEmbedEditing extends Plugin {
 					renderMediaPreview: url && renderMediaPreview
 					renderMediaPreview: url && renderMediaPreview
 				} );
 				} );
 			}
 			}
-		} ) );
+		} );
 
 
 		// Model -> Data (url -> data-oembed-url)
 		// Model -> Data (url -> data-oembed-url)
 		conversion.for( 'dataDowncast' ).add(
 		conversion.for( 'dataDowncast' ).add(
@@ -188,7 +193,7 @@ export default class MediaEmbedEditing extends Plugin {
 			} ) );
 			} ) );
 
 
 		// Model -> View (element)
 		// Model -> View (element)
-		conversion.for( 'editingDowncast' ).add( downcastElementToElement( {
+		conversion.for( 'editingDowncast' ).elementToElement( {
 			model: 'media',
 			model: 'media',
 			view: ( modelElement, viewWriter ) => {
 			view: ( modelElement, viewWriter ) => {
 				const url = modelElement.getAttribute( 'url' );
 				const url = modelElement.getAttribute( 'url' );
@@ -198,7 +203,7 @@ export default class MediaEmbedEditing extends Plugin {
 
 
 				return toMediaWidget( figure, viewWriter, t( 'media widget' ) );
 				return toMediaWidget( figure, viewWriter, t( 'media widget' ) );
 			}
 			}
-		} ) );
+		} );
 
 
 		// Model -> View (url -> data-oembed-url)
 		// Model -> View (url -> data-oembed-url)
 		conversion.for( 'editingDowncast' ).add(
 		conversion.for( 'editingDowncast' ).add(
@@ -209,7 +214,7 @@ export default class MediaEmbedEditing extends Plugin {
 		// View -> Model (data-oembed-url -> url)
 		// View -> Model (data-oembed-url -> url)
 		conversion.for( 'upcast' )
 		conversion.for( 'upcast' )
 			// Upcast semantic media.
 			// Upcast semantic media.
-			.add( upcastElementToElement( {
+			.elementToElement( {
 				view: {
 				view: {
 					name: 'oembed',
 					name: 'oembed',
 					attributes: {
 					attributes: {
@@ -223,9 +228,9 @@ export default class MediaEmbedEditing extends Plugin {
 						return modelWriter.createElement( 'media', { url } );
 						return modelWriter.createElement( 'media', { url } );
 					}
 					}
 				}
 				}
-			} ) )
+			} )
 			// Upcast non-semantic media.
 			// Upcast non-semantic media.
-			.add( upcastElementToElement( {
+			.elementToElement( {
 				view: {
 				view: {
 					name: 'div',
 					name: 'div',
 					attributes: {
 					attributes: {
@@ -239,6 +244,6 @@ export default class MediaEmbedEditing extends Plugin {
 						return modelWriter.createElement( 'media', { url } );
 						return modelWriter.createElement( 'media', { url } );
 					}
 					}
 				}
 				}
-			} ) );
+			} );
 	}
 	}
 }
 }

+ 4 - 3
packages/ckeditor5-media-embed/src/mediaembedtoolbar.js

@@ -1,5 +1,6 @@
 /**
 /**
- * Copyright (c) 2016 - 2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
+ * For licensing, see LICENSE.md.
  */
  */
 
 
 /**
 /**
@@ -8,7 +9,7 @@
 
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
 import WidgetToolbarRepository from '@ckeditor/ckeditor5-widget/src/widgettoolbarrepository';
 import WidgetToolbarRepository from '@ckeditor/ckeditor5-widget/src/widgettoolbarrepository';
-import { isMediaWidgetSelected } from './utils';
+import { getSelectedMediaViewWidget } from './utils';
 
 
 /**
 /**
  * The media embed toolbar plugin. It creates a toolbar for media embed that shows up when the media element is selected.
  * The media embed toolbar plugin. It creates a toolbar for media embed that shows up when the media element is selected.
@@ -42,7 +43,7 @@ export default class MediaEmbedToolbar extends Plugin {
 
 
 		widgetToolbarRepository.register( 'mediaEmbed', {
 		widgetToolbarRepository.register( 'mediaEmbed', {
 			items: editor.config.get( 'mediaEmbed.toolbar' ) || [],
 			items: editor.config.get( 'mediaEmbed.toolbar' ) || [],
-			visibleWhen: isMediaWidgetSelected,
+			getRelatedElement: getSelectedMediaViewWidget,
 		} );
 		} );
 	}
 	}
 }
 }

+ 17 - 4
packages/ckeditor5-media-embed/src/mediaembedui.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
@@ -26,6 +26,13 @@ export default class MediaEmbedUI extends Plugin {
 		return [ MediaEmbedEditing ];
 		return [ MediaEmbedEditing ];
 	}
 	}
 
 
+	/**
+	 * @inheritDoc
+	 */
+	static get pluginName() {
+		return 'MediaEmbedUI';
+	}
+
 	/**
 	/**
 	 * @inheritDoc
 	 * @inheritDoc
 	 */
 	 */
@@ -34,13 +41,19 @@ export default class MediaEmbedUI extends Plugin {
 		const command = editor.commands.get( 'mediaEmbed' );
 		const command = editor.commands.get( 'mediaEmbed' );
 		const registry = editor.plugins.get( MediaEmbedEditing ).registry;
 		const registry = editor.plugins.get( MediaEmbedEditing ).registry;
 
 
+		/**
+		 * The form view displayed inside the drop-down.
+		 *
+		 * @member {module:media-embed/ui/mediaformview~MediaFormView}
+		 */
+		this.form = new MediaFormView( getFormValidators( editor.t, registry ), editor.locale );
+
 		// Setup `imageUpload` button.
 		// Setup `imageUpload` button.
 		editor.ui.componentFactory.add( 'mediaEmbed', locale => {
 		editor.ui.componentFactory.add( 'mediaEmbed', locale => {
-			const form = new MediaFormView( getFormValidators( editor.t, registry ), locale );
 			const dropdown = createDropdown( locale );
 			const dropdown = createDropdown( locale );
 
 
-			this._setUpDropdown( dropdown, form, command, editor );
-			this._setUpForm( form, dropdown, command );
+			this._setUpDropdown( dropdown, this.form, command, editor );
+			this._setUpForm( this.form, dropdown, command );
 
 
 			return dropdown;
 			return dropdown;
 		} );
 		} );

+ 1 - 1
packages/ckeditor5-media-embed/src/mediaregistry.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 

+ 23 - 6
packages/ckeditor5-media-embed/src/ui/mediaformview.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
@@ -134,6 +134,21 @@ export default class MediaFormView extends View {
 				this.cancelButtonView
 				this.cancelButtonView
 			]
 			]
 		} );
 		} );
+
+		/**
+		 * The default info text for the {@link #urlInputView}.
+		 *
+		 * @private
+		 * @member {String} #_urlInputViewInfoDefault
+		 */
+
+		/**
+		 * The info text with an additional tip for the {@link #urlInputView},
+		 * displayed when the input has some value.
+		 *
+		 * @private
+		 * @member {String} #_urlInputViewInfoTip
+		 */
 	}
 	}
 
 
 	/**
 	/**
@@ -243,7 +258,7 @@ export default class MediaFormView extends View {
 	 */
 	 */
 	resetFormStatus() {
 	resetFormStatus() {
 		this.urlInputView.errorText = null;
 		this.urlInputView.errorText = null;
-		this.urlInputView.infoText = null;
+		this.urlInputView.infoText = this._urlInputViewInfoDefault;
 	}
 	}
 
 
 	/**
 	/**
@@ -258,14 +273,16 @@ export default class MediaFormView extends View {
 		const labeledInput = new LabeledInputView( this.locale, InputTextView );
 		const labeledInput = new LabeledInputView( this.locale, InputTextView );
 		const inputView = labeledInput.inputView;
 		const inputView = labeledInput.inputView;
 
 
+		this._urlInputViewInfoDefault = t( 'Paste the media URL in the input.' );
+		this._urlInputViewInfoTip = t( 'Tip: Paste the URL into the content to embed faster.' );
+
 		labeledInput.label = t( 'Media URL' );
 		labeledInput.label = t( 'Media URL' );
+		labeledInput.infoText = this._urlInputViewInfoDefault;
 		inputView.placeholder = 'https://example.com';
 		inputView.placeholder = 'https://example.com';
 
 
 		inputView.on( 'input', () => {
 		inputView.on( 'input', () => {
-			// Display the #infoText only when there's some value to hide it when the input
-			// is empty, e.g. user used backspace to clean it up.
-			labeledInput.infoText = inputView.element.value ?
-				t( 'Paste the URL into the content to embed faster.' ) : null;
+			// Display the tip text only when there's some value. Otherwise fall back to the default info text.
+			labeledInput.infoText = inputView.element.value ? this._urlInputViewInfoTip : this._urlInputViewInfoDefault;
 		} );
 		} );
 
 
 		return labeledInput;
 		return labeledInput;

+ 45 - 9
packages/ckeditor5-media-embed/src/utils.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
@@ -9,8 +9,6 @@
 
 
 import { isWidget, toWidget } from '@ckeditor/ckeditor5-widget/src/utils';
 import { isWidget, toWidget } from '@ckeditor/ckeditor5-widget/src/utils';
 
 
-const mediaSymbol = Symbol( 'isMedia' );
-
 /**
 /**
  * Converts a given {@link module:engine/view/element~Element} to a media embed widget:
  * Converts a given {@link module:engine/view/element~Element} to a media embed widget:
  * * Adds a {@link module:engine/view/element~Element#_setCustomProperty custom property} allowing to recognize the media widget element.
  * * Adds a {@link module:engine/view/element~Element#_setCustomProperty custom property} allowing to recognize the media widget element.
@@ -22,19 +20,35 @@ const mediaSymbol = Symbol( 'isMedia' );
  * @returns {module:engine/view/element~Element}
  * @returns {module:engine/view/element~Element}
  */
  */
 export function toMediaWidget( viewElement, writer, label ) {
 export function toMediaWidget( viewElement, writer, label ) {
-	writer.setCustomProperty( mediaSymbol, true, viewElement );
+	writer.setCustomProperty( 'media', true, viewElement );
 
 
 	return toWidget( viewElement, writer, { label } );
 	return toWidget( viewElement, writer, { label } );
 }
 }
 
 
-export function isMediaWidgetSelected( viewSelection ) {
-	const viewElement = viewSelection.getSelectedElement();
+/**
+ * Returns a media widget editing view element if one is selected.
+ *
+ * @param {module:engine/view/selection~Selection|module:engine/view/documentselection~DocumentSelection} selection
+ * @returns {module:engine/view/element~Element|null}
+ */
+export function getSelectedMediaViewWidget( selection ) {
+	const viewElement = selection.getSelectedElement();
+
+	if ( viewElement && isMediaWidget( viewElement ) ) {
+		return viewElement;
+	}
 
 
-	return !!( viewElement && isMediaWidget( viewElement ) );
+	return null;
 }
 }
 
 
+/**
+ * Checks if a given view element is a media widget.
+ *
+ * @param {module:engine/view/element~Element} viewElement
+ * @returns {Boolean}
+ */
 export function isMediaWidget( viewElement ) {
 export function isMediaWidget( viewElement ) {
-	return !!viewElement.getCustomProperty( mediaSymbol ) && isWidget( viewElement );
+	return !!viewElement.getCustomProperty( 'media' ) && isWidget( viewElement );
 }
 }
 
 
 /**
 /**
@@ -78,7 +92,7 @@ export function createMediaFigureElement( writer, registry, url, options ) {
  * @param {module:engine/model/selection~Selection} selection
  * @param {module:engine/model/selection~Selection} selection
  * @returns {module:engine/model/element~Element|null}
  * @returns {module:engine/model/element~Element|null}
  */
  */
-export function getSelectedMediaElement( selection ) {
+export function getSelectedMediaModelWidget( selection ) {
 	const selectedElement = selection.getSelectedElement();
 	const selectedElement = selection.getSelectedElement();
 
 
 	if ( selectedElement && selectedElement.is( 'media' ) ) {
 	if ( selectedElement && selectedElement.is( 'media' ) ) {
@@ -88,6 +102,28 @@ export function getSelectedMediaElement( selection ) {
 	return null;
 	return null;
 }
 }
 
 
+/**
+ * Creates a media element and inserts it into the model.
+ *
+ * **Note**: This method will use {@link module:engine/model/model~Model#insertContent `model.insertContent()`} logic of inserting content
+ * if no `insertPosition` is passed.
+ *
+ * @param {module:engine/model/model~Model} model
+ * @param {String} url An URL of an embeddable media.
+ * @param {module:engine/model/position~Position} [insertPosition] Position to insert media. If not specified,
+ * the default behavior of {@link module:engine/model/model~Model#insertContent `model.insertContent()`} will
+ * be applied.
+ */
+export function insertMedia( model, url, insertPosition ) {
+	model.change( writer => {
+		const mediaElement = writer.createElement( 'media', { url } );
+
+		model.insertContent( mediaElement, insertPosition );
+
+		writer.setSelection( mediaElement, 'on' );
+	} );
+}
+
 function getFillerOffset() {
 function getFillerOffset() {
 	return null;
 	return null;
 }
 }

+ 28 - 2
packages/ckeditor5-media-embed/tests/automediaembed.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
@@ -214,7 +214,33 @@ describe( 'AutoMediaEmbed - integration', () => {
 			clock.tick( 100 );
 			clock.tick( 100 );
 
 
 			expect( getData( editor.model ) ).to.equal(
 			expect( getData( editor.model ) ).to.equal(
-				'[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]<paragraph>For</paragraph>'
+				'<paragraph>Fo</paragraph>[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]<paragraph>r</paragraph>'
+			);
+		} );
+
+		it( 'inserts media in-place (collapsed selection)', () => {
+			setData( editor.model, '<paragraph>Foo []Bar</paragraph>' );
+			pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
+
+			clock.tick( 100 );
+
+			expect( getData( editor.model ) ).to.equal(
+				'<paragraph>Foo </paragraph>' +
+				'[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]' +
+				'<paragraph>Bar</paragraph>'
+			);
+		} );
+
+		it( 'inserts media in-place (non-collapsed selection)', () => {
+			setData( editor.model, '<paragraph>Foo [Bar] Baz</paragraph>' );
+			pasteHtml( editor, 'https://www.youtube.com/watch?v=H08tGjXNHO4' );
+
+			clock.tick( 100 );
+
+			expect( getData( editor.model ) ).to.equal(
+				'<paragraph>Foo </paragraph>' +
+				'[<media url="https://www.youtube.com/watch?v=H08tGjXNHO4"></media>]' +
+				'<paragraph> Baz</paragraph>'
 			);
 			);
 		} );
 		} );
 
 

+ 1 - 1
packages/ckeditor5-media-embed/tests/insertmediacommand.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 

+ 1 - 1
packages/ckeditor5-media-embed/tests/manual/mediaembed.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 

+ 1 - 1
packages/ckeditor5-media-embed/tests/manual/semanticmediaembed.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 

+ 1 - 1
packages/ckeditor5-media-embed/tests/mediaembed.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 

+ 7 - 3
packages/ckeditor5-media-embed/tests/mediaembedediting.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
@@ -61,6 +61,10 @@ describe( 'MediaEmbedEditing', () => {
 		testUtils.sinon.stub( env, 'isEdge' ).get( () => false );
 		testUtils.sinon.stub( env, 'isEdge' ).get( () => false );
 	} );
 	} );
 
 
+	it( 'should be named', () => {
+		expect( MediaEmbedEditing.pluginName ).to.equal( 'MediaEmbedEditing' );
+	} );
+
 	describe( 'constructor()', () => {
 	describe( 'constructor()', () => {
 		describe( 'configuration', () => {
 		describe( 'configuration', () => {
 			describe( '#providers', () => {
 			describe( '#providers', () => {
@@ -75,7 +79,7 @@ describe( 'MediaEmbedEditing', () => {
 					} ).then( () => {
 					} ).then( () => {
 						expect( logSpy.calledOnce ).to.equal( true );
 						expect( logSpy.calledOnce ).to.equal( true );
 						expect( logSpy.firstCall.args[ 0 ] ).to.match( /^media-embed-no-provider-name:/ );
 						expect( logSpy.firstCall.args[ 0 ] ).to.match( /^media-embed-no-provider-name:/ );
-						expect( logSpy.firstCall.args[ 1 ].provider ).to.equal( provider );
+						expect( logSpy.firstCall.args[ 1 ].provider ).to.deep.equal( provider );
 					} );
 					} );
 				} );
 				} );
 
 
@@ -330,7 +334,7 @@ describe( 'MediaEmbedEditing', () => {
 					} ).then( () => {
 					} ).then( () => {
 						expect( logSpy.calledOnce ).to.equal( true );
 						expect( logSpy.calledOnce ).to.equal( true );
 						expect( logSpy.firstCall.args[ 0 ] ).to.match( /^media-embed-no-provider-name:/ );
 						expect( logSpy.firstCall.args[ 0 ] ).to.match( /^media-embed-no-provider-name:/ );
-						expect( logSpy.firstCall.args[ 1 ].provider ).to.equal( provider );
+						expect( logSpy.firstCall.args[ 1 ].provider ).to.deep.equal( provider );
 					} );
 					} );
 				} );
 				} );
 
 

+ 4 - 3
packages/ckeditor5-media-embed/tests/mediaembedtoolbar.js

@@ -1,5 +1,6 @@
 /**
 /**
- * Copyright (c) 2016 - 2017, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
+ * For licensing, see LICENSE.md.
  */
  */
 
 
 /* global document */
 /* global document */
@@ -35,7 +36,7 @@ describe( 'MediaEmbedToolbar', () => {
 			editor = _editor;
 			editor = _editor;
 			model = editor.model;
 			model = editor.model;
 			widgetToolbarRepository = editor.plugins.get( 'WidgetToolbarRepository' );
 			widgetToolbarRepository = editor.plugins.get( 'WidgetToolbarRepository' );
-			toolbar = widgetToolbarRepository._toolbars.get( 'mediaEmbed' ).view;
+			toolbar = widgetToolbarRepository._toolbarDefinitions.get( 'mediaEmbed' ).view;
 			balloon = editor.plugins.get( 'ContextualBalloon' );
 			balloon = editor.plugins.get( 'ContextualBalloon' );
 		} );
 		} );
 	} );
 	} );
@@ -184,7 +185,7 @@ describe( 'MediaEmbedToolbar - integration with BalloonEditor', () => {
 			editor = _editor;
 			editor = _editor;
 			model = editor.model;
 			model = editor.model;
 			widgetToolbarRepository = editor.plugins.get( 'WidgetToolbarRepository' );
 			widgetToolbarRepository = editor.plugins.get( 'WidgetToolbarRepository' );
-			toolbar = widgetToolbarRepository._toolbars.get( 'mediaEmbed' ).view;
+			toolbar = widgetToolbarRepository._toolbarDefinitions.get( 'mediaEmbed' ).view;
 			balloon = editor.plugins.get( 'ContextualBalloon' );
 			balloon = editor.plugins.get( 'ContextualBalloon' );
 			balloonToolbar = editor.plugins.get( 'BalloonToolbar' );
 			balloonToolbar = editor.plugins.get( 'BalloonToolbar' );
 		} );
 		} );

+ 6 - 1
packages/ckeditor5-media-embed/tests/mediaembedui.js

@@ -1,10 +1,11 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
 import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
 import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
 import MediaEmbed from '../src/mediaembed';
 import MediaEmbed from '../src/mediaembed';
+import MediaEmbedUI from '../src/mediaembedui';
 import MediaFormView from '../src/ui/mediaformview';
 import MediaFormView from '../src/ui/mediaformview';
 import DropdownView from '@ckeditor/ckeditor5-ui/src/dropdown/dropdownview';
 import DropdownView from '@ckeditor/ckeditor5-ui/src/dropdown/dropdownview';
 import global from '@ckeditor/ckeditor5-utils/src/dom/global';
 import global from '@ckeditor/ckeditor5-utils/src/dom/global';
@@ -44,6 +45,10 @@ describe( 'MediaEmbedUI', () => {
 		return editor.destroy();
 		return editor.destroy();
 	} );
 	} );
 
 
+	it( 'should be named', () => {
+		expect( MediaEmbedUI.pluginName ).to.equal( 'MediaEmbedUI' );
+	} );
+
 	it( 'should add the "mediaEmbed" component to the factory', () => {
 	it( 'should add the "mediaEmbed" component to the factory', () => {
 		expect( dropdown ).to.be.instanceOf( DropdownView );
 		expect( dropdown ).to.be.instanceOf( DropdownView );
 	} );
 	} );

+ 1 - 1
packages/ckeditor5-media-embed/tests/mediaregistry.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 

+ 9 - 5
packages/ckeditor5-media-embed/tests/ui/mediaformview.js

@@ -1,5 +1,5 @@
 /**
 /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
@@ -82,16 +82,20 @@ describe( 'MediaFormView', () => {
 				expect( view.urlInputView.inputView.placeholder ).to.equal( 'https://example.com' );
 				expect( view.urlInputView.inputView.placeholder ).to.equal( 'https://example.com' );
 			} );
 			} );
 
 
-			it( 'displays the info text when upon #input when the field has a value', () => {
+			it( 'has info text', () => {
+				expect( view.urlInputView.infoText ).to.match( /^Paste the media URL/ );
+			} );
+
+			it( 'displays the tip upon #input when the field has a value', () => {
 				view.urlInputView.inputView.element.value = 'foo';
 				view.urlInputView.inputView.element.value = 'foo';
 				view.urlInputView.inputView.fire( 'input' );
 				view.urlInputView.inputView.fire( 'input' );
 
 
-				expect( view.urlInputView.infoText ).to.match( /^Paste the URL/ );
+				expect( view.urlInputView.infoText ).to.match( /^Tip: Paste the URL into/ );
 
 
 				view.urlInputView.inputView.element.value = '';
 				view.urlInputView.inputView.element.value = '';
 				view.urlInputView.inputView.fire( 'input' );
 				view.urlInputView.inputView.fire( 'input' );
 
 
-				expect( view.urlInputView.infoText ).to.be.null;
+				expect( view.urlInputView.infoText ).to.match( /^Paste the media URL/ );
 			} );
 			} );
 		} );
 		} );
 
 
@@ -307,7 +311,7 @@ describe( 'MediaFormView', () => {
 
 
 			view.resetFormStatus();
 			view.resetFormStatus();
 
 
-			expect( view.urlInputView.infoText ).to.be.null;
+			expect( view.urlInputView.infoText ).to.match( /^Paste the media URL/ );
 		} );
 		} );
 	} );
 	} );
 } );
 } );

+ 1 - 1
packages/ckeditor5-media-embed/theme/icons/media-placeholder.svg

@@ -1 +1 @@
-<svg width="64" height="42" xmlns="http://www.w3.org/2000/svg"><path d="M47.426 17V3.713L63.102 0v19.389h-.001l.001.272c0 1.595-2.032 3.43-4.538 4.098-2.506.668-4.538-.083-4.538-1.678 0-1.594 2.032-3.43 4.538-4.098.914-.244 2.032-.565 2.888-.603V4.516L49.076 7.447v9.556A1.014 1.014 0 0 0 49 17h-1.574zM29.5 17h-8.343a7.073 7.073 0 1 0-4.657 4.06v3.781H3.3a2.803 2.803 0 0 1-2.8-2.804V8.63a2.803 2.803 0 0 1 2.8-2.805h4.082L8.58 2.768A1.994 1.994 0 0 1 10.435 1.5h8.985c.773 0 1.477.448 1.805 1.149l1.488 3.177H26.7c1.546 0 2.8 1.256 2.8 2.805V17zm-11.637 0H17.5a1 1 0 0 0-1 1v.05A4.244 4.244 0 1 1 17.863 17zm29.684 2c.97 0 .953-.048.953.889v20.743c0 .953.016.905-.953.905H19.453c-.97 0-.953.048-.953-.905V19.89c0-.937-.016-.889.97-.889h28.077zm-4.701 19.338V22.183H24.154v16.155h18.692zM20.6 21.375v1.616h1.616v-1.616H20.6zm0 3.231v1.616h1.616v-1.616H20.6zm0 3.231v1.616h1.616v-1.616H20.6zm0 3.231v1.616h1.616v-1.616H20.6zm0 3.231v1.616h1.616v-1.616H20.6zm0 3.231v1.616h1.616V37.53H20.6zm24.233-16.155v1.616h1.615v-1.616h-1.615zm0 3.231v1.616h1.615v-1.616h-1.615zm0 3.231v1.616h1.615v-1.616h-1.615zm0 3.231v1.616h1.615v-1.616h-1.615zm0 3.231v1.616h1.615v-1.616h-1.615zm0 3.231v1.616h1.615V37.53h-1.615zM29.485 25.283a.4.4 0 0 1 .593-.35l9.05 4.977a.4.4 0 0 1 0 .701l-9.05 4.978a.4.4 0 0 1-.593-.35v-9.956z" fill="#000" fill-rule="nonzero"/></svg>
+<svg viewBox="0 0 64 42" xmlns="http://www.w3.org/2000/svg"><path d="M47.426 17V3.713L63.102 0v19.389h-.001l.001.272c0 1.595-2.032 3.43-4.538 4.098-2.506.668-4.538-.083-4.538-1.678 0-1.594 2.032-3.43 4.538-4.098.914-.244 2.032-.565 2.888-.603V4.516L49.076 7.447v9.556A1.014 1.014 0 0 0 49 17h-1.574zM29.5 17h-8.343a7.073 7.073 0 1 0-4.657 4.06v3.781H3.3a2.803 2.803 0 0 1-2.8-2.804V8.63a2.803 2.803 0 0 1 2.8-2.805h4.082L8.58 2.768A1.994 1.994 0 0 1 10.435 1.5h8.985c.773 0 1.477.448 1.805 1.149l1.488 3.177H26.7c1.546 0 2.8 1.256 2.8 2.805V17zm-11.637 0H17.5a1 1 0 0 0-1 1v.05A4.244 4.244 0 1 1 17.863 17zm29.684 2c.97 0 .953-.048.953.889v20.743c0 .953.016.905-.953.905H19.453c-.97 0-.953.048-.953-.905V19.89c0-.937-.016-.889.97-.889h28.077zm-4.701 19.338V22.183H24.154v16.155h18.692zM20.6 21.375v1.616h1.616v-1.616H20.6zm0 3.231v1.616h1.616v-1.616H20.6zm0 3.231v1.616h1.616v-1.616H20.6zm0 3.231v1.616h1.616v-1.616H20.6zm0 3.231v1.616h1.616v-1.616H20.6zm0 3.231v1.616h1.616V37.53H20.6zm24.233-16.155v1.616h1.615v-1.616h-1.615zm0 3.231v1.616h1.615v-1.616h-1.615zm0 3.231v1.616h1.615v-1.616h-1.615zm0 3.231v1.616h1.615v-1.616h-1.615zm0 3.231v1.616h1.615v-1.616h-1.615zm0 3.231v1.616h1.615V37.53h-1.615zM29.485 25.283a.4.4 0 0 1 .593-.35l9.05 4.977a.4.4 0 0 1 0 .701l-9.05 4.978a.4.4 0 0 1-.593-.35v-9.956z"/></svg>

+ 1 - 1
packages/ckeditor5-media-embed/theme/icons/media.svg

@@ -1 +1 @@
-<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><path d="M18.68 2.53c.6 0 .59-.03.59.55v12.84c0 .59.01.56-.59.56H1.29c-.6 0-.59.03-.59-.56V3.08c0-.58-.01-.55.6-.55h17.38zM15.77 14.5v-10H4.2v10h11.57zM2 4v1h1V4H2zm0 2v1h1V6H2zm0 2v1h1V8H2zm0 2v1h1v-1H2zm0 2v1h1v-1H2zm0 2v1h1v-1H2zM17 4v1h1V4h-1zm0 2v1h1V6h-1zm0 2v1h1V8h-1zm0 2v1h1v-1h-1zm0 2v1h1v-1h-1zm0 2v1h1v-1h-1zM7.5 6.677a.4.4 0 0 1 .593-.351l5.133 2.824a.4.4 0 0 1 0 .7l-5.133 2.824a.4.4 0 0 1-.593-.35V6.676z" fill="#000" fill-rule="nonzero"/></svg>
+<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M18.68 2.53c.6 0 .59-.03.59.55v12.84c0 .59.01.56-.59.56H1.29c-.6 0-.59.03-.59-.56V3.08c0-.58-.01-.55.6-.55h17.38zM15.77 14.5v-10H4.2v10h11.57zM2 4v1h1V4H2zm0 2v1h1V6H2zm0 2v1h1V8H2zm0 2v1h1v-1H2zm0 2v1h1v-1H2zm0 2v1h1v-1H2zM17 4v1h1V4h-1zm0 2v1h1V6h-1zm0 2v1h1V8h-1zm0 2v1h1v-1h-1zm0 2v1h1v-1h-1zm0 2v1h1v-1h-1zM7.5 6.677a.4.4 0 0 1 .593-.351l5.133 2.824a.4.4 0 0 1 0 .7l-5.133 2.824a.4.4 0 0 1-.593-.35V6.676z"/></svg>

+ 12 - 1
packages/ckeditor5-media-embed/theme/mediaembed.css

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
@@ -7,4 +7,15 @@
 	/* Don't allow floated content overlap the media.
 	/* Don't allow floated content overlap the media.
 	https://github.com/ckeditor/ckeditor5-media-embed/issues/53 */
 	https://github.com/ckeditor/ckeditor5-media-embed/issues/53 */
 	clear: both;
 	clear: both;
+
+	/* Make sure there is some space between the content and the media. */
+	margin: 1em 0;
+
+	/* Make sure media is not overriden with Bootstrap default `flex` value.
+	See: https://github.com/ckeditor/ckeditor5/issues/1373. */
+	display: block;
+
+	/* Give the media some minimal width in the content to prevent them
+	from being "squashed" in tight spaces, e.g. in table cells (#44) */
+	min-width: 15em;
 }
 }

+ 1 - 1
packages/ckeditor5-media-embed/theme/mediaembedediting.css

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 

+ 1 - 1
packages/ckeditor5-media-embed/theme/mediaform.css

@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */