hellobase 0.1.7 → 0.1.12

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: 304e4c01b7cf2cda1aba0913505df28995211698b290be7891e3f5f9cbc0825b
4
- data.tar.gz: d20143c56281095365ee8ce07ad3694b9cbba20efda82c84e00fa45647f4b17d
3
+ metadata.gz: 97553f4ffdcf70e04c9458401cda7c8fa90214289446ed80a9a470b0f33824d5
4
+ data.tar.gz: 895a9128b0a720b6153b3b1b8e180c909f7f6c591b2bb227d7a0b4e31fb510ba
5
5
  SHA512:
6
- metadata.gz: d8f5f6e09df8dc8529b3194d666b7cc4d085c9eb0210c7787890e0654cb30c76088869c1cfe733d41d3d0949b3a4ab509bc01cd09768a00e2a47124f7865347b
7
- data.tar.gz: 5526a08028b78ad53985d38167a0772c277cd62e5314c39f924035783b8171c714d7ee79563d149533b687fc6e1eca7fb0076183612bd86058b9346e6ad65bd7
6
+ metadata.gz: f6cc31a56055ec57f79230a080ee53c85ac10392c0e662fb730e86f28e3f453eb14a93da96e7f999b94f2ba4abd7690bf666c6644782b1c8d380354c6f9c6309
7
+ data.tar.gz: c342ae01d51cbba476e1cffd0a043dad49db5463dcc47119588115b211a40c1987b98369ee0acb269d2e266b21ca9a33b0d25893687163c2e243b6794937cf4e
@@ -1,32 +1,6 @@
1
- require 'bigdecimal'
2
- require 'date'
3
- require 'active_support/core_ext/date'
4
- require 'active_support/core_ext/time'
5
- require 'active_support/duration'
6
- require 'tod'
7
-
8
- require 'hellobase/array_access'
9
- require 'hellobase/date_creation'
10
- require 'hellobase/datetime_creation'
11
- require 'hellobase/divide_by_zero'
12
- require 'hellobase/duration_arithmetic'
13
- require 'hellobase/string_access'
14
- require 'hellobase/time_creation'
1
+ require 'hellobase/core_ext'
2
+ require 'hellobase/formtastic'
3
+ require 'hellobase/time_zones'
15
4
 
16
5
  module Hellobase
17
- DATE_FORMAT = /^\d{4}-\d{2}-\d{2}$/
18
- TIME_FORMAT = /^\d{2}:\d{2}:\d{2}$/
19
- DATETIME_FORMAT = /^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} UTC$/
20
-
21
- class Error < StandardError
22
- attr_reader :type, :object
23
-
24
- def initialize(type, object, *args)
25
- @type = type
26
- @object = object
27
- @args = args
28
-
29
- super "#{type}: #{object.inspect}, #{args.inspect}"
30
- end
31
- end
32
6
  end
