rollout-ui 0.6.0 → 0.7.1

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: a4e0b2f55a41b0c8311c046f8fa8568cfc7001c7d5e59ad880686244918d33d2
4
- data.tar.gz: 07b7cf87b83e538d0ba502d8b57aa79a9f0327f32da9054a1ee728895610ba90
3
+ metadata.gz: 6f52e6f2464930c297ee97dfa2e73771ef20dc1c345186582c4f211ddc16a9bc
4
+ data.tar.gz: 72b761a78d4607396ee71860ff9d5f36fd57563fcba018e34ed374fc308dd3d0
5
5
  SHA512:
6
- metadata.gz: e1e157706c74a2d14c824e665f6689559d61cb8aef37652ba2554de414df0260c588b015917206b4cd7071aab6718b15bfe7b533cffd93f9c83b98a6f7350afe
7
- data.tar.gz: 9ba68eca138d5090c9b3696cd036ddba211965f33c1ab28d5585696b79a641e84bef3f0a450cff3386f62157f9169f240358ff2cff790ee660d1434f57c65543
6
+ metadata.gz: c9a1eec0c0b71f92458be1f494a99098aa1a7d8bce482c47f45f90de8566dcc2643e97bf2f8bad90c209456dd459e8d462c4edae804e31fc6283bc2f14836f19
7
+ data.tar.gz: c9e5d5ddaea0f7cb5302d67f7f4b3e709ee63b916a5a2aa7f2b7075af8a3034f2bfca0d00b7cb634082bb5319f03a727d688ab84109d431922edfb9122dee520
data/.gitignore CHANGED
@@ -6,6 +6,7 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ /vendor/
9
10
 
10
11
  # rspec failure tracking
11
12
  .rspec_status
data/README.md CHANGED
@@ -104,7 +104,7 @@ And visit [http://localhost:9292/](http://localhost:9292/).
104
104
  Alternatively you can also configure which Redis with:
105
105
 
106
106
  ```sh
107
- REDIS_HOST=localhost REDIS_PORT=6379 REDIS_DB=10 be rerun rackup
107
+ REDIS_HOST=localhost REDIS_PORT=6379 REDIS_DB=10 bundle exec rerun rackup
108
108
  ```
109
109
 
110
110
  ## License
@@ -9,14 +9,21 @@ module Rollout::UI
9
9
  instance
10
10
  actor
11
11
  actor_url
12
+ timestamp_format
12
13
  ].freeze
13
14
 
15
+ DEFAULT_VALUES = {
16
+ timestamp_format: '%Y-%m-%d %H:%M %Z'
17
+ }.freeze
18
+
14
19
  KEYS.each do |key|
15
20
  define_method(key) do |&block|
16
21
  @blocks ||= {}
17
22
 
18
23
  if block
19
24
  @blocks[key] = block
25
+ elsif DEFAULT_VALUES.key?(key)
26
+ DEFAULT_VALUES[key]
20
27
  else
21
28
  raise ArgumentError, "#{key}: block is required"
22
29
  end
@@ -29,7 +36,10 @@ module Rollout::UI
29
36
  @blocks ||= {}
30
37
  block = @blocks[key]
31
38
 
32
- return if block.nil?
39
+ if block.nil?
40
+ return DEFAULT_VALUES[key] if DEFAULT_VALUES.key?(key)
41
+ return nil
42
+ end
33
43
 
34
44
  if scope
35
45
  scope.instance_eval(&block)
@@ -39,7 +49,7 @@ module Rollout::UI
39
49
  end
40
50
 
41
51
  def defined?(key)
42
- !@blocks.nil? && @blocks.key?(key)
52
+ (@blocks&.key?(key)) || DEFAULT_VALUES.key?(key)
43
53
  end
44
54
  end
45
55
  end
@@ -1,5 +1,5 @@
1
1
  class Rollout
2
2
  module UI
3
- VERSION = "0.6.0"
3
+ VERSION = "0.7.1"
4
4
  end
5
5
  end
