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 +4 -4
- data/README.md +10 -2
- data/hotwire_native_rails.gemspec +2 -2
- data/lib/generators/hotwire_native/hotwire_native_generator.rb +14 -12
- data/lib/generators/hotwire_native/templates/controllers/concerns/device_format.rb +1 -1
- data/lib/generators/hotwire_native/templates/helpers/hotwire_native_helper.rb +12 -12
- data/lib/generators/hotwire_native/templates/test_unit/hotwire_native_controller_test.rb +15 -0
- data/lib/generators/hotwire_native/templates/test_unit/hotwire_native_helper_test.rb +21 -22
- data/lib/generators/hotwire_native/templates/test_unit/path_configurations_controller_test.rb +13 -0
- data/lib/hotwire_native_rails/version.rb +1 -1
- metadata +6 -4
- /data/lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/android/{path_configuration_controller.rb → path_configurations_controller.rb} +0 -0
- /data/lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/ios/{path_configuration_controller.rb → path_configurations_controller.rb} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 84432c1688ed077b1d915d0db3a714598008c8811ed3d1147b2e4e38f668a1ea
|
4
|
+
data.tar.gz: 8ca34b0820ce17f62fd23bc7dd17df3035b8a644831f1f3dcdaf6fb8dff3bcfa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
- `
|
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
|
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/
|
16
|
-
copy_file "controllers/hotwire_native/v1/ios/
|
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
|
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
|
-
|
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="
|
77
|
-
# class="non-
|
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("
|
86
|
-
addVariant("non-
|
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="
|
93
|
-
def
|
94
|
-
gsub_file "app/views/layouts/application.html.erb", "<body>", "<body class=\"<%= \"
|
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.
|
101
|
+
body.hotwire-native .hotwire-native:hidden {
|
100
102
|
display: none;
|
101
103
|
}
|
102
104
|
CSS
|
@@ -6,11 +6,11 @@ module HotwireNativeHelper
|
|
6
6
|
# after
|
7
7
|
# <title><%= page_title %></title>
|
8
8
|
# usage
|
9
|
-
# <% content_for :
|
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(:
|
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-
|
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 = {}, &
|
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
|
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[
|
50
|
-
options[:class] = [options[:class],
|
51
|
-
super
|
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, &
|
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, &
|
62
|
+
form_with(*, **options, &)
|
63
63
|
end
|
64
64
|
|
65
65
|
private
|
66
66
|
|
67
67
|
def bridge_form_data
|
68
68
|
{
|
69
|
-
controller:
|
70
|
-
action:
|
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
|
-
|
8
|
-
end
|
6
|
+
'http://test.host/'
|
7
|
+
end
|
9
8
|
end
|
10
9
|
|
11
|
-
test
|
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(
|
17
|
-
assert_no_match
|
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
|
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(
|
26
|
-
assert_match
|
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
|
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(
|
35
|
-
assert_match
|
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
|
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(
|
44
|
-
assert_match
|
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
|
48
|
-
assert internal_url?(
|
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
|
52
|
-
assert_not internal_url?(
|
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
|
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.
|
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
|
+
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/
|
33
|
-
- lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/ios/
|
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
|
File without changes
|