@@ -0,0 +1,32 @@
1
+ require 'bigdecimal'
2
+ require 'date'
3
+ require 'active_support/core_ext/date'
4
+ require 'active_support/core_ext/time'
5
+ require 'active_support/duration'
6
+ require 'tod'
7
+
8
+ require 'hellobase/core_ext/array_access'
9
+ require 'hellobase/core_ext/date_creation'
10
+ require 'hellobase/core_ext/datetime_creation'
11
+ require 'hellobase/core_ext/divide_by_zero'
12
+ require 'hellobase/core_ext/duration_arithmetic'
13
+ require 'hellobase/core_ext/string_access'
14
+ require 'hellobase/core_ext/time_creation'
15
+
16
+ module Hellobase
17
+ DATE_FORMAT = /^\d{4}-\d{2}-\d{2}$/
18
+ TIME_FORMAT = /^\d{2}:\d{2}:\d{2}$/
19
+ DATETIME_FORMAT = /^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} UTC$/
20
+
21
+ class Error < StandardError
22
+ attr_reader :type, :object
23
+
24
+ def initialize(type, object, *args)
25
+ @type = type
26
+ @object = object
27
+ @args = args
28
+
29
+ super "#{type}: #{object.inspect}, #{args.inspect}"
30
+ end
31
+ end
32
+ end
@@ -1,7 +1,7 @@
1
1
  Date.singleton_class.prepend(
2
2
  Module.new do
3
3
  def parse(string)
4
- raise Hellobase::Error.new(:date_format, nil, string) unless string =~ Hellobase::DATE_FORMAT
4
+ raise Hellobase::Error.new(:date_format, nil, string) unless (string =~ Hellobase::DATE_FORMAT) || string.blank?
5
5
 
6
6
  begin
7
7
  super
@@ -1,7 +1,7 @@
1
1
  Time.singleton_class.prepend(
2
2
  Module.new do
3
3
  def parse(string)
4
- raise Hellobase::Error.new(:datetime_format, nil, string) unless string =~ Hellobase::DATETIME_FORMAT
4
+ raise Hellobase::Error.new(:datetime_format, nil, string) unless (string =~ Hellobase::DATETIME_FORMAT) || string.blank?
5
5
 
6
6
  begin
7
7
  super
@@ -19,7 +19,12 @@ Time.singleton_class.prepend(
19
19
  end
20
20
 
21
21
  def new(*args)
22
- raise Hellobase::Error.new(:datetime_new, nil)
22
+ # only allow ActiveSupport::TimeZone to use Time.new
23
+ unless caller_locations(1, 1)[0].path.end_with? 'active_support/values/time_zone.rb'
24
+ raise Hellobase::Error.new(:datetime_new, nil)
25
+ end
26
+
27
+ super
23
28
  end
24
29
  end
25
30
  )
@@ -1,7 +1,7 @@
1
1
  Tod::TimeOfDay.singleton_class.prepend(
2
2
  Module.new do
3
3
  def parse(string)
4
- raise Hellobase::Error.new(:time_format, nil, string) unless string =~ Hellobase::TIME_FORMAT
4
+ raise Hellobase::Error.new(:time_format, nil, string) unless (string =~ Hellobase::TIME_FORMAT) || string.blank?
5
5
 
6
6
  begin
7
7
  super
@@ -0,0 +1,7 @@
1
+ require 'active_support' # formtastic needs ActiveSupport::Autoload
2
+ require 'formtastic'
3
+
4
+ require 'hellobase/formtastic/content_input'
5
+ require 'hellobase/formtastic/datepicker_with_time_input'
6
+ require 'hellobase/formtastic/inline_checkbox_input'
7
+ require 'hellobase/formtastic/time_of_day_input'
@@ -0,0 +1,8 @@
1
+ class ContentInput < ::Formtastic::Inputs::StringInput
2
+ def to_html
3
+ input_wrapping do
4
+ label_html <<
5
+ template.content_tag(:span, options[:content])
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,85 @@
1
+ # require these here so we can load this as a standalone file - see formtastic.rb
2
+ require 'active_support'
3
+ require 'formtastic'
4
+
5
+ require 'active_admin/inputs'
6
+
7
+ class DatepickerWithTimeInput
8
+ include ::Formtastic::Inputs::Base
9
+
10
+ def self.virtual_attributes(attr)
11
+ [:"_dpwt_#{attr}_d", :"_dpwt_#{attr}_t"]
12
+ end
13
+
14
+ def self.define_virtual_attributes(klass, attr)
15
+ return if klass.respond_to? :_dpwt_defined
16
+
17
+ klass.class_eval <<-RUBY
18
+ def self._dpwt_defined; end
19
+
20
+ def _dpwt_#{attr}_d
21
+ self.#{attr}&.strftime('%Y-%m-%d')
22
+ end
23
+
24
+ def _dpwt_#{attr}_t
25
+ self.#{attr}&.strftime('%R')
26
+ end
27
+
28
+ def _dpwt_#{attr}_d=(val)
29
+ @_dpwt_#{attr}_d = val
30
+ _dpwt_set_#{attr}
31
+
32
+ val
33
+ end
34
+
35
+ def _dpwt_#{attr}_t=(val)
36
+ @_dpwt_#{attr}_t = val
37
+ _dpwt_set_#{attr}
38
+
39
+ val
40
+ end
41
+
42
+ private
43
+
44
+ def _dpwt_set_#{attr}
45
+ self.#{attr} = @_dpwt_#{attr}_d.blank? || @_dpwt_#{attr}_t.blank? ? nil : [@_dpwt_#{attr}_d, @_dpwt_#{attr}_t].join(' ')
46
+ end
47
+ RUBY
48
+ end
49
+
50
+ def to_html
51
+ datepicker_html = ActiveAdmin::Inputs::DatepickerInput.new(builder, template, object, object_name, :"_dpwt_#{method}_d", datepicker_options).to_html
52
+ time_select_html = Formtastic::Inputs::SelectInput.new(builder, template, object, object_name, :"_dpwt_#{method}_t", time_select_options).to_html
53
+ zone_display_html = options[:time_zone] ? template.content_tag(:span, options[:time_zone]) : nil
54
+
55
+ wrapper_contents = [
56
+ replace_li_tag(datepicker_html),
57
+ replace_li_tag(time_select_html),
58
+ zone_display_html,
59
+ error_html,
60
+ hint_html,
61
+ ].compact.join("\n").html_safe
62
+
63
+ template.content_tag(:li, wrapper_contents, wrapper_html_options)
64
+ end
65
+
66
+ private
67
+
68
+ def datepicker_options
69
+ {
70
+ label: label_text,
71
+ }.merge(options[:datepicker_options] || {})
72
+ end
73
+
74
+ def time_select_options
75
+ {
76
+ label: false,
77
+ collection: (0..23).map {|h| (0..59).select {|m| m % 5 == 0 }.map {|m| ['%02i' % h, '%02i' % m].join(':') } }.flatten,
78
+ }.merge(options[:time_select_options] || {})
79
+ end
80
+
81
+ # formtastic inputs generate <li> with no way to override
82
+ def replace_li_tag(html)
83
+ html.strip.sub(/^<li /, '<span ').sub(/<\/li>$/, '</span>').html_safe
84
+ end
85
+ end
@@ -0,0 +1,9 @@
1
+ class InlineCheckboxInput < Formtastic::Inputs::BooleanInput
2
+ def to_html
3
+ input_wrapping do
4
+ hidden_field_html <<
5
+ label_html <<
6
+ check_box_html
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,19 @@
1
+ class TimeOfDayInput < ::Formtastic::Inputs::SelectInput
2
+ def initialize(*)
3
+ super
4
+
5
+ @options[:collection] ||= build_times_collection
6
+ end
7
+
8
+ private
9
+
10
+ def build_times_collection
11
+ hours = 0..23
12
+ minutes = (0..59).select {|m| m % 5 == 0 }
13
+ seconds = (0..59).select {|m| m % 60 == 0 }
14
+ times = hours.map {|h| minutes.map {|m| seconds.map {|s| Tod::TimeOfDay.new(h, m, s) } } }.flatten
15
+
16
+ format = '%I:%M %p'
17
+ times.map {|t| [t.strftime(format), t.to_s] }
18
+ end
19
+ end
@@ -0,0 +1,13 @@
1
+ require 'tzinfo'
2
+
3
+ module Hellobase
4
+ class << self
5
+ def domestic_time_zone_select_values(country_code)
6
+ TZInfo::Country.get(country_code).zone_info.map {|z| [z.description || z.timezone.friendly_identifier(true), z.identifier] }
7
+ end
8
+
9
+ def foreign_time_zone_select_values(country_code)
10
+ TZInfo::Country.all.reject {|c| c.code == country_code }.map(&:zone_info).flatten.uniq.map {|z| [z.description || z.timezone.friendly_identifier(false), z.identifier] }
11
+ end
12
+ end
13
+ end
@@ -1,3 +1,3 @@
1
1
  module Hellobase
2
- VERSION = '0.1.7'
2
+ VERSION = '0.1.12'
3
3
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hellobase
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anthony Wang
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-13 00:00:00.000000000 Z
11
+ date: 2020-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activeadmin
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.7'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: activesupport
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -38,6 +52,48 @@ dependencies:
38
52
  - - "~>"
39
53
  - !ruby/object:Gem::Version
40
54
  version: '2.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: activemodel
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '6.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '6.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: activerecord
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '6.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '6.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: actionview
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '6.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '6.0'
41
97
  - !ruby/object:Gem::Dependency
42
98
  name: minitest
43
99
  requirement: !ruby/object:Gem::Requirement
@@ -58,6 +114,20 @@ dependencies:
58
114
  - - "<"
59
115
  - !ruby/object:Gem::Version
60
116
  version: '5.14'
117
+ - !ruby/object:Gem::Dependency
118
+ name: nokogiri
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: '1.10'
124
+ type: :development
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: '1.10'
61
131
  - !ruby/object:Gem::Dependency
62
132
  name: warning
63
133
  requirement: !ruby/object:Gem::Requirement
@@ -72,7 +142,7 @@ dependencies:
72
142
  - - "~>"
73
143
  - !ruby/object:Gem::Version
74
144
  version: '1.0'
75
- description:
145
+ description:
76
146
  email:
77
147
  - awang@hellobase.com
78
148
  executables: []
@@ -81,18 +151,25 @@ extra_rdoc_files: []
81
151
  files:
82
152
  - MIT-LICENSE
83
153
  - lib/hellobase.rb
84
- - lib/hellobase/array_access.rb
85
- - lib/hellobase/date_creation.rb
86
- - lib/hellobase/datetime_creation.rb
87
- - lib/hellobase/divide_by_zero.rb
88
- - lib/hellobase/duration_arithmetic.rb
89
- - lib/hellobase/string_access.rb
90
- - lib/hellobase/time_creation.rb
154
+ - lib/hellobase/core_ext.rb
155
+ - lib/hellobase/core_ext/array_access.rb
156
+ - lib/hellobase/core_ext/date_creation.rb
157
+ - lib/hellobase/core_ext/datetime_creation.rb
158
+ - lib/hellobase/core_ext/divide_by_zero.rb
159
+ - lib/hellobase/core_ext/duration_arithmetic.rb
160
+ - lib/hellobase/core_ext/string_access.rb
161
+ - lib/hellobase/core_ext/time_creation.rb
162
+ - lib/hellobase/formtastic.rb
163
+ - lib/hellobase/formtastic/content_input.rb
164
+ - lib/hellobase/formtastic/datepicker_with_time_input.rb
165
+ - lib/hellobase/formtastic/inline_checkbox_input.rb
166
+ - lib/hellobase/formtastic/time_of_day_input.rb
167
+ - lib/hellobase/time_zones.rb
91
168
  - lib/hellobase/version.rb
92
- homepage:
169
+ homepage:
93
170
  licenses: []
94
171
  metadata: {}
95
- post_install_message:
172
+ post_install_message:
96
173
  rdoc_options: []
97
174
  require_paths:
98
175
  - lib
@@ -107,9 +184,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
107
184
  - !ruby/object:Gem::Version
108
185
  version: '0'
109
186
  requirements: []
110
- rubyforge_project:
111
- rubygems_version: 2.7.10
112
- signing_key:
187
+ rubygems_version: 3.1.4
188
+ signing_key:
113
189
  specification_version: 4
114
190
  summary: Ruby runtime environment for Hellobase
115
191
  test_files: []