hotwire_native_rails 0.3.2 → 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: b7c5dccf379ea2df338bbcb79be305de69d6bddf6d18b90aa385b3b5cfa02c0a
4
- data.tar.gz: 735bb16d4b1edea360e76be697e2b2205fed6bb3cc600a1d701f62d2bfcf50b9
3
+ metadata.gz: 84432c1688ed077b1d915d0db3a714598008c8811ed3d1147b2e4e38f668a1ea
4
+ data.tar.gz: 8ca34b0820ce17f62fd23bc7dd17df3035b8a644831f1f3dcdaf6fb8dff3bcfa
5
5
  SHA512:
6
- metadata.gz: f85af13e81abf134367debe8dd96ba2159dd291daf517c142c97784515df219cf8f4e8388ac56e9fbbacbbf455a00edd44f5124e08400a3ea45f5261f51bd1f3
7
- data.tar.gz: 4f17e15e2067bdef0aa9db0c9295410f19315ba7159e761d5e323f5e29d32154f2ed788f03bd9186d265495158a44cfce5c7694bd1a7d22903642f4b42e3e0cc
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
@@ -23,7 +23,7 @@ class HotwireNativeGenerator < Rails::Generators::Base
23
23
 
24
24
  def add_detect_device_to_application_controller
25
25
  inject_into_file "app/controllers/application_controller.rb", after: "class ApplicationController < ActionController::Base\n" do
26
- " include DetectDevice\n"
26
+ " include DeviceFormat\n"
27
27
  end
28
28
  end
29
29
 
@@ -50,7 +50,7 @@ class HotwireNativeGenerator < Rails::Generators::Base
50
50
  def add_css_variants
51
51
  return add_tailwind_css_variants if tailwind?
52
52
 
53
- add_turbo_native_css
53
+ add_hotwire_native_css
54
54
  end
55
55
 
56
56
  def add_platform_identifier
@@ -75,8 +75,8 @@ class HotwireNativeGenerator < Rails::Generators::Base
75
75
  Rails.root.join("config/tailwind.config.js").exist?
76
76
  end
77
77
 
78
- # class="turbo-native:hidden"
79
- # class="non-turbo-native:hidden"
78
+ # class="hotwire-native:hidden"
79
+ # class="non-hotwire-native:hidden"
80
80
  def add_tailwind_css_variants
81
81
  prepend_to_file "config/tailwind.config.js", "const plugin = require('tailwindcss/plugin')\n"
82
82
 
@@ -84,21 +84,21 @@ class HotwireNativeGenerator < Rails::Generators::Base
84
84
  <<-JS
85
85
 
86
86
  plugin(function({ addVariant }) {
87
- addVariant("turbo-native", "html[data-turbo-native] &"),
88
- 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]) &")
89
89
  }),
90
90
  JS
91
91
  end
92
92
  end
93
93
 
94
- # class="turbo-native:hidden"
95
- def add_turbo_native_css
96
- 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? %>\">"
97
97
 
98
98
  append_to_file "app/assets/stylesheets/application.css" do
99
99
  <<-CSS
100
100
 
101
- body.turbo-native .turbo-native:hidden {
101
+ body.hotwire-native .hotwire-native:hidden {
102
102
  display: none;
103
103
  }
104
104
  CSS
@@ -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 }
@@ -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], 'turbo-native:hidden'].compact
50
+ options[:class] = [options[:class], 'hotwire-native:hidden'].compact
51
51
  super
52
52
  end
53
53
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HotwireNativeRails
4
- VERSION = "0.3.2"
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.2
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-12-01 00:00:00.000000000 Z
11
+ date: 2024-12-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: