Gathering detailed insights and metrics for @egjs/react-infinitegrid
Gathering detailed insights and metrics for @egjs/react-infinitegrid
Gathering detailed insights and metrics for @egjs/react-infinitegrid
Gathering detailed insights and metrics for @egjs/react-infinitegrid
A module used to arrange card elements including content infinitely on a grid layout.
npm install @egjs/react-infinitegrid
Typescript
Module System
Node Version
NPM Version
4.12.0 Release (2024-07-02)
Updated on Jul 02, 2024
4.11.1 Release (2024-02-07)
Updated on Feb 07, 2024
4.10.1 Release (2023-08-04)
Updated on Aug 04, 2023
4.10.0 Release (2023-05-26)
Updated on May 26, 2023
4.9.0 Release (2023-03-17)
Updated on Mar 17, 2023
4.8.1 Release (2023-01-27)
Updated on Jan 27, 2023
TypeScript (43.19%)
MDX (40.78%)
HTML (6.43%)
JavaScript (3.86%)
Vue (2.46%)
CSS (1.46%)
Svelte (1.28%)
Sass (0.53%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
2,297 Stars
829 Commits
96 Forks
27 Watchers
5 Branches
17 Contributors
Updated on Jul 08, 2025
Latest Version
4.12.0
Package Id
@egjs/react-infinitegrid@4.12.0
Unpacked Size
95.90 kB
Size
14.39 kB
File Count
28
NPM Version
8.3.1
Node Version
16.14.0
Published on
Jul 02, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
29
A React component that can arrange items infinitely according to the type of grids
Demo / Documentation / Other components
1npm install --save @egjs/react-infinitegrid
1import * as React from "react"; 2import { MasonryInfiniteGrid } from "@egjs/react-infinitegrid"; 3 4function getItems(nextGroupKey: number, count: number) { 5 const nextItems = []; 6 const nextKey = nextGroupKey * count; 7 8 for (let i = 0; i < count; ++i) { 9 nextItems.push({ groupKey: nextGroupKey, key: nextKey + i }); 10 } 11 return nextItems; 12} 13 14const Item = ({ num }: any) => <div className="item">...</div>; 15 16export default function App() { 17 const [items, setItems] = React.useState(() => getItems(0, 10)); 18 19 return <MasonryInfiniteGrid 20 className="container" 21 gap={5} 22 onRequestAppend={(e) => { 23 const nextGroupKey = (+e.groupKey! || 0) + 1; 24 25 setItems([ 26 ...items, 27 ...getItems(nextGroupKey, 10), 28 ]); 29 }} 30 > 31 {items.map((item) => <Item data-grid-groupkey={item.groupKey} key={item.key} num={item.key} />)} 32 </MasonryInfiniteGrid>; 33}
See CONTRIBUTING.md.
Please file an Issue with label "React".
egjs-infinitegrid is released under the MIT license.
Copyright (c) 2015-present NAVER Corp.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 14/30 approved changesets -- score normalized to 4
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
163 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More