hotwire_native_rails 0.3.1 → 0.3.3

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: db9feb69df016d6781d12df5d095422b9984afe20e0128add4ec5db096bc9232
4
- data.tar.gz: ae82da4ac986d04d552d47207b7c93dc75fea6cde2e38944f8b9926997d89b3e
3
+ metadata.gz: 84432c1688ed077b1d915d0db3a714598008c8811ed3d1147b2e4e38f668a1ea
4
+ data.tar.gz: 8ca34b0820ce17f62fd23bc7dd17df3035b8a644831f1f3dcdaf6fb8dff3bcfa
5
5
  SHA512:
6
- metadata.gz: 18302cf1e8af968d95a23685db7d7020375060bc7a22b628b146d3596791fcdd18409f818d04456594b030d2ab40bc98f90b4d6c1d08fd3108448929155c16f8
7
- data.tar.gz: 1385c781224c90744b7eeea4b7fa5690524768cd5fc21db85085ac1725b42ae0f901bc433a80082771ba88e1ca04f1a1c8918dbbcf692e87f82d015cc48a9bfb
6
+ metadata.gz: f403700954894cda1a7ecb3f4e3011d103523fb0959734e0bd12c499bcc02c877bf60d9ac8f610551f56bef255328bfe50632820609711c8f58688dd53547a4e
7
+ data.tar.gz: 23765b7fd268eb314bbbab24c23088380225b3be6f6c6ce41aae76e8e071fadb6a8b8b1904114ead1e37cca090e0e458d020706d7373a6a14c306d77ed705b37
data/README.md CHANGED
@@ -18,15 +18,17 @@ rails g hotwire_native
18
18
 
19
19
  ## Usage
20
20
 
