Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge hook to master #54

Merged
merged 27 commits into from
Sep 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b318333
Merge pull request #12 from ChoTotOSS/master
davidnguyen11 Feb 21, 2019
9541201
temporary commit
davidnguyen11 Feb 21, 2019
4fe1ea4
temporary update test
davidnguyen11 Feb 21, 2019
b8e20e6
update test
davidnguyen11 Feb 21, 2019
ff196da
updated tests
davidnguyen11 Feb 21, 2019
3da84a6
changed the function to const
davidnguyen11 Feb 22, 2019
1c54ed8
Merge pull request #34 from davidnguyen179/enhancement/apply_hook
davidnguyen11 Feb 22, 2019
faca7e6
added hook support for travis
davidnguyen11 Feb 22, 2019
486a165
Merge pull request #35 from davidnguyen179/enhancement/apply_hook
davidnguyen11 Feb 22, 2019
0065821
update new declaration & flow-type files
davidnguyen11 Feb 22, 2019
95c476e
add proptypes & update test
davidnguyen11 Feb 22, 2019
d5458b3
Merge pull request #39 from ChoTotOSS/add_bash_script
davidnguyen11 Feb 22, 2019
4ce949d
Merge pull request #38 from ChoTotOSS/modify_declaration_file_flow_type
davidnguyen11 Feb 22, 2019
e6e11cb
1.3.0-hook.1
davidnguyen11 Feb 22, 2019
f0e754a
Update README.md
davidnguyen11 Feb 22, 2019
ef44324
Update README.md
davidnguyen11 Feb 22, 2019
8301da6
added server-side & client-side examples
davidnguyen11 Mar 6, 2019
ef65ea5
Merge branch 'hook' of https://github.com/ChoTotOSS/react-paginating …
davidnguyen11 Mar 6, 2019
b6b7611
Update README.md
davidnguyen11 Mar 6, 2019
ff3e061
added READMEs for examples
davidnguyen11 Mar 6, 2019
41f9047
Merge branch 'hook' of https://github.com/ChoTotOSS/react-paginating …
davidnguyen11 Mar 6, 2019
79726e2
Add paginating-algorithm
May 23, 2019
d9a7094
Merge pull request #46 from ChoTotOSS/integrate-paging-algorithm
davidnguyen11 May 23, 2019
fa52210
Upgrade paging-algorithm@1.0.1
davidnguyen11 Jun 18, 2019
56203aa
Improve typings
nartc Jun 30, 2019
c02a40b
Merge pull request #51 from nartc/type-defs
davidnguyen11 Jul 1, 2019
1ef66df
Update babel-eslint & react-scripts
davidnguyen11 Sep 5, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@ yarn-debug.log*
yarn-error.log*

package-lock.json
yarn.lock
yarn.lock

src/index.js
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ script:
- yarn run coverage
after_script: "cat ./coverage/lcov.info | $(npm bin)/codecov"
branches:
only: master
only:
- master
- hook
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ yarn add react-paginating
## Usage

You can check out the basic demo here:
[https://codesandbox.io/s/z2rr7z23ol](https://codesandbox.io/s/z2rr7z23ol)
- Javascript: [https://codesandbox.io/s/z2rr7z23ol](https://codesandbox.io/s/z2rr7z23ol)
- Typescript: [https://codesandbox.io/s/9252p34v8r](https://codesandbox.io/s/9252p34v8r)
- Server-Side Rendering: [https://codesandbox.io/s/vq40kw1yn5](https://codesandbox.io/s/vq40kw1yn5)

```js
import React from 'react';
Expand Down Expand Up @@ -178,8 +180,8 @@ render(<App />, document.getElementById('root'));

## Examples

* [with simple basic data](https://github.com/ChoTotOSS/react-paginating/tree/master/examples/withBasic)
* [with redux & query param from url](https://github.com/ChoTotOSS/react-paginating/tree/master/examples/withNextJSRedux)
* [withClientSideRendering](https://github.com/ChoTotOSS/react-paginating/tree/hook/examples/withClientSideRendering)
* [withServerSideRendering](https://github.com/ChoTotOSS/react-paginating/tree/hook/examples/withServerSideRendering)

## Input Props

Expand Down
21 changes: 0 additions & 21 deletions examples/withBasic/package.json

This file was deleted.

Loading