Skip to content

Commit f747df3

Browse files
Brandon SharBrandon Shar
Brandon Shar
authored and
Brandon Shar
committed
initial commit
0 parents  commit f747df3

21 files changed

+557
-0
lines changed

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/.bundle/
2+
/.yardoc
3+
/_yardoc/
4+
/coverage/
5+
/doc/
6+
/pkg/
7+
/spec/reports/
8+
/tmp/
9+
10+
# rspec failure tracking
11+
.rspec_status

.rspec

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
--format documentation
2+
--color
3+
--require spec_helper

.travis.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
sudo: false
3+
language: ruby
4+
cache: bundler
5+
rvm:
6+
- 2.6.3
7+
before_install: gem install bundler -v 2.0.2

CODE_OF_CONDUCT.md

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, gender identity and expression, level of experience,
9+
nationality, personal appearance, race, religion, or sexual identity and
10+
orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at TODO: Write your email address. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at [http://contributor-covenant.org/version/1/4][version]
72+
73+
[homepage]: http://contributor-covenant.org
74+
[version]: http://contributor-covenant.org/version/1/4/

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "https://rubygems.org"
2+
3+
# Specify your gem's dependencies in inertia-rails.gemspec
4+
gemspec

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2019 TODO: Bellawatt
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+148
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
# Inertia.js Rails Adapter
2+
3+
To use [Inertia.js](https://github.com/inertiajs/inertia) you need both a server-side adapter (like this one) as well as a client-side adapter, such as [inertia-react](https://github.com/inertiajs/inertia-react). Be sure to also follow the installation instructions for the client-side adapter you choose. This documentation will only cover the Rails adapter setup.
4+
5+
6+
## Installation
7+
8+
Add this line to your application's Gemfile:
9+
10+
```ruby
11+
gem 'inertia-rails'
12+
```
13+
14+
And then execute:
15+
16+
$ bundle
17+
18+
Or install it yourself as:
19+
20+
$ gem install inertia-rails
21+
22+
## Usage
23+
24+
## Layouts
25+
Inertia Rails automatically uses your default application layout. If you'd like to change that, you can do so via the Inertia config
26+
27+
~~~ruby
28+
Inertia.configure do |config|
29+
config.layout = 'inertia' # uses layouts/inertia.html.erb
30+
end
31+
~~~
32+
33+
## Making Inertia responses
34+
35+
To make an Inertia response, use the inertia renderer. This renderer takes the component name, and allows you to pass props and view_data as an options hash.
36+
37+
~~~ruby
38+
class EventsController < ApplicationController
39+
def index
40+
render inertia: 'Events',
41+
props: {
42+
events: Event.all
43+
}
44+
end
45+
end
46+
~~~
47+
48+
## Following redirects
49+
50+
When making a non-GET Inertia request, via `<inertia-link>` or manually, be sure to still respond with a proper Inertia response. For example, if you're creating a new user, have your "store" endpoint return a redirect back to a standard GET endpoint, such as your user index page. Inertia will automatically follow this redirect and update the page accordingly. Here's a simplified example.
51+
52+
~~~ruby
53+
class UsersController < ApplicationController
54+
def index
55+
render inertia: 'Users/Index', props: {users: User.all}
56+
end
57+
58+
def store
59+
User.create params.require(:user).permit(:name, :email)
60+
61+
redirect_to users_path
62+
end
63+
end
64+
~~~
65+
66+
Note, when redirecting after a `PUT`, `PATCH` or `DELETE` request you must use a `303` response code, otherwise the subsequent request will not be treated as a `GET` request. A `303` redirect is the same as a `302` except that the follow-up request is explicitly changed to a `GET` request.
67+
68+
## Sharing data
69+
70+
To share data with all your components, use the controller method `inertia_share`. This can be done both synchronously and lazily.
71+
72+
~~~ruby
73+
# Synchronously
74+
inertia_share app_name: env['app.name']
75+
76+
# Lazily
77+
inertia_share do
78+
if logged_in?
79+
{
80+
'auth.user' => {id: logged_in_user.id}
81+
}
82+
end
83+
end
84+
85+
# OR
86+
inertia_share user_count: lambda { User.count }
87+
~~~
88+
89+
## Accessing data in root template
90+
91+
There are situations where you may want to access your prop data in your root Blade template. For example, you may want to add a meta description tag, Twitter card meta tags, or Facebook Open Graph meta tags. These props are available via the `page` variable.
92+
93+
~~~erb
94+
<meta name="twitter:title" content="<%= page['props']['event'].title %>">
95+
~~~
96+
97+
Sometimes you may even want to provide data that will not be sent to your JavaScript component. You can do this using the `view_data` option.
98+
99+
~~~ruby
100+
render inertia: 'Event', props: {event: event}, view_data: {meta: event.meta}
101+
~~~
102+
103+
You can then access this variable like a regular erb variable.
104+
105+
~~~erb
106+
<meta name="description" content="<%= meta %>">
107+
~~~
108+
109+
## Asset versioning
110+
111+
One common challenge with single-page apps is refreshing site assets when they've been changed. Inertia makes this easy by optionally tracking the current version of your site assets. In the event that an asset changes, Inertia will automatically make a hard page visit instead of a normal ajax visit on the next request.
112+
113+
To enable automatic asset refreshing, first set up the Inertia config with your current asset version. We recommend putting this in an initializer.
114+
115+
~~~ruby
116+
Inertia.configure do |config|
117+
config.version = '1.0'
118+
end
119+
~~~
120+
121+
You can also use lazy evaluation.
122+
123+
~~~ruby
124+
Inertia.configure do |config|
125+
config.version = lambda { Version.last }
126+
end
127+
~~~
128+
129+
130+
## Development
131+
132+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
133+
134+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
135+
136+
## Contributing
137+
138+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/inertia-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
139+
140+
## License
141+
142+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
143+
144+
## Code of Conduct
145+
146+
Everyone interacting in the Inertia::Rails project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/inertia-rails/blob/master/CODE_OF_CONDUCT.md).
147+
148+

Rakefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
require "bundler/gem_tasks"
2+
require "rspec/core/rake_task"
3+
4+
RSpec::Core::RakeTask.new(:spec)
5+
6+
task :default => :spec

app/views/inertia.html.erb

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<div id="app" data-page="<%= page.to_json %>"></div>

bin/console

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env ruby
2+
3+
require "bundler/setup"
4+
require "inertia/rails"
5+
6+
# You can add fixtures and/or initialization code here to make experimenting
7+
# with your gem easier. You can also use a different console, if you like.
8+
9+
# (If you use this, don't forget to add pry to your Gemfile!)
10+
# require "pry"
11+
# Pry.start
12+
13+
require "irb"
14+
IRB.start(__FILE__)

bin/setup

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
set -euo pipefail
3+
IFS=$'\n\t'
4+
set -vx
5+
6+
bundle install
7+
8+
# Do any other automated setup that you need to do here

inertia-rails.gemspec

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
lib = File.expand_path("lib", __dir__)
2+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3+
require "inertia/rails/version"
4+
5+
Gem::Specification.new do |spec|
6+
spec.name = "inertia"
7+
spec.version = Inertia::Rails::VERSION
8+
spec.authors = ["Brian Knoles", "Brandon Shar", "Eugene Granovsky"]
9+
10+
11+
spec.summary = %q{Inertia adapter for Rails}
12+
spec.homepage = "https://github.com/bellawatt/inertia-rails"
13+
spec.license = "MIT"
14+
15+
spec.metadata["allowed_push_host"] = "http://mygemserver.com"
16+
17+
spec.metadata["homepage_uri"] = spec.homepage
18+
spec.metadata["source_code_uri"] = spec.homepage
19+
spec.metadata["changelog_uri"] = "#{spec.homepage}/CHANGELOG.md"
20+
21+
# Specify which files should be added to the gem when it is released.
22+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25+
end
26+
spec.bindir = "exe"
27+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28+
spec.require_paths = ["lib"]
29+
30+
spec.add_development_dependency "bundler", "~> 2.0"
31+
spec.add_development_dependency "rake", "~> 10.0"
32+
spec.add_development_dependency "rspec", "~> 3.0"
33+
end

lib/inertia/controller.rb

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module Inertia
2+
class Controller
3+
extend ActiveSupport::Concern
4+
5+
module class_methods
6+
def inertia_share(**args, &block)
7+
Inertia.instance.share(args) if args
8+
Inertia.instance.share_block(block) if block
9+
end
10+
end
11+
end
12+
end

0 commit comments

Comments
 (0)