react-foundation-paginate 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 17332cf8b3ad15e271d3dd152fe798c15bf50d36
4
+ data.tar.gz: 57a8aca7cf1d592aaa3acb0458d9a1e30381977a
5
+ SHA512:
6
+ metadata.gz: 65c1b3d79d9cb946eb84298d79d7e465e7a9b9f261623813bf7de0c4f6116536548a25d07d8d30650b1ac5c978b29ef4359d074721bf12ec1656d7386e6a5010
7
+ data.tar.gz: cf8d17400f1a39c39df916deeae628a4a9d5c3d65915f1a1c5190c0779d6e49f38238e2b7388f55aa70816dd6dd86b8a488bd2aa96dc42e70be70de4ebf19693
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in react-foundation-paginate.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2017 Romel Campos
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # React::Foundation::Paginate
2
+
3
+ A pagination library for react+foundation
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'react-foundation-paginate'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install react-foundation-paginate
20
+
21
+ ## Usage
22
+
23
+ <Paginate page=1 perPage=10 total=100 onPageChange={this.handlePageChange} />
24
+
25
+ ## Prerequisites
26
+
27
+ * react-rails gem
28
+ * foundation ui 6
29
+
30
+ ## Contributing
31
+
32
+ 1. Fork it ( https://github.com/[my-github-username]/react-foundation-paginate/fork )
33
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
34
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
35
+ 4. Push to the branch (`git push origin my-new-feature`)
36
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,9 @@
1
+ require "react/foundation/paginate/version"
2
+
3
+ module React
4
+ module Foundation
5
+ module Paginate
6
+ class Engine < ::Rails::Engine; end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ module React
2
+ module Foundation
3
+ module Paginate
4
+ VERSION = "0.0.1"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,22 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'react/foundation/paginate/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "react-foundation-paginate"
8
+ spec.version = React::Foundation::Paginate::VERSION
9
+ spec.authors = ["Romel Campos"]
10
+ spec.email = ["rcoolah@gmail.com"]
11
+ spec.summary = "A pagination library for react+foundation"
12
+ spec.homepage = ""
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_development_dependency "bundler", "~> 1.7"
21
+ spec.add_development_dependency "rake", "~> 10.0"
22
+ end
@@ -0,0 +1,61 @@
1
+ const Paginate = React.createClass({
2
+ handlePageClick(e) {
3
+ e.preventDefault();
4
+ const targetText = e.target.text;
5
+ if (targetText == 'Previous') {
6
+ this.props.onPageChange(this.props.page - 1);
7
+ } else if (targetText == 'Next') {
8
+ this.props.onPageChange(this.props.page + 1);
9
+ } else {
10
+ this.props.onPageChange(parseInt(targetText));
11
+ }
12
+ },
13
+
14
+ render() {
15
+ const perPage = this.props.perPage || 10;
16
+ const page = this.props.page;
17
+ const total = this.props.total;
18
+
19
+ let numPages = parseInt(total/perPage);
20
+ if (total % perPage != 0) {
21
+ numPages++;
22
+ }
23
+
24
+ let pagerEl = [];
25
+ for (var i = 1; i <= numPages; i++) {
26
+ pagerEl.push(
27
+ page == i ? (
28
+ <li key={i} className='current'>{i}</li>
29
+ ) : (
30
+ <li key={i}><a href='#' aria-label={`Page ${i}`} onClick={this.handlePageClick}>{i}</a></li>
31
+ )
32
+ );
33
+ }
34
+
35
+ const prevEl = page == 1 ? (
36
+ <li className='pagination-previous disabled'>Previous</li>
37
+ ) : (
38
+ <li className='pagination-previous'>
39
+ <a href='#' aria-label='Previous page' onClick={this.handlePageClick}>Previous</a>
40
+ </li>
41
+ )
42
+
43
+ const nextEl = page == numPages ? (
44
+ <li className='pagination-next disabled'>Next</li>
45
+ ) : (
46
+ <li className='pagination-next'>
47
+ <a href='#' aria-label='Next page' onClick={this.handlePageClick}>Next</a>
48
+ </li>
49
+ )
50
+
51
+ return (
52
+ <div>
53
+ <ul className='pagination text-right' role='navigation' aria-label='Pagination'>
54
+ {prevEl}
55
+ {pagerEl}
56
+ {nextEl}
57
+ </ul>
58
+ </div>
59
+ )
60
+ }
61
+ });
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: react-foundation-paginate
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Romel Campos
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-02-07 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: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
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
+ - rcoolah@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
+ - lib/react/foundation/paginate.rb
54
+ - lib/react/foundation/paginate/version.rb
55
+ - react-foundation-paginate.gemspec
56
+ - vendor/assets/javascripts/react-foundation-paginate.js.jsx
57
+ homepage: ''
58
+ licenses:
59
+ - MIT
60
+ metadata: {}
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ requirements: []
76
+ rubyforge_project:
77
+ rubygems_version: 2.2.2
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: A pagination library for react+foundation
81
+ test_files: []