@@ -42,7 +42,7 @@ h2.font-semibold.text-xl.text-gray-500.pt-12.flex.items-center
42
42
  = feature.users.count
43
43
  - if @rollout.respond_to?(:logging)
44
44
  td.py-2.whitespace-no-wrap
45
- = time_ago(@rollout.logging.updated_at(feature_name))
45
+ span title=@rollout.logging.updated_at(feature_name).strftime(Rollout::UI.config.timestamp_format) = time_ago(@rollout.logging.updated_at(feature_name))
46
46
  td.flex.items-center.py-2.justify-end.whitespace-no-wrap.pl-3
47
47
  form action=activate_percentage_feature_path(feature_name, 100) method='POST'
48
48
  button.p-3.bg-gray-100.ml-1.rounded-sm.font-bold.leading-none.transition-colors.duration-150(class='hover:bg-gray-200' type='submit' onclick="return confirm('Are you sure you want activate #{sanitized_name(feature_name)} to 100%?')")
@@ -11,18 +11,18 @@
11
11
  - if show_header
12
12
  thead.font-semibold.text-gray-600.border-b.border-gray-200
13
13
  - if show_feature
14
- th.pb-2.pr-3 Feature
15
- th.pb-2.pr-3 Action
16
- th.pl-2
14
+ th.pb-2.pr-3.whitespace-nowrap Feature
15
+ th.pb-2.pr-3.w-full Action
16
+ th.pl-2.whitespace-nowrap style="min-width: 160px;"
17
17
 
18
18
  tbody.text-gray-600.border-t.border-gray-200
19
19
  - events.each do |event|
20
20
  tr.border-b.border-gray-200
21
21
  - if show_feature
22
- td.py-2.whitespace-no-wrap
22
+ td.py-2.pr-3.whitespace-nowrap
23
23
  a.text-blue-600(href=feature_path(event.feature) class='hover:text-blue-700 hover:underline')
24
24
  = event.feature
25
- td.py-2.pr-3.whitespace-no-wrap
25
+ td.py-2.pr-3.break-words.w-full
26
26
  - if event.name == "update"
27
27
  - if event.context && event.context[:actor]
28
28
  - if config.defined?(:actor_url)
@@ -32,15 +32,18 @@
32
32
  ' #{event.context[:actor]}
33
33
  - else
34
34
  ' unidentified user
35
- - changes = event.data.fetch(:before).keys.map do |key|
35
+ - changes = event.data.fetch(:before).keys.reject { |key| key.to_s == 'data.updated_at' }.map do |key|
36
36
  - before = format_change_value(event.data.fetch(:before).fetch(key))
37
37
  - after = format_change_value(event.data.fetch(:after).fetch(key))
38
38
  - "#{format_change_key(key)} from #{before} to #{after}"
39
39
 
40
40
  ' changed
41
- = changes.join(', ')
41
+ - unless changes.empty?
42
+ = changes.join(', ')
43
+ - else
44
+ ' nothing!
42
45
  - else
43
46
  = event.data
44
47
 
45
- td.flex.items-center.py-2.justify-end.whitespace-no-wrap.pl-3
46
- = time_ago(event.created_at)
48
+ td.py-2.text-right.whitespace-nowrap.pl-3 style="min-width: 160px;"
49
+ span title=event.created_at.strftime(Rollout::UI.config.timestamp_format) = time_ago(event.created_at)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rollout-ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - FetLife
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-01 00:00:00.000000000 Z
11
+ date: 2025-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rollout
@@ -231,7 +231,7 @@ homepage: https://github.com/fetlife/rollout-ui
231
231
  licenses:
232
232
  - MIT
233
233
  metadata: {}
234
- post_install_message:
234
+ post_install_message:
235
235
  rdoc_options: []
236
236
  require_paths:
237
237
  - lib
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
247
247
  version: '0'
248
248
  requirements: []
249
249
  rubygems_version: 3.5.3
250
- signing_key:
250
+ signing_key:
251
251
  specification_version: 4
252
252
  summary: ''
253
253
  test_files: []