hotwire_native_rails 0.3.2 → 0.3.4
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 +11 -3
- data/lib/generators/hotwire_native/hotwire_native_generator.rb +11 -10
- data/lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/ios/path_configurations_controller.rb +8 -0
- data/lib/generators/hotwire_native/templates/helpers/hotwire_native_helper.rb +4 -4
- data/lib/generators/hotwire_native/templates/routes/hotwire_native.rb +4 -0
- data/lib/hotwire_native_rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a96d149563790f2885469e0917ffc47b2f499aef6f9c14a2b22872f3433a52bc
|
4
|
+
data.tar.gz: b1f9d15ceb4ba725a31557017a1650359af17daeae30db2f0d2cca86f193a7b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c24c35ed1a3fd220e14423164a1cba2697b01755341630bc35ea88c4080d8c9eff5c9167f29c67c68fcb42ebceec99b3fce471d66c4eed4a35b073e117473f8
|
7
|
+
data.tar.gz: 5aec65172e6cff6b2b10594a3d7e20431132d68760bb07afdef6deb58ad31e9eeb27cf015678bc67078b29c47960366a61d16d8cf3aa7c6e776c8d7fa1a1d0f9
|
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
|
@@ -46,7 +54,7 @@ Make a release to rubygems:
|
|
46
54
|
# 2. zip the gem
|
47
55
|
gem build hotwire_native_rails.gemspec
|
48
56
|
# 3. push the zip to rubygems
|
49
|
-
gem push hotwire_native_rails-0.
|
57
|
+
gem push hotwire_native_rails-0.3.3.gem
|
50
58
|
```
|
51
59
|
|
52
60
|
- [Github source](https://github.com/yshmarov/hotwire_native_rails)
|
@@ -15,6 +15,7 @@ class HotwireNativeGenerator < Rails::Generators::Base
|
|
15
15
|
copy_file "routes/hotwire_native.rb", "config/routes/hotwire_native.rb"
|
16
16
|
copy_file "controllers/hotwire_native/v1/android/path_configurations_controller.rb", "app/controllers/hotwire_native/v1/android/path_configurations_controller.rb"
|
17
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 "controllers/hotwire_native/tabs_controller.rb", "app/controllers/hotwire_native/tabs_controller.rb"
|
18
19
|
copy_file "test_unit/path_configurations_controller_test.rb", "test/controllers/path_configurations_controller_test.rb"
|
19
20
|
|
20
21
|
# :native request variant
|
@@ -23,7 +24,7 @@ class HotwireNativeGenerator < Rails::Generators::Base
|
|
23
24
|
|
24
25
|
def add_detect_device_to_application_controller
|
25
26
|
inject_into_file "app/controllers/application_controller.rb", after: "class ApplicationController < ActionController::Base\n" do
|
26
|
-
" include
|
27
|
+
" include DeviceFormat\n"
|
27
28
|
end
|
28
29
|
end
|
29
30
|
|
@@ -50,7 +51,7 @@ class HotwireNativeGenerator < Rails::Generators::Base
|
|
50
51
|
def add_css_variants
|
51
52
|
return add_tailwind_css_variants if tailwind?
|
52
53
|
|
53
|
-
|
54
|
+
add_hotwire_native_css
|
54
55
|
end
|
55
56
|
|
56
57
|
def add_platform_identifier
|
@@ -75,8 +76,8 @@ class HotwireNativeGenerator < Rails::Generators::Base
|
|
75
76
|
Rails.root.join("config/tailwind.config.js").exist?
|
76
77
|
end
|
77
78
|
|
78
|
-
# class="
|
79
|
-
# class="non-
|
79
|
+
# class="hotwire-native:hidden"
|
80
|
+
# class="non-hotwire-native:hidden"
|
80
81
|
def add_tailwind_css_variants
|
81
82
|
prepend_to_file "config/tailwind.config.js", "const plugin = require('tailwindcss/plugin')\n"
|
82
83
|
|
@@ -84,21 +85,21 @@ class HotwireNativeGenerator < Rails::Generators::Base
|
|
84
85
|
<<-JS
|
85
86
|
|
86
87
|
plugin(function({ addVariant }) {
|
87
|
-
addVariant("
|
88
|
-
addVariant("non-
|
88
|
+
addVariant("hotwire-native", "html[data-hotwire-native] &"),
|
89
|
+
addVariant("non-hotwire-native", "html:not([data-hotwire-native]) &")
|
89
90
|
}),
|
90
91
|
JS
|
91
92
|
end
|
92
93
|
end
|
93
94
|
|
94
|
-
# class="
|
95
|
-
def
|
96
|
-
gsub_file "app/views/layouts/application.html.erb", "<body>", "<body class=\"<%= \"
|
95
|
+
# class="hotwire-native:hidden"
|
96
|
+
def add_hotwire_native_css
|
97
|
+
gsub_file "app/views/layouts/application.html.erb", "<body>", "<body class=\"<%= \"hotwire-native\" if turbo_native_app? %>\">"
|
97
98
|
|
98
99
|
append_to_file "app/assets/stylesheets/application.css" do
|
99
100
|
<<-CSS
|
100
101
|
|
101
|
-
body.
|
102
|
+
body.hotwire-native .hotwire-native:hidden {
|
102
103
|
display: none;
|
103
104
|
}
|
104
105
|
CSS
|
@@ -18,6 +18,14 @@ class HotwireNative::V1::Ios::PathConfigurationsController < ActionController::B
|
|
18
18
|
"pull_to_refresh_enabled": false
|
19
19
|
}
|
20
20
|
},
|
21
|
+
{
|
22
|
+
"patterns": [
|
23
|
+
"^/users/edit$"
|
24
|
+
],
|
25
|
+
"properties": {
|
26
|
+
"context": "default"
|
27
|
+
}
|
28
|
+
},
|
21
29
|
{
|
22
30
|
"patterns": [
|
23
31
|
"/numbers$"
|
@@ -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) || @page_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 }
|
@@ -47,7 +47,7 @@ module HotwireNativeHelper
|
|
47
47
|
def submit(value = nil, options = {})
|
48
48
|
options[:data] ||= {}
|
49
49
|
options['data-bridge--form-target'] = 'submit'
|
50
|
-
options[:class] = [options[:class], '
|
50
|
+
options[:class] = [options[:class], 'hotwire-native:hidden'].compact
|
51
51
|
super
|
52
52
|
end
|
53
53
|
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.4
|
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-12-
|
11
|
+
date: 2024-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|