scrivito_accordion_widget 1.0.16 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 63afac3c53e7a26692d4cda9d6e7c1b7674aa1c5
4
- data.tar.gz: 68129a161bd076e1f230e267393b845cea490cb7
3
+ metadata.gz: 7e2feaca2474034179474fad524fe44c6c8fbcf2
4
+ data.tar.gz: 73b7a03df1f96d9fafe99d1ece4ec91f04808381
5
5
  SHA512:
6
- metadata.gz: 2402932aaf247f54345da62588c49b5afa0cf207e8823d36dc35dcf06de6b434eb332c3d161f873f3b3f247af67e981598c12945be1e23a178ae1dba508a1c09
7
- data.tar.gz: 93306177dda4c6760138bfb29c1683816634b43ad4122e6aa58583994d4eb7f1423f05268be1b0757a51b3f3c0ee1604b9329050f4544a05b48d085f451ddf94
6
+ metadata.gz: 040d47a458d3a6f2f8f771fdc9f69be55c8e144c2db79cdeb70ee7c63177f0291faf85304de9c9ea4a7775499d1be99b5e78fc4e92759cbfd9e67ab857e59a71
7
+ data.tar.gz: 3698db1365dd1ac21cd3a3f744da158b26ec4d11c0ca93dca5cb78c091548eeebbf37f0a448382193249c66c7ac6f0b9c53535ddad0c92eb416cee3db116c05f
data/README.md CHANGED
@@ -1,33 +1,25 @@
1
- # scrivito_accordion_widget
1
+ # ScrivitoAccordionWidget
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/scrivito_accordion_widget.svg)](http://badge.fury.io/rb/scrivito_accordion_widget)
3
+ A Scrivito widget to add an accordion.
4
4
 
5
- ## Installation
5
+ ## Prerequists
6
6
 
7
- A Widget for Scrivito to add an accordion.
7
+ This widget requires bootstrap.
8
8
 
9
9
  ## Installation
10
10
 
11
- Add this line to your application's `Gemfile`:
11
+ Add this line to your application's Gemfile:
12
12
 
13
13
  gem 'scrivito_accordion_widget'
14
14
 
15
- Than add to your stylesheet manifest:
16
-
17
- *= require scrivito_accordion_widget
18
-
19
- Than add to your Javascript manifest:
20
-
21
- //= require scrivito_accordion_widget
15
+ ## Customization
22
16
 
23
- ## Changelog
24
- See [Changelog](https://github.com/Scrivito/scrivito_accordion_widget/blob/master/CHANGELOG.md) for more
25
- details.
17
+ This widget includes an attribute for a background color of a panel. The value of this attribute is used as CSS class. If ypu want to use the feature add a CSS rule for your selectable colors:
26
18
 
27
- ## Contributing
19
+ ```css
20
+ .bg-red {
21
+ background-color: red;
22
+ }
23
+ ```
28
24
 
29
- 1. Fork it ( https://github.com/Scrivito/scrivito_accordion_widget/fork )
30
- 2. Create your feature branch (`git checkout -b my-new-feature`)
31
- 3. Commit your changes (`git commit -am 'Add some feature'`)
32
- 4. Push to the branch (`git push origin my-new-feature`)
33
- 5. Create a new Pull Request
25
+ You can also use [Scrivito Advanced Editors](https://github.com/Scrivito/scrivito_advanced_editors #color_picker) color picker to have a better visualation of selectable color classes.
@@ -11,4 +11,11 @@ class AccordionPanelWidget < Widget
11
11
  def self.description_for_editor
12
12
  'Panel'
13
13
  end
14
+
15
+ def scrivito_selectable_color_classes
16
+ helper = ApplicationController.helpers
17
+ if helper.respond_to? 'scrivito_selectable_color_classes'
18
+ helper.scrivito_selectable_color_classes('accordion_widget', 'background_color')
19
+ end
20
+ end
14
21
  end
@@ -4,7 +4,7 @@
4
4
  <div class="scrivito-details-<%= widget.id %>">
5
5
  <div>
6
6
  <b>Background Color</b>
7
- <%= render 'scrivito_advanced_editors/color_picker', widget: widget, attribute: :background_color %>
7
+ <%= scrivito_tag :div, widget, :background_color, data: {colors_list: widget.scrivito_selectable_color_classes()} %>
8
8
  </div>
9
9
  </div>
10
10
  </div>
@@ -1,3 +1,3 @@
1
1
  module ScrivitoAccordionWidget
2
- VERSION = "1.0.16"
2
+ VERSION = "1.1.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scrivito_accordion_widget
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.16
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scrivito
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-16 00:00:00.000000000 Z
11
+ date: 2015-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -63,8 +63,6 @@ files:
63
63
  - README.md
64
64
  - Rakefile
65
65
  - app/assets/images/widget_preview_accordion.png
66
- - app/assets/javascripts/scrivito_accordion_widget.js
67
- - app/assets/stylesheets/scrivito_accordion_widget.css.scss
68
66
  - app/models/accordion_panel_widget.rb
69
67
  - app/models/accordion_widget.rb
70
68
  - app/views/accordion_panel_widget/details.html.erb
@@ -75,7 +73,6 @@ files:
75
73
  - lib/scrivito_accordion_widget/engine.rb
76
74
  - lib/scrivito_accordion_widget/version.rb
77
75
  - lib/tasks/scrivito_accordion_widget_tasks.rake
78
- - scrivito/migrate/0_create_accordion_widget.rb
79
76
  homepage: https://www.scrivito.com
80
77
  licenses:
81
78
  - LGPL-3.0
@@ -1,20 +0,0 @@
1
- (function($, App) {
2
- 'use strict';
3
-
4
- $(function() {
5
- $('.scrivito-accordion-group').each(function(i, group) {
6
- var accordion_group = $(group);
7
- accordion_group.find('.scrivito-accordion-title').each(function(i, accordion_title) {
8
- var accordion_title = $(accordion_title);
9
- accordion_title.on('click', function() {
10
- accordion_group.find('.scrivito-accordion-title').removeClass('scrivito-accordion-active');
11
- accordion_group.find('.scrivito-accordion-content').stop(true,false).slideUp(350);
12
-
13
-
14
- accordion_title.addClass('scrivito-accordion-active');
15
- accordion_title.next().stop(true,false).slideDown(350);
16
- });
17
- });
18
- });
19
- });
20
- })(jQuery, this);
@@ -1,25 +0,0 @@
1
- .scrivito-accordion-group {
2
- .scrivito-accordion-panel {
3
- box-shadow: 0 0 3px 1px rgba(0,0,0,0.1);
4
- border-radius: 5px;
5
- overflow: hidden;
6
- margin-bottom: 10px;
7
- }
8
- .scrivito-accordion-title {
9
- background-color: whitesmoke;
10
- padding: 10px 15px;
11
- font-size: 16px;
12
- cursor: pointer;
13
- &:hover {
14
- background-color: #d9d9d9;
15
- }
16
- }
17
- .scrivito-accordion-content {
18
- display: none;
19
- padding: 10px 15px;
20
- position: static;
21
- }
22
- .scrivito-accordion-content.scrivito-accordion-active {
23
- display: block;
24
- }
25
- }
@@ -1,29 +0,0 @@
1
- class CreateAccordionWidget < ::Scrivito::Migration
2
- def up
3
- Scrivito::ObjClass.create(
4
- name: 'AccordionWidget',
5
- is_binary: false,
6
- attributes: [
7
- {
8
- name: 'panels',
9
- type: :widget,
10
- },
11
- ]
12
- )
13
-
14
- Scrivito::ObjClass.create(
15
- name: 'AccordionPanelWidget',
16
- is_binary: false,
17
- attributes: [
18
- {
19
- name: 'headline',
20
- type: :string,
21
- },
22
- {
23
- name: 'content',
24
- type: :widget,
25
- },
26
- ]
27
- )
28
- end
29
- end