From 7d03c3f6089d65055c0835b5447b26bd3d150108 Mon Sep 17 00:00:00 2001 From: micael_rodrigues Date: Wed, 11 May 2016 21:11:20 +0100 Subject: [PATCH 1/2] - Included height and width options for Spotify component - Extended width and height validations to allow auto, % and floating point values - Added setting to allow configuration of additional valid CSS Units for width and height definition. - Corrected _validationMessages_ to use Lang class, because it was presenting the lang key as string instead of the value - Updated Documentation --- README.md | 19 ++++++++++++------- components/CodePen.php | 9 ++++++--- components/Flickr.php | 13 ++++++++----- components/GitHub.php | 3 ++- components/GoogleMaps.php | 13 ++++++++----- components/GooglePlus.php | 3 ++- components/Imgur.php | 3 ++- components/Instagram.php | 10 +++++++--- components/JsFiddle.php | 11 +++++++---- components/Kickstarter.php | 14 +++++++++----- components/SoundCloud.php | 10 ++++++---- components/Spotify.php | 25 ++++++++++++++++++++++++- components/Twitter.php | 3 ++- components/Vimeo.php | 13 ++++++++----- components/Vine.php | 3 ++- components/YouTube.php | 14 +++++++++----- components/instagram/default.htm | 5 +++-- components/spotify/default.htm | 2 +- lang/en/common.php | 8 ++++---- lang/en/lang.php | 6 ++++++ lang/ru/common.php | 8 ++++---- lang/ru/lang.php | 5 +++++ models/settings/fields.yaml | 7 +++++++ updates/version.yaml | 4 ++++ 24 files changed, 148 insertions(+), 63 deletions(-) diff --git a/README.md b/README.md index 96de396..3aa48a4 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,9 @@ This plugin ships with a settings page. Go to `Settings` and you will see a menu By default every component will be enabled. This is in most cases unnecessary. Instead, it is recommended to only enable the components you will be needing. To do so, set the `Mode` to either `Use all except the following Embeds:` or `Use only the following Embeds:` -- then specify a comma separated list of component names in the text box under. +You can also specify the allowed CSS units (in addition to _auto_ and _%_) to define `Width/Height` properties on the applicable embeds. +This is particularly useful if you want to add some '_responsiveness_' to non-responsive embed. + ## Supported Providers - [CodePen](#codepen) @@ -56,7 +59,7 @@ Property | Description --------------------- | --------------------- **Pen** | The Pen ID or the full URL copied from the browser address bar. Example: `https://codepen.io/stessyco/pen/noDCi` **Default Tab** | Select which tab shows up by default. **Options:** `Result` `HTML` `JS` `CSS` -**Widget Height** | Height of the widget specified in pixels. **Default:** 268 +**Widget Height** | Height of the widget specified in elegible CSS length value. **Default:** 268 ### Flickr @@ -65,8 +68,8 @@ Embed any Flickr URL. This includes links to photos, albums and user profiles. Property | Description --------------------- | --------------------- **URL** | The full Flickr.com URL. -**Widget Width** | Width of the widget specified in pixels. **Default:** 640 -**Widget Height** | Height of the widget specified in pixels. **Default:** 426 +**Widget Width** | Width of the widget specified in elegible CSS length value. **Default:** 640 +**Widget Height** | Height of the widget specified in elegible CSS length value. **Default:** 426 **Responsiveness** | [Click here for details.](#responsiveness) **Default:** False ### GitHub Gist @@ -81,8 +84,8 @@ Property | Description --------------------- | --------------------- **Place** | The place you want to display on the Map. Accepts any Google Maps search query. Eg: `Oslo, Norway` **Map Type** | Type of map to display. **Options:** `Roadmap` `Satellite` -**Widget Width** | Width of the widget specified in pixels. **Default:** 600 -**Widget Height** | Height of the widget specified in pixels. **Default:** 450 +**Widget Width** | Width of the widget specified in elegible CSS length value. **Default:** 600 +**Widget Height** | Height of the widget specified in elegible CSS length value. **Default:** 450 > **Important note:** The Google Maps component requires a API key. Get your key from [Google Developers](https://developers.google.com/maps/documentation/embed/guide#api_key) and register it in the settings page. @@ -117,7 +120,7 @@ Property | Description **jsFiddle** | The ID or full URL of the fiddle you wish to display. Eg: `https://jsfiddle.net/id/` **Tabs** | Remove or rearrange tabs. **Default:** `js,resources,html,css,result` **Skin** | Which skin should be used. **Options**: `Light` `Presentation` -**Height** | Height of the widget specified in pixels. **Default:** 300 +**Height** | Height of the widget specified in elegible CSS length value. **Default:** 300 ### Kickstarter @@ -138,7 +141,7 @@ Property | Description --------------------- | --------------------- **URL** | Full SoundCloud URL copied from the browser address bar. **Auto Play** | Play begin playback when the widget loads. **Default:** False -**Widget Height** | Height of the widget specified in pixels. **Default**: 166 +**Widget Height** | Height of the widget specified in elegible CSS length value. **Default**: 166 > **Note:** When embedding a playlist or user profile, you must increase the `Widget Height` to display the playlist. @@ -151,6 +154,8 @@ Embed a Spotify Play Button. Property | Description --------------------- | --------------------- **Track** | The Spotify URI. Right click on a track -> `Copy Spotify URI`. Also accepts the Spotify HTTP URL. +**Widget Width** | Width of the widget specified in elegible CSS length value. **Default**: 300 +**Widget Height** | Height of the widget specified in elegible CSS length value. **Default**: 380 ### Twitter diff --git a/components/CodePen.php b/components/CodePen.php index 0abb286..b174282 100644 --- a/components/CodePen.php +++ b/components/CodePen.php @@ -2,6 +2,8 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Krisawzm\Embed\Models\Settings; +use Lang; class CodePen extends ComponentBase { @@ -21,6 +23,7 @@ public function componentDetails() */ public function defineProperties() { + $css_units = Settings::get('valid_css_units', 'px'); return [ 'id' => [ 'title' => 'krisawzm.embed::codepen.properties.id.title', @@ -28,7 +31,7 @@ public function defineProperties() 'default' => 'noDCi', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::codepen.properties.id.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::codepen.properties.id.validationMessage'), ], 'defaultTab' => [ @@ -44,8 +47,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.height.description', 'default' => '268', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.height.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.height.validationMessage'), ], ]; } diff --git a/components/Flickr.php b/components/Flickr.php index 2b13fe4..ae38802 100644 --- a/components/Flickr.php +++ b/components/Flickr.php @@ -2,6 +2,8 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Krisawzm\Embed\Models\Settings; +use Lang; class Flickr extends ComponentBase { @@ -21,6 +23,7 @@ public function componentDetails() */ public function defineProperties() { + $css_units = Settings::get('valid_css_units', 'px'); return [ 'url' => [ 'title' => 'krisawzm.embed::flickr.properties.url.title', @@ -28,7 +31,7 @@ public function defineProperties() 'default' => 'https://www.flickr.com/photos/tobeelynn/3605080317/', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::flickr.properties.url.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::flickr.properties.url.validationMessage'), ], 'width' => [ @@ -36,8 +39,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.width.description', 'default' => '640', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'Wkrisawzm.embed::common.properties.width.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => 'Wkrisawzm.embed::common.properties.width.validationMessage'), ], 'height' => [ @@ -45,8 +48,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.height.description', 'default' => '426', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.height.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.height.validationMessage'), ], 'responsive' => [ diff --git a/components/GitHub.php b/components/GitHub.php index 3ac5a29..3402cb4 100644 --- a/components/GitHub.php +++ b/components/GitHub.php @@ -2,6 +2,7 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Lang; class GitHub extends ComponentBase { @@ -28,7 +29,7 @@ public function defineProperties() 'default' => 'krisawzm/0db0766c46a465bb40e8', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::github.properties.id.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::github.properties.id.validationMessage'), ], ]; } diff --git a/components/GoogleMaps.php b/components/GoogleMaps.php index 99e4a55..fd9cf80 100644 --- a/components/GoogleMaps.php +++ b/components/GoogleMaps.php @@ -3,6 +3,7 @@ use Cms\Classes\ComponentBase; use Krisawzm\Embed\Models\Settings; +use Lang; class GoogleMaps extends ComponentBase { @@ -22,6 +23,8 @@ public function componentDetails() */ public function defineProperties() { + $css_units = Settings::get('valid_css_units', 'px'); + return [ 'q' => [ 'title' => 'krisawzm.embed::googlemaps.properties.q.title', @@ -29,7 +32,7 @@ public function defineProperties() 'default' => 'Oslo, Norway', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::googlemaps.properties.q.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::googlemaps.properties.q.validationMessage'), ], 'mapType' => [ @@ -45,8 +48,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.width.description', 'default' => '600', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.width.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.width.validationMessage'), ], 'height' => [ @@ -54,8 +57,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.height.description', 'default' => '450', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.height.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.height.validationMessage'), ], 'responsive' => [ diff --git a/components/GooglePlus.php b/components/GooglePlus.php index 62bf83a..48a87ea 100644 --- a/components/GooglePlus.php +++ b/components/GooglePlus.php @@ -2,6 +2,7 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Lang; class GooglePlus extends ComponentBase { @@ -28,7 +29,7 @@ public function defineProperties() 'default' => 'https://', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::googleplus.properties.link.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::googleplus.properties.link.validationMessage'), ], ]; } diff --git a/components/Imgur.php b/components/Imgur.php index 235686c..4caa230 100644 --- a/components/Imgur.php +++ b/components/Imgur.php @@ -2,6 +2,7 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Lang; class Imgur extends ComponentBase { @@ -28,7 +29,7 @@ public function defineProperties() 'default' => 'NLitg', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::imgur.properties.id.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::imgur.properties.id.validationMessage'), ], 'hideDetails' => [ diff --git a/components/Instagram.php b/components/Instagram.php index e40a352..270ba1d 100644 --- a/components/Instagram.php +++ b/components/Instagram.php @@ -2,6 +2,8 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Krisawzm\Embed\Models\Settings; +use Lang; class Instagram extends ComponentBase { @@ -21,6 +23,8 @@ public function componentDetails() */ public function defineProperties() { + $css_units = Settings::get('valid_css_units', 'px'); + return [ 'id' => [ 'title' => 'krisawzm.embed::instagram.properties.id.title', @@ -28,7 +32,7 @@ public function defineProperties() 'default' => 'tWdDeNImrp', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::instagram.properties.id.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::instagram.properties.id.validationMessage'), ], 'width' => [ @@ -36,8 +40,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.width.description', 'default' => '350', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.width.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.width.validationMessage'), ], 'caption' => [ diff --git a/components/JsFiddle.php b/components/JsFiddle.php index d9d4e10..f0a4424 100644 --- a/components/JsFiddle.php +++ b/components/JsFiddle.php @@ -2,6 +2,8 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Krisawzm\Embed\Models\Settings; +use Lang; class JsFiddle extends ComponentBase { @@ -21,6 +23,7 @@ public function componentDetails() */ public function defineProperties() { + $css_units = Settings::get('valid_css_units', 'px'); return [ 'id' => [ 'title' => 'krisawzm.embed::jsfiddle.properties.id.title', @@ -28,7 +31,7 @@ public function defineProperties() 'default' => 'dwqujux4', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::jsfiddle.properties.id.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::jsfiddle.properties.id.validationMessage'), ], 'tabs' => [ @@ -37,7 +40,7 @@ public function defineProperties() 'default' => 'js,resources,html,css,result', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::jsfiddle.properties.tabs.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::jsfiddle.properties.tabs.validationMessage'), ], 'skin' => [ @@ -53,8 +56,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.height.description', 'default' => '300', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.height.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.height.validationMessage'), ], ]; } diff --git a/components/Kickstarter.php b/components/Kickstarter.php index 7f4d995..91113ec 100644 --- a/components/Kickstarter.php +++ b/components/Kickstarter.php @@ -2,6 +2,8 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Krisawzm\Embed\Models\Settings; +use Lang; class Kickstarter extends ComponentBase { @@ -21,6 +23,8 @@ public function componentDetails() */ public function defineProperties() { + $css_units = Settings::get('valid_css_units', 'px'); + return [ 'url' => [ 'title' => 'krisawzm.embed::kickstarter.properties.url.title', @@ -28,7 +32,7 @@ public function defineProperties() 'default' => 'https://', 'type' => 'string', 'validationPattern' => '^https?:\/\/(www\.)?kickstarter\.com\/?.+$', - 'validationMessage' => 'krisawzm.embed::kickstarter.properties.url.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::kickstarter.properties.url.validationMessage'), ], 'type' => [ @@ -44,8 +48,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::kickstarter.properties.width.description', 'default' => '360', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.width.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.width.validationMessage'), ], 'height' => [ @@ -53,8 +57,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::kickstarter.properties.height.description', 'default' => '480', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.height.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.height.validationMessage'), ], ]; } diff --git a/components/SoundCloud.php b/components/SoundCloud.php index 50af758..bac88c9 100644 --- a/components/SoundCloud.php +++ b/components/SoundCloud.php @@ -3,9 +3,10 @@ use Cache; use Cms\Classes\ComponentBase; -use October\Rain\Network\Http; use Krisawzm\Embed\Models\Settings; +use Lang; use October\Rain\Exception\ApplicationException; +use October\Rain\Network\Http; class SoundCloud extends ComponentBase { @@ -25,6 +26,7 @@ public function componentDetails() */ public function defineProperties() { + $css_units = Settings::get('valid_css_units', 'px'); return [ 'url' => [ 'title' => 'krisawzm.embed::soundcloud.properties.url.title', @@ -32,7 +34,7 @@ public function defineProperties() 'default' => 'https://', 'type' => 'string', 'validationPattern' => '^https?:\/\/soundcloud\.com\/?.+$', - 'validationMessage' => 'krisawzm.embed::soundcloud.properties.url.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::soundcloud.properties.url.validationMessage'), ], 'autoPlay' => [ @@ -47,8 +49,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.height.title', 'default' => '166', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.height.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.height.validationMessage'), ], ]; } diff --git a/components/Spotify.php b/components/Spotify.php index f0cf13b..1d76327 100644 --- a/components/Spotify.php +++ b/components/Spotify.php @@ -2,6 +2,9 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Krisawzm\Embed\Models\Settings; +use Lang; + class Spotify extends ComponentBase { @@ -21,6 +24,7 @@ public function componentDetails() */ public function defineProperties() { + $css_units = Settings::get('valid_css_units', 'px'); return [ 'id' => [ 'title' => 'krisawzm.embed::spotify.properties.id.title', @@ -28,8 +32,26 @@ public function defineProperties() 'default' => 'spotify:track:6JEK0CvvjDjjMUBFoXShNZ', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::spotify.properties.id.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::spotify.properties.id.validationMessage'), + ], + + 'width' => [ + 'title' => 'krisawzm.embed::common.properties.width.title', + 'description' => 'krisawzm.embed::common.properties.width.description', + 'default' => '300', + 'type' => 'string', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.width.validationMessage'), ], + + 'height' => [ + 'title' => 'krisawzm.embed::common.properties.height.title', + 'description' => 'krisawzm.embed::common.properties.height.description', + 'default' => '380', + 'type' => 'string', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.height.validationMessage'), + ] ]; } @@ -50,4 +72,5 @@ public function uri() return $id; } + } diff --git a/components/Twitter.php b/components/Twitter.php index e14f5c7..8bb2991 100644 --- a/components/Twitter.php +++ b/components/Twitter.php @@ -2,6 +2,7 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Lang; class Twitter extends ComponentBase { @@ -28,7 +29,7 @@ public function defineProperties() 'default' => '//twitter.com/rickastley/status/14727077121', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::twitter.properties.href.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::twitter.properties.href.validationMessage'), ], 'hideMedia' => [ diff --git a/components/Vimeo.php b/components/Vimeo.php index 3a81fc5..722c3ee 100644 --- a/components/Vimeo.php +++ b/components/Vimeo.php @@ -2,6 +2,8 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Krisawzm\Embed\Models\Settings; +use Lang; class Vimeo extends ComponentBase { @@ -21,6 +23,7 @@ public function componentDetails() */ public function defineProperties() { + $css_units = Settings::get('valid_css_units', 'px'); return [ 'id' => [ 'title' => 'krisawzm.embed::vimeo.properties.id.title', @@ -28,7 +31,7 @@ public function defineProperties() 'default' => '87031388', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::vimeo.properties.id.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::vimeo.properties.id.validationMessage'), ], 'width' => [ @@ -36,8 +39,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.width.description', 'default' => '560', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.width.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.width.validationMessage'), ], 'height' => [ @@ -45,8 +48,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.height.description', 'default' => '315', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.height.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.height.validationMessage'), ], 'responsive' => [ diff --git a/components/Vine.php b/components/Vine.php index ff8a1b5..43af6ed 100644 --- a/components/Vine.php +++ b/components/Vine.php @@ -2,6 +2,7 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Lang; class Vine extends ComponentBase { @@ -28,7 +29,7 @@ public function defineProperties() 'default' => '', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::vine.properties.id.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::vine.properties.id.validationMessage'), ], 'audio' => [ diff --git a/components/YouTube.php b/components/YouTube.php index 094089e..3e1f973 100644 --- a/components/YouTube.php +++ b/components/YouTube.php @@ -2,6 +2,8 @@ namespace Krisawzm\Embed\Components; use Cms\Classes\ComponentBase; +use Krisawzm\Embed\Models\Settings; +use Lang; class YouTube extends ComponentBase { @@ -21,6 +23,8 @@ public function componentDetails() */ public function defineProperties() { + $css_units = Settings::get('valid_css_units', 'px'); + return [ 'id' => [ 'title' => 'krisawzm.embed::youtube.properties.id.title', @@ -28,7 +32,7 @@ public function defineProperties() 'default' => 'dQw4w9WgXcQ', 'type' => 'string', 'validationPattern' => '^.*$', - 'validationMessage' => 'krisawzm.embed::youtube.properties.id.validationMessage', + 'validationMessage' => Lang::get('krisawzm.embed::youtube.properties.id.validationMessage'), ], 'width' => [ @@ -36,8 +40,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.width.description', 'default' => '560', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.width.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.width.validationMessage'), ], 'height' => [ @@ -45,8 +49,8 @@ public function defineProperties() 'description' => 'krisawzm.embed::common.properties.height.description', 'default' => '315', 'type' => 'string', - 'validationPattern' => '^[0-9]+$', - 'validationMessage' => 'krisawzm.embed::common.properties.height.validationMessage', + 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.height.validationMessage'), ], 'responsive' => [ diff --git a/components/instagram/default.htm b/components/instagram/default.htm index d75801f..da59ce5 100644 --- a/components/instagram/default.htm +++ b/components/instagram/default.htm @@ -1,4 +1,5 @@ -
- +
+
diff --git a/components/spotify/default.htm b/components/spotify/default.htm index 3780804..f68229c 100644 --- a/components/spotify/default.htm +++ b/components/spotify/default.htm @@ -1 +1 @@ - + \ No newline at end of file diff --git a/lang/en/common.php b/lang/en/common.php index 4f0de92..d06b13f 100644 --- a/lang/en/common.php +++ b/lang/en/common.php @@ -16,14 +16,14 @@ 'properties' => [ 'width' => [ 'title' => 'Widget Width', - 'description' => 'Widget Width in pixels.', - 'validationMessage' => 'Widget Width must be a number.', + 'description' => 'Widget Width in valid CSS value.', + 'validationMessage' => 'Widget Width must use a valid CSS unit', ], 'height' => [ 'title' => 'Widget Height', - 'description' => 'Widget Height in pixels.', - 'validationMessage' => 'Widget Height must be a number.', + 'description' => 'Widget Height in valid CSS value.', + 'validationMessage' => 'Widget Width must use a valid CSS unit', ], 'responsive' => [ diff --git a/lang/en/lang.php b/lang/en/lang.php index 8dd761e..94c2f35 100644 --- a/lang/en/lang.php +++ b/lang/en/lang.php @@ -44,5 +44,11 @@ 'label' => 'SoundCloud Client ID', 'comment' => 'Optional. If you\'re using the SoundCloud Player, you\'ll have to specify a CLient ID. See https://developers.soundcloud.com/' ], + + 'css_units' => [ + 'label' => 'Supported CSS units', + 'comment' => 'Pipe (|) separated list containing enabled CSS units for width and height values (In addition to "auto" and %). Example: "px,em"' + ], + ], ]; diff --git a/lang/ru/common.php b/lang/ru/common.php index e786ac5..dffc78f 100644 --- a/lang/ru/common.php +++ b/lang/ru/common.php @@ -16,13 +16,13 @@ 'properties' => [ 'width' => [ 'title' => 'Ширина Виджета', - 'description' => 'Ширина Виджета в пикселях.', - 'validationMessage' => 'Ширина Виджета должна быть числом.', + 'description' => 'Ширина Виджета, в действующей единице CSS.', + 'validationMessage' => 'Ширина Виджета необходимо использовать допустимый блок CSS.', ], 'height' => [ 'title' => 'Высота Виджета', - 'description' => 'Высота Виджета в пикселях.', - 'validationMessage' => 'Высота Виджета должна быть числом.', + 'description' => 'Высота Виджета, в действующей единице CSS.', + 'validationMessage' => 'Высота Виджета необходимо использовать допустимый блок CSS.', ], 'responsive' => [ 'title' => 'Респонсивный', diff --git a/lang/ru/lang.php b/lang/ru/lang.php index 671df5b..0775546 100644 --- a/lang/ru/lang.php +++ b/lang/ru/lang.php @@ -39,5 +39,10 @@ 'label' => 'SoundCloud Client ID', 'comment' => 'Не обязательно. Если вы используете SoundCloud Player, и у вас есть специальный Client ID. Смотрите https://developers.soundcloud.com/' ], + + 'css_units' => [ + 'label' => 'Поддерживаемые блоки CSS', + 'comment' => 'Вертикальная черта (| ), разделенных список, содержащий включены CSS единицы измерения для значений ширины и высоты (в дополнение к "auto" и %) . Пример: "px,em"' + ], ], ]; diff --git a/models/settings/fields.yaml b/models/settings/fields.yaml index fb3f5e9..1626afc 100644 --- a/models/settings/fields.yaml +++ b/models/settings/fields.yaml @@ -29,3 +29,10 @@ fields: label: krisawzm.embed::lang.settings.soundcloud_client_id.label type: text comment: krisawzm.embed::lang.settings.soundcloud_client_id.comment + + valid_css_units: + label: krisawzm.embed::lang.settings.css_units.label + type: text + commnent: krisawzm.embed::lang.settings.css_units.comment + placeholder: em|ex|ch|rem|cm|mm|q|in|pt|pc|px|vw|vh|vmin|vmax + default: em|ex|ch|rem|cm|mm|q|in|pt|pc|px|vw|vh|vmin|vmax diff --git a/updates/version.yaml b/updates/version.yaml index 371e269..a613ebf 100644 --- a/updates/version.yaml +++ b/updates/version.yaml @@ -3,3 +3,7 @@ 1.0.2: 'Added Russian language.' 1.0.3: 'Minor improvements.' 1.0.4: 'Fixed issue with the Flickr component.' +1.0.5: + - Included height and width options for Spotify component + - Extended width and height validations to allow auto, % and floating point values + - Added setting to allow configuration of additional valid CSS Units for width and height definition. \ No newline at end of file From 913c1f0821128e917486b1af28574334809c6d78 Mon Sep 17 00:00:00 2001 From: micael_rodrigues Date: Wed, 11 May 2016 21:50:00 +0100 Subject: [PATCH 2/2] - Corrected syntax error on Flickr file --- components/Flickr.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Flickr.php b/components/Flickr.php index ae38802..0fa7307 100644 --- a/components/Flickr.php +++ b/components/Flickr.php @@ -40,7 +40,7 @@ public function defineProperties() 'default' => '640', 'type' => 'string', 'validationPattern' => '^(auto|0)$|^\d+(\.\d+)?(%|'.$css_units.')?$', - 'validationMessage' => 'Wkrisawzm.embed::common.properties.width.validationMessage'), + 'validationMessage' => Lang::get('krisawzm.embed::common.properties.width.validationMessage'), ], 'height' => [