backpedal 0.1.1
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 +7 -0
- data/.gitignore +9 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +81 -0
- data/Rakefile +2 -0
- data/backpedal.gemspec +36 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/backpedal.rb +9 -0
- data/lib/backpedal/actions.rb +33 -0
- data/lib/backpedal/back_link_helper.rb +17 -0
- data/lib/backpedal/builder.rb +22 -0
- data/lib/backpedal/version.rb +3 -0
- metadata +87 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e995e2ea1e00bd63532203a699a0e8d74c3d98cd9a123f96b181a75cd613f051
|
4
|
+
data.tar.gz: 75b3ad15fa35b45a4c72251f0e90e783e55f0f90e0f48130bf6a0cfe55cee16c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 4af6ffa5b4045b40227ebd4bf450dab6dfdf4daeca1ef587d6bdce1d50e83b21152aebd4d333a209af7fa78ccc319515a1464571341f31890061adab25f7b931
|
7
|
+
data.tar.gz: be39ba9506937c9c7e294986aedfcf47e9dd000d2a034e4bbf425e88258d4badf88cef5c852268935fb4084f854eaa3878f16c91e0465540f1b2499dc8821849
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 greyoxide
|
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.
|
data/README.md
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
# Backpedal
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/backpedal`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
Give your users the ability to backpedal across any number of routes in your app.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem 'backpedal'
|
15
|
+
```
|
16
|
+
|
17
|
+
And then execute:
|
18
|
+
|
19
|
+
$ bundle
|
20
|
+
|
21
|
+
Or install it yourself as:
|
22
|
+
|
23
|
+
$ gem install backpedal
|
24
|
+
|
25
|
+
## Usage
|
26
|
+
|
27
|
+
Usage is simple:
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
class ApplicationController < ActionController::Base
|
31
|
+
before_action :capture_path, if: :current_user
|
32
|
+
end
|
33
|
+
```
|
34
|
+
|
35
|
+
This will append the referring path to the navigation stack used by Backpedal to create a back link.
|
36
|
+
|
37
|
+
```erb
|
38
|
+
<%# app/users/show.html.erb %>
|
39
|
+
<%= back_link %>
|
40
|
+
<h1>Users#show</h1>
|
41
|
+
<p> Here is where your users would appear be if you had some </p>
|
42
|
+
```
|
43
|
+
|
44
|
+
Have a specific path in mind? Try this:
|
45
|
+
|
46
|
+
```erb
|
47
|
+
<%# app/users/show.html.erb %>
|
48
|
+
<%= back_link(users_path) %>
|
49
|
+
<h1>Users#show</h1>
|
50
|
+
<p> Here is where your users would appear be if you had some </p>
|
51
|
+
```
|
52
|
+
|
53
|
+
What if you want a specific controller action to wipe out the navigation stack and restart at the current action? Then set a before_action filter to dissolve the navigation stack.
|
54
|
+
|
55
|
+
```ruby
|
56
|
+
class SomeController < ActionController::base
|
57
|
+
before_action :dissolve, only: [:index]
|
58
|
+
end
|
59
|
+
```
|
60
|
+
This will dissolve the navigation stack and set the current controller action as the base or starting point
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
Ok so wait, what if I have some controller actions I don't want appended to backpedal stack? Check this out:
|
65
|
+
|
66
|
+
```ruby
|
67
|
+
#config/initializers/backpedal.rb
|
68
|
+
Backpedal.configure do |config|
|
69
|
+
config.skipped_verbs = ['new', 'edit', 'destroy', 'suspend', 'resend_invitation', 'etc']
|
70
|
+
end
|
71
|
+
```
|
72
|
+
|
73
|
+
If you add the initializer, it will overwrite the default skipped http verbs(new, edit, destroy). So make sure you include those if you want to skip those controller actions.
|
74
|
+
|
75
|
+
## Contributing
|
76
|
+
|
77
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/greyoxide/backpedal.
|
78
|
+
|
79
|
+
## License
|
80
|
+
|
81
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/backpedal.gemspec
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "backpedal/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "backpedal"
|
8
|
+
spec.version = Backpedal::VERSION
|
9
|
+
spec.authors = ["greyoxide"]
|
10
|
+
spec.email = ["greyoxide@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{A Rails gem that gives your users a universal back link across multiple routes.}
|
13
|
+
spec.homepage = "https://github.com/Greyoxide/backpedal"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
17
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
18
|
+
if spec.respond_to?(:metadata)
|
19
|
+
|
20
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
21
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
22
|
+
else
|
23
|
+
raise "RubyGems 2.0 or newer is required to protect against " \
|
24
|
+
"public gem pushes."
|
25
|
+
end
|
26
|
+
|
27
|
+
# Specify which files should be added to the gem when it is released.
|
28
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
29
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
30
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
31
|
+
end
|
32
|
+
spec.require_paths = ["lib"]
|
33
|
+
|
34
|
+
spec.add_development_dependency "bundler", "~> 2.0"
|
35
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
36
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "backpedal"
|
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__)
|
data/bin/setup
ADDED
data/lib/backpedal.rb
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
module Actions
|
2
|
+
|
3
|
+
extend ActiveSupport::Concern
|
4
|
+
|
5
|
+
def capture_path
|
6
|
+
session[:tree] = url_for(root_path) if session[:tree].blank?
|
7
|
+
|
8
|
+
tree = session[:tree].split(",")
|
9
|
+
previous_page = request.referer
|
10
|
+
current_page = request.original_url
|
11
|
+
|
12
|
+
if tree.last == current_page
|
13
|
+
# remove this page from the stack if the user was just here(clicked back link)
|
14
|
+
tree.pop
|
15
|
+
session[:tree] = tree.join(",")
|
16
|
+
elsif request.referer.present? and request.referer != tree.last and Backpedal.configuration.skipped_verbs.exclude? request.referer.split("/").last.split("?")[0]
|
17
|
+
tree << previous_page
|
18
|
+
session[:tree] = tree.join(",")
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def dissolve
|
23
|
+
session[:tree] = request.original_url
|
24
|
+
end
|
25
|
+
|
26
|
+
def clear(path)
|
27
|
+
session[:tree] = url_for(root_path) if session[:tree].blank?
|
28
|
+
tree = session[:tree].split(",")
|
29
|
+
|
30
|
+
tree.delete_if { |x| x = path }
|
31
|
+
session[:tree] = tree.join(",")
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module BackLinkHelper
|
2
|
+
def back_link(path = nil)
|
3
|
+
if path.present?
|
4
|
+
link_to path, class: "back_link" do
|
5
|
+
concat content_tag :i, "", class: "fas fa-chevron-left"
|
6
|
+
concat "Back"
|
7
|
+
end
|
8
|
+
|
9
|
+
elsif session[:tree].present?
|
10
|
+
last = session[:tree].split(",").last
|
11
|
+
link_to last, class: "back_link" do
|
12
|
+
concat content_tag :i, "", class: "fas fa-chevron-left"
|
13
|
+
concat "Back"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module Backpedal
|
2
|
+
class << self
|
3
|
+
attr_accessor :configuration
|
4
|
+
|
5
|
+
def configure
|
6
|
+
self.configuration ||= Configuration.new
|
7
|
+
yield(configuration)
|
8
|
+
end
|
9
|
+
|
10
|
+
def reset
|
11
|
+
self.configuration = Configuration.new
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
class Configuration
|
17
|
+
attr_accessor :skipped_verbs
|
18
|
+
|
19
|
+
def initialize
|
20
|
+
@skipped_verbs = ['new', 'edit', 'destroy']
|
21
|
+
end
|
22
|
+
end
|
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: backpedal
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- greyoxide
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-03-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description:
|
42
|
+
email:
|
43
|
+
- greyoxide@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE.txt
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- backpedal.gemspec
|
54
|
+
- bin/console
|
55
|
+
- bin/setup
|
56
|
+
- lib/backpedal.rb
|
57
|
+
- lib/backpedal/actions.rb
|
58
|
+
- lib/backpedal/back_link_helper.rb
|
59
|
+
- lib/backpedal/builder.rb
|
60
|
+
- lib/backpedal/version.rb
|
61
|
+
homepage: https://github.com/Greyoxide/backpedal
|
62
|
+
licenses:
|
63
|
+
- MIT
|
64
|
+
metadata:
|
65
|
+
homepage_uri: https://github.com/Greyoxide/backpedal
|
66
|
+
source_code_uri: https://github.com/Greyoxide/backpedal
|
67
|
+
post_install_message:
|
68
|
+
rdoc_options: []
|
69
|
+
require_paths:
|
70
|
+
- lib
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
requirements: []
|
82
|
+
rubyforge_project:
|
83
|
+
rubygems_version: 2.7.3
|
84
|
+
signing_key:
|
85
|
+
specification_version: 4
|
86
|
+
summary: A Rails gem that gives your users a universal back link across multiple routes.
|
87
|
+
test_files: []
|