hotwire_native_rails 0.4.0 → 0.4.2
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 +5 -3
- data/lib/generators/hotwire_native/hotwire_native_generator.rb +2 -2
- data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/button_controller.js +27 -1
- data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/form_controller.js +3 -1
- data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/menu_controller.js +1 -0
- data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/nav_controller.js +6 -0
- data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/overflow_menu_controller.js +11 -0
- data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/review_prompt_controller.js +1 -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: 496232d28d21557ed5ae8052afcdb90c4881962b4bb9a14aa53998526efd039a
|
4
|
+
data.tar.gz: ebb6f14bbecb603d8ad2f1b38762e9540d46760784cdb9b4a6714e24c06135e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a411b0354a1e6b49c04ef147f88af0fdcfd8ce64c78b48aabc258db830e7440fb1e73e4f6b47112a4e76890a9b0c12c09360a23fa838f5bf5554e93a3020d30
|
7
|
+
data.tar.gz: 63e076f7932d86f32db010e4c7f237c0cef83438acd4f6d9571c5cd028f52a44673bbc3970abb1d990418ab578480108cfb2bffe1b676792f5a3c7e39c07c9e9
|
data/README.md
CHANGED
@@ -24,7 +24,7 @@ Recommended to use with [my fork of iOS Hotwire Native starter app](https://gith
|
|
24
24
|
- `viewport_meta_tag` - forbid zooming on mobile/native
|
25
25
|
- use `data: { turbo_action: replace_if_native }` to submit authentication forms & forms in modals
|
26
26
|
- `:mobile` request variant. `index.html+mobile.erb`
|
27
|
-
- override link_to to not open internal links in in-app browser on native app
|
27
|
+
- override `link_to` to not open internal links in in-app browser on native app
|
28
28
|
- conditionally override page `<title>` for native apps
|
29
29
|
|
30
30
|
#### CSS
|
@@ -33,11 +33,13 @@ Recommended to use with [my fork of iOS Hotwire Native starter app](https://gith
|
|
33
33
|
#### Bridge Components
|
34
34
|
- install Hotwire Native Bridge (works with Importmaps and Node)
|
35
35
|
- add default bridge components (`Form`, `Menu`, `Button`)
|
36
|
-
- add `Nav` (UIMenu)
|
36
|
+
- add `Nav` (UIMenu) component
|
37
|
+
- add `Review Prompt` component
|
37
38
|
- `bridge_form_with` - easily apply Bridge `Form` component
|
38
39
|
|
39
40
|
#### Path Configuration
|
40
41
|
- `path_configuration_controller` for `ios` and `android`
|
42
|
+
- Tabs controller - re-route native tabs
|
41
43
|
|
42
44
|
## Development
|
43
45
|
|
@@ -54,7 +56,7 @@ Make a release to rubygems:
|
|
54
56
|
# 2. zip the gem
|
55
57
|
gem build hotwire_native_rails.gemspec
|
56
58
|
# 3. push the zip to rubygems
|
57
|
-
gem push hotwire_native_rails-0.
|
59
|
+
gem push hotwire_native_rails-0.4.0.gem
|
58
60
|
```
|
59
61
|
|
60
62
|
- [Github source](https://github.com/yshmarov/hotwire_native_rails)
|
@@ -100,8 +100,8 @@ class HotwireNativeGenerator < Rails::Generators::Base
|
|
100
100
|
append_to_file "app/assets/stylesheets/application.css" do
|
101
101
|
<<-CSS
|
102
102
|
|
103
|
-
body.hotwire-native .hotwire-native
|
104
|
-
display: none;
|
103
|
+
body.hotwire-native .d-hotwire-native-none {
|
104
|
+
display: none !important;
|
105
105
|
}
|
106
106
|
CSS
|
107
107
|
end
|
data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/button_controller.js
CHANGED
@@ -3,6 +3,27 @@ import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
|
|
3
3
|
// https://native.hotwired.dev/ios/bridge-components
|
4
4
|
// Docs:
|
5
5
|
// https://blog.corsego.com/hotwire-native-bridge-button
|
6
|
+
|
7
|
+
// Example:
|
8
|
+
// Text button:
|
9
|
+
// <a href="/posts" data-controller="bridge--button" data-bridge-title="Posts">
|
10
|
+
// Posts
|
11
|
+
// </a>
|
12
|
+
//
|
13
|
+
// Icon button:
|
14
|
+
// <a href="/posts" data-controller="bridge--button" data-bridge-title="Posts" data-bridge-ios-image="play.circle">
|
15
|
+
// Posts
|
16
|
+
// </a>
|
17
|
+
//
|
18
|
+
// Icon button on the left (right by default):
|
19
|
+
// <a href="/posts" data-controller="bridge--button" data-bridge-title="Posts" data-bridge-ios-image="play.circle" data-bridge-side="left">
|
20
|
+
// Posts
|
21
|
+
// </a>
|
22
|
+
//
|
23
|
+
// Text with a click event:
|
24
|
+
// <div data-controller="bridge--button" data-bridge-title="Search" data-bridge-ios-image="magnifyingglass.circle" class="hidden" data-action="click->dialog#open">
|
25
|
+
// Search
|
26
|
+
// </div>
|
6
27
|
export default class extends BridgeComponent {
|
7
28
|
static component = "button"
|
8
29
|
|
@@ -13,8 +34,13 @@ export default class extends BridgeComponent {
|
|
13
34
|
const title = element.bridgeAttribute("title")
|
14
35
|
const image = element.bridgeAttribute("ios-image")
|
15
36
|
const side = element.bridgeAttribute("side") || "right"
|
16
|
-
this.send("connect", {title, image, side}, () => {
|
37
|
+
this.send("connect", { title, image, side }, () => {
|
17
38
|
this.element.click()
|
18
39
|
})
|
19
40
|
}
|
41
|
+
|
42
|
+
disconnect() {
|
43
|
+
super.disconnect()
|
44
|
+
this.send("disconnect")
|
45
|
+
}
|
20
46
|
}
|
data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/form_controller.js
CHANGED
@@ -4,9 +4,11 @@ import { BridgeElement } from "@hotwired/hotwire-native-bridge"
|
|
4
4
|
// https://github.com/hotwired/hotwire-native-demo/blob/main/public/javascript/controllers/bridge/form_controller.js
|
5
5
|
// Docs:
|
6
6
|
// https://blog.corsego.com/hotwire-native-form-component
|
7
|
+
|
8
|
+
// Replace form_with with bridge_form_with
|
7
9
|
export default class extends BridgeComponent {
|
8
10
|
static component = "form"
|
9
|
-
static targets = [
|
11
|
+
static targets = ["submit"]
|
10
12
|
|
11
13
|
connect() {
|
12
14
|
super.connect()
|
data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/menu_controller.js
CHANGED
@@ -2,6 +2,7 @@ import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
|
|
2
2
|
import { BridgeElement } from "@hotwired/hotwire-native-bridge"
|
3
3
|
// aka Action Sheet
|
4
4
|
// open a menu by clicking an HTML element
|
5
|
+
// Question - can I have multiple menus on the same page?
|
5
6
|
|
6
7
|
// Source:
|
7
8
|
// https://github.com/hotwired/hotwire-native-demo/blob/main/public/javascript/controllers/bridge/menu_controller.js
|
data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/nav_controller.js
CHANGED
@@ -3,6 +3,12 @@ import { BridgeComponent, BridgeElement } from "@hotwired/hotwire-native-bridge"
|
|
3
3
|
|
4
4
|
// Docs:
|
5
5
|
// https://blog.corsego.com/hotwire-native-ui-menu-dropdown
|
6
|
+
|
7
|
+
// Example:
|
8
|
+
// <%= tag.div data: { controller: 'bridge--nav', bridge_side: 'left', bridge_image: 'person.circle' } do %>
|
9
|
+
// <%= link_to "Users", users_path, data: { bridge__nav_target: 'item', bridge_image: 'person.circle' } %>
|
10
|
+
// <%= link_to "Tasks", tasks_path, data: { bridge__nav_target: 'item', bridge_image: 'checklist' } %>
|
11
|
+
// <% end %>
|
6
12
|
export default class extends BridgeComponent {
|
7
13
|
static component = "nav"
|
8
14
|
static targets = ["item"]
|
@@ -7,6 +7,17 @@ import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
|
|
7
7
|
// Docs:
|
8
8
|
// https://blog.corsego.com/hotwire-native-bridge-menu-component
|
9
9
|
|
10
|
+
// Example:
|
11
|
+
// <div data-controller="bridge--menu" class="hotwire-native:hidden">
|
12
|
+
// <button
|
13
|
+
// data-controller="bridge--overflow-menu"
|
14
|
+
// data-action="click->bridge--menu#show click->menu#show">
|
15
|
+
// Open Menu
|
16
|
+
// </button>
|
17
|
+
// <p data-bridge--menu-target="title">Select an option</p>
|
18
|
+
// <%= link_to "Edit", edit_task_path(@task), data: {"bridge--menu-target": "item"} %>
|
19
|
+
// <%= button_to "Destroy", @task, method: :delete, data: {"bridge--menu-target": "item", turbo_confirm: "Are you sure?" } %>
|
20
|
+
// </div>
|
10
21
|
export default class extends BridgeComponent {
|
11
22
|
static component = "overflow-menu"
|
12
23
|
|
@@ -2,6 +2,7 @@ import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
|
|
2
2
|
// Docs:
|
3
3
|
// https://blog.corsego.com/hotwire-native-leave-a-review-bridge-component
|
4
4
|
|
5
|
+
// Example:
|
5
6
|
// <meta data-controller="bridge--review-prompt" />
|
6
7
|
export default class extends BridgeComponent {
|
7
8
|
static component = "review-prompt"
|
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.4.
|
4
|
+
version: 0.4.2
|
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-18 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|