bmc 1.4.0 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9fd16af5d254b75668c6cf72c45955014c4ae316bbf8bfbe0eb551878b3d120e
4
- data.tar.gz: 749195388d1b99320fc8f121ec7e354ae9fe4ececb208f78b8887af8b292a9ad
3
+ metadata.gz: 76fecfb84df0ecc80387ef64b76d6042594473fd93bce1ad0a9dfdcb3530574b
4
+ data.tar.gz: bc953b87c09e7b152e609398a53cc4893ca8b748805d84a05020ed5afa0b900f
5
5
  SHA512:
6
- metadata.gz: e34b1f01c27dcc22543c98f3933328c94cbbeab6d70f01a91b765bcdc52732f6f06d53861a0c6148da108f3171279cb7c50ddb8aac57425ec24be4253d4a3328
7
- data.tar.gz: 395d06ebd7a05f5d1fcbc7cf26c2c6b2432f2c285c569b787e7991cd2a9bb6b473f5e7d2e17a57586f5e66693c6265954b40e14cfe2ae60641827f52f99fd716
6
+ metadata.gz: f78df23115e0bb884a5a3d255022f7b17cc1a052b8de20ff03200f894235615b8e3c94b317e293e77a0aa067e07a8c95a442492e87b633e51e0ff0d864e67cba
7
+ data.tar.gz: 8f8c25277438fa515c0b219eaf089365404ae3f788bbd62f2531ab96bbbf8dee5c01a52a9995d0f832bdadf01f48d1a594b60940272bdee3833f30ca1b105ff4
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Next version
4
4
 
5
+ ## v1.4.2
6
+ - Add customizable placeholder to `search_form`
7
+
8
+ ## v1.4.1
9
+ - Configurable bootstrap version
10
+
5
11
  ## v1.4.0
6
12
  - Bug fixes
7
13
  - Ruby min version is 2.7.2
@@ -10,6 +10,12 @@ module BMC::BootstrapHelper
10
10
  :footer => "card-footer",
11
11
  }
12
12
  end
13
+
14
+ attr_writer :bootstrap_version
15
+
16
+ def bootstrap_version
17
+ @bootstrap_version ||= Bootstrap::VERSION[0]
18
+ end
13
19
  end
14
20
 
15
21
  def bs_progress_bar(percentage)
@@ -8,8 +8,8 @@ module BMC::FormHelper
8
8
  tag.input(type: "submit", class: "hidden-submit", style: css)
9
9
  end
10
10
 
11
- def search_form(action: request.fullpath)
12
- render "bmc/search/form", action: action
11
+ def search_form(action: request.fullpath, placeholder: ta(:search))
12
+ render "bmc/search/form", action: action, placeholder: placeholder
13
13
  end
14
14
 
15
15
  def hidden_inputs_for_get_form(url, except: nil, only: nil)
@@ -1,6 +1,10 @@
1
1
  class BMC::MiniModelSerializer::Serialize
2
2
  attr_reader :object, :options
3
3
 
4
+ def self.call(...)
5
+ new(...).call
6
+ end
7
+
4
8
  def initialize(object, options = {})
5
9
  @object = object
6
10
  @options = options
@@ -18,10 +22,6 @@ class BMC::MiniModelSerializer::Serialize
18
22
  end
19
23
  end
20
24
 
21
- def self.call(...)
22
- new(...).call
23
- end
24
-
25
25
  private
26
26
 
27
27
  def serialize(object)
@@ -3,6 +3,10 @@ class BMC::Sorter
3
3
 
4
4
  attr_reader :collection, :sort_param, :column, :direction
5
5
 
6
+ def self.call(...)
7
+ new(...).call
8
+ end
9
+
6
10
  def initialize(collection, sort_param = nil)
7
11
  @collection = collection
8
12
  @sort_param = sort_param
@@ -20,10 +24,6 @@ class BMC::Sorter
20
24
  collection.reorder(order)
21
25
  end
22
26
 
23
- def self.call(...)
24
- new(...).call
25
- end
26
-
27
27
  private
28
28
 
29
29
  def inverted_direction
@@ -1 +1 @@
1
- = render "bmc/search/form_bs#{Bootstrap::VERSION[0]}", action: action
1
+ = render "bmc/search/form_bs#{BMC::BootstrapHelper.bootstrap_version}", action: action, placeholder: placeholder
@@ -3,7 +3,7 @@ form.search.bs3 method="get" action=action
3
3
  = form_hidden_submit
4
4
 
5
5
  p.input-group.search
6
- input.form-control name="q" placeholder=t("actions.search") size=25 value=params[:q]
6
+ input.form-control name="q" placeholder=placeholder size=25 value=params[:q]
7
7
 
8
8
  span.input-group-btn
9
9
  button.btn.btn-default.search-reset.reset type="submit"
@@ -3,7 +3,7 @@ form.search.bs4 method="get" action=action
3
3
  = form_hidden_submit
4
4
 
5
5
  .input-group.search
6
- input.form-control.form-control-sm type="text" name="q" placeholder=ta(:search) value=params[:q]
6
+ input.form-control.form-control-sm type="text" name="q" placeholder=placeholder value=params[:q]
7
7
  span.input-group-append
8
8
  button.btn.btn-sm.bg-light.border.search-reset.reset type="submit" = fa_s(:times)
9
9
  button.btn.btn-sm.bg-light.border.search-submit type="submit" = fa_s(:search)
@@ -3,6 +3,6 @@ form.search.bs5.mb-3 method="get" action=action
3
3
  = form_hidden_submit
4
4
 
5
5
  .input-group.search
6
- input.form-control.form-control-sm type="text" name="q" placeholder=ta(:search) value=params[:q]
6
+ input.form-control.form-control-sm type="text" name="q" placeholder=placeholder value=params[:q]
7
7
  button.btn.btn-sm.bg-light.border.search-reset.reset type="submit" = fa_s(:times)
8
8
  button.btn.btn-sm.bg-light.border.search-submit type="submit" = fa_s(:search)
data/lib/bmc/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module BMC
2
- VERSION = "1.4.0"
2
+ VERSION = "1.4.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bmc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benoit MARTIN-CHAVE
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-02 00:00:00.000000000 Z
11
+ date: 2023-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails-i18n
@@ -230,7 +230,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
230
230
  - !ruby/object:Gem::Version
231
231
  version: '0'
232
232
  requirements: []
233
- rubygems_version: 3.3.7
233
+ rubygems_version: 3.4.10
234
234
  signing_key:
235
235
  specification_version: 4
236
236
  summary: BMC