21
+ Recommended to use with [my fork of iOS Hotwire Native starter app](https://github.com/yshmarov/hotwire-native-ios/tree/superails-extensions-2/Demo).
22
+
21
23
  #### Helpers
22
24
  - `viewport_meta_tag` - forbid zooming on mobile/native
23
25
  - use `data: { turbo_action: replace_if_native }` to submit authentication forms & forms in modals
24
26
  - `:mobile` request variant. `index.html+mobile.erb`
25
27
  - override link_to to not open internal links in in-app browser on native app
26
- - conditionally override page title for native apps
28
+ - conditionally override page `<title>` for native apps
27
29
 
28
30
  #### CSS
29
- - `turbo-native:` css variant (works with CSS and Tailwind)
31
+ - `hotwire-native:` css variant (works with CSS and Tailwind)
30
32
 
31
33
  #### Bridge Components
32
34
  - install Hotwire Native Bridge (works with Importmaps and Node)
@@ -39,6 +41,12 @@ rails g hotwire_native
39
41
 
40
42
  ## Development
41
43
 
44
+ Run the local version of the gem:
45
+
46
+ ```ruby
47
+ gem 'hotwire_native_rails', path: '/Users/yaroslavshmarov/Documents/GitHub.nosync/hotwire_native_rails'
48
+ ```
49
+
42
50
  Make a release to rubygems:
43
51
 
44
52
  ```sh
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
 
19
19
  # Specify which files should be added to the gem when it is released.
20
20
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
22
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
22
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) || f.end_with?('.gem') }
23
23
  end
24
24
  end
@@ -9,11 +9,13 @@ class HotwireNativeGenerator < Rails::Generators::Base
9
9
  # helpers
10
10
  copy_file "helpers/hotwire_native_helper.rb", "app/helpers/hotwire_native_helper.rb"
11
11
  copy_file "test_unit/hotwire_native_helper_test.rb", "test/helpers/hotwire_native_helper_test.rb"
12
+ copy_file "test_unit/hotwire_native_controller_test.rb", "test/controllers/hotwire_native_controller_test.rb"
12
13
 
13
14
  # routes
14
15
  copy_file "routes/hotwire_native.rb", "config/routes/hotwire_native.rb"
15
- copy_file "controllers/hotwire_native/v1/android/path_configuration_controller.rb", "app/controllers/hotwire_native/v1/android/path_configuration_controller.rb"
16
- copy_file "controllers/hotwire_native/v1/ios/path_configuration_controller.rb", "app/controllers/hotwire_native/v1/ios/path_configuration_controller.rb"
16
+ copy_file "controllers/hotwire_native/v1/android/path_configurations_controller.rb", "app/controllers/hotwire_native/v1/android/path_configurations_controller.rb"
17
+ copy_file "controllers/hotwire_native/v1/ios/path_configurations_controller.rb", "app/controllers/hotwire_native/v1/ios/path_configurations_controller.rb"
18
+ copy_file "test_unit/path_configurations_controller_test.rb", "test/controllers/path_configurations_controller_test.rb"
17
19
 
18
20
  # :native request variant
19
21
  copy_file "controllers/concerns/device_format.rb", "app/controllers/concerns/device_format.rb"
@@ -21,7 +23,7 @@ class HotwireNativeGenerator < Rails::Generators::Base
21
23
 
22
24
  def add_detect_device_to_application_controller
23
25
  inject_into_file "app/controllers/application_controller.rb", after: "class ApplicationController < ActionController::Base\n" do
24
- " include DetectDevice\n"
26
+ " include DeviceFormat\n"
25
27
  end
26
28
  end
27
29
 
@@ -48,7 +50,7 @@ class HotwireNativeGenerator < Rails::Generators::Base
48
50
  def add_css_variants
49
51
  return add_tailwind_css_variants if tailwind?
50
52
 
51
- add_turbo_native_css
53
+ add_hotwire_native_css
52
54
  end
53
55
 
54
56
  def add_platform_identifier
@@ -73,8 +75,8 @@ class HotwireNativeGenerator < Rails::Generators::Base
73
75
  Rails.root.join("config/tailwind.config.js").exist?
74
76
  end
75
77
 
76
- # class="turbo-native:hidden"
77
- # class="non-turbo-native:hidden"
78
+ # class="hotwire-native:hidden"
79
+ # class="non-hotwire-native:hidden"
78
80
  def add_tailwind_css_variants
79
81
  prepend_to_file "config/tailwind.config.js", "const plugin = require('tailwindcss/plugin')\n"
80
82
 
@@ -82,21 +84,21 @@ class HotwireNativeGenerator < Rails::Generators::Base
82
84
  <<-JS
83
85
 
84
86
  plugin(function({ addVariant }) {
85
- addVariant("turbo-native", "html[data-turbo-native] &"),
86
- addVariant("non-turbo-native", "html:not([data-turbo-native]) &")
87
+ addVariant("hotwire-native", "html[data-hotwire-native] &"),
88
+ addVariant("non-hotwire-native", "html:not([data-hotwire-native]) &")
87
89
  }),
88
90
  JS
89
91
  end
90
92
  end
91
93
 
92
- # class="turbo-native:hidden"
93
- def add_turbo_native_css
94
- gsub_file "app/views/layouts/application.html.erb", "<body>", "<body class=\"<%= \"turbo-native\" if turbo_native_app? %>\">"
94
+ # class="hotwire-native:hidden"
95
+ def add_hotwire_native_css
96
+ gsub_file "app/views/layouts/application.html.erb", "<body>", "<body class=\"<%= \"hotwire-native\" if turbo_native_app? %>\">"
95
97
 
96
98
  append_to_file "app/assets/stylesheets/application.css" do
97
99
  <<-CSS
98
100
 
99
- body.turbo-native .turbo-native:hidden {
101
+ body.hotwire-native .hotwire-native:hidden {
100
102
  display: none;
101
103
  }
102
104
  CSS
@@ -8,6 +8,6 @@ module DeviceFormat
8
8
  private
9
9
 
10
10
  def set_variant
11
- return request.variant = :mobile if turbo_native_app? || browser.device.mobile?
11
+ request.variant = :mobile if turbo_native_app? || browser.device.mobile?
12
12
  end
13
13
  end
@@ -6,11 +6,11 @@ module HotwireNativeHelper
6
6
  # after
7
7
  # <title><%= page_title %></title>
8
8
  # usage
9
- # <% content_for :turbo_native_title, "Sign in" %>
9
+ # <% content_for :hotwire_native_title, "Sign in" %>
10
10
  # <% content_for :title, "Sign in | My App" %>
11
11
  def page_title
12
12
  if turbo_native_app?
13
- content_for(:turbo_native_title) || content_for(:title) || Rails.application.class.module_parent.name
13
+ content_for(:hotwire_native_title) || content_for(:title) || Rails.application.class.module_parent.name
14
14
  else
15
15
  content_for(:title) || Rails.application.class.module_parent.name
16
16
  end
@@ -25,7 +25,7 @@ module HotwireNativeHelper
25
25
 
26
26
  # set on <html> tag
27
27
  def platform_identifier
28
- 'data-turbo-native' if turbo_native_app?
28
+ 'data-hotwire-native' if turbo_native_app?
29
29
  end
30
30
 
31
31
  # link_to 'Next', next_path, data: { turbo_action: replace_if_native }
@@ -37,37 +37,37 @@ module HotwireNativeHelper
37
37
  end
38
38
 
39
39
  # override link_to to not open internal links in in-app browser on native app
40
- def link_to(name = nil, options = nil, html_options = {}, &block)
40
+ def link_to(name = nil, options = nil, html_options = {}, &)
41
41
  html_options[:target] = '' if turbo_native_app? && internal_url?(url_for(options))
42
- super(name, options, html_options, &block)
42
+ super
43
43
  end
44
44
 
45
45
  # https://github.com/joemasilotti/daily-log/blob/main/rails/app/helpers/form_helper.rb
46
46
  class BridgeFormBuilder < ActionView::Helpers::FormBuilder
47
47
  def submit(value = nil, options = {})
48
48
  options[:data] ||= {}
49
- options["data-bridge--form-target"] = "submit"
50
- options[:class] = [options[:class], "turbo-native:hidden"].compact
51
- super(value, options)
49
+ options['data-bridge--form-target'] = 'submit'
50
+ options[:class] = [options[:class], 'hotwire-native:hidden'].compact
51
+ super
52
52
  end
53
53
  end
54
54
 
55
- def bridge_form_with(*, **options, &block)
55
+ def bridge_form_with(*, **options, &)
56
56
  options[:html] ||= {}
57
57
  options[:html][:data] ||= {}
58
58
  options[:html][:data] = options[:html][:data].merge(bridge_form_data)
59
59
 
60
60
  options[:builder] = BridgeFormBuilder
61
61
 
62
- form_with(*, **options, &block)
62
+ form_with(*, **options, &)
63
63
  end
64
64
 
65
65
  private
66
66
 
67
67
  def bridge_form_data
68
68
  {
69
- controller: "bridge--form",
70
- action: "turbo:submit-start->bridge--form#submitStart turbo:submit-end->bridge--form#submitEnd"
69
+ controller: 'bridge--form',
70
+ action: 'turbo:submit-start->bridge--form#submitStart turbo:submit-end->bridge--form#submitEnd'
71
71
  }
72
72
  end
73
73
 
@@ -0,0 +1,15 @@
1
+ require "test_helper"
2
+
3
+ class HotwireNativeTest < ActionDispatch::IntegrationTest
4
+ test 'zoom is disabled for native' do
5
+ get root_path, headers: { HTTP_USER_AGENT: 'Hotwire Native' }
6
+ assert_response :success
7
+ assert_match(/user-scalable=0/, response.body)
8
+ end
9
+
10
+ test 'zoom is enabled for web' do
11
+ get root_path
12
+ assert_response :success
13
+ assert_no_match(/user-scalable=0/, response.body)
14
+ end
15
+ end
@@ -1,54 +1,53 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class HotwireNativeHelperTest < ActionView::TestCase
4
- # add more tests
5
4
  setup do
6
5
  def root_url
7
- "http://test.host/"
8
- end
6
+ 'http://test.host/'
7
+ end
9
8
  end
10
9
 
11
- test "link_to removes target for internal links in turbo native app" do
10
+ test 'link_to removes target for internal links in turbo native app' do
12
11
  def turbo_native_app?
13
12
  true
14
13
  end
15
14
 
16
- result = link_to("Home", "/foo/bar", target: "_blank")
17
- assert_no_match /target="_blank"/, result
15
+ result = link_to('Home', '/foo/bar', target: '_blank', rel: 'noopener')
16
+ assert_no_match(/target="_blank"/, result)
18
17
  end
19
18
 
20
- test "link_to keeps target for external links in turbo native app" do
19
+ test 'link_to keeps target for external links in turbo native app' do
21
20
  def turbo_native_app?
22
21
  true
23
22
  end
24
-
25
- result = link_to("External", "http://external.com", target: "_blank")
26
- assert_match /target="_blank"/, result
23
+
24
+ result = link_to('External', 'http://external.com', target: '_blank', rel: 'noopener')
25
+ assert_match(/target="_blank"/, result)
27
26
  end
28
27
 
29
- test "link_to keeps target for internal links when not in turbo native app" do
28
+ test 'link_to keeps target for internal links when not in turbo native app' do
30
29
  def turbo_native_app?
31
30
  false
32
31
  end
33
-
34
- result = link_to("Home", root_url, target: "_blank")
35
- assert_match /target="_blank"/, result
32
+
33
+ result = link_to('Home', root_url, target: '_blank', rel: 'noopener')
34
+ assert_match(/target="_blank"/, result)
36
35
  end
37
36
 
38
- test "link_to keeps target for external links when not in turbo native app" do
37
+ test 'link_to keeps target for external links when not in turbo native app' do
39
38
  def turbo_native_app?
40
39
  false
41
40
  end
42
41
 
43
- result = link_to("External", "http://external.com", target: "_blank")
44
- assert_match /target="_blank"/, result
42
+ result = link_to('External', 'http://external.com', target: '_blank', rel: 'noopener')
43
+ assert_match(/target="_blank"/, result)
45
44
  end
46
45
 
47
- test "internal_url? returns true for internal links" do
48
- assert internal_url?("http://test.host/some_path")
46
+ test 'internal_url? returns true for internal links' do
47
+ assert internal_url?('http://test.host/some_path')
49
48
  end
50
49
 
51
- test "internal_url? returns false for external links" do
52
- assert_not internal_url?("http://external.com")
50
+ test 'internal_url? returns false for external links' do
51
+ assert_not internal_url?('http://external.com')
53
52
  end
54
- end
53
+ end
@@ -0,0 +1,13 @@
1
+ require "test_helper"
2
+
3
+ class PathConfigurationsControllerTest < ActionDispatch::IntegrationTest
4
+ test 'android' do
5
+ get '/hotwire_native/v1/android/path_configuration'
6
+ assert_response :success
7
+ end
8
+
9
+ test 'ios' do
10
+ get '/hotwire_native/v1/ios/path_configuration'
11
+ assert_response :success
12
+ end
13
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HotwireNativeRails
4
- VERSION = "0.3.1"
4
+ VERSION = "0.3.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hotwire_native_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaro Shm
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-30 00:00:00.000000000 Z
11
+ date: 2024-12-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -29,8 +29,8 @@ files:
29
29
  - hotwire_native_rails.gemspec
30
30
  - lib/generators/hotwire_native/hotwire_native_generator.rb
31
31
  - lib/generators/hotwire_native/templates/controllers/concerns/device_format.rb
32
- - lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/android/path_configuration_controller.rb
33
- - lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/ios/path_configuration_controller.rb
32
+ - lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/android/path_configurations_controller.rb
33
+ - lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/ios/path_configurations_controller.rb
34
34
  - lib/generators/hotwire_native/templates/helpers/hotwire_native_helper.rb
35
35
  - lib/generators/hotwire_native/templates/javascript/controllers/bridge/button_controller.js
36
36
  - lib/generators/hotwire_native/templates/javascript/controllers/bridge/form_controller.js
@@ -39,7 +39,9 @@ files:
39
39
  - lib/generators/hotwire_native/templates/javascript/controllers/bridge/overflow_menu_controller.js
40
40
  - lib/generators/hotwire_native/templates/javascript/controllers/bridge/review_prompt_controller.js
41
41
  - lib/generators/hotwire_native/templates/routes/hotwire_native.rb
42
+ - lib/generators/hotwire_native/templates/test_unit/hotwire_native_controller_test.rb
42
43
  - lib/generators/hotwire_native/templates/test_unit/hotwire_native_helper_test.rb
44
+ - lib/generators/hotwire_native/templates/test_unit/path_configurations_controller_test.rb
43
45
  - lib/hotwire_native_rails.rb
44
46
  - lib/hotwire_native_rails/version.rb
45
47
  homepage: https://github.com/yshmarov/hotwire_native_rails