Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@smarthr/use-bulk-check
Advanced tools
React hooks for managing the values in the checkbox list
@smarthr/use-bulk-check
リストに対しての個別チェック・ページ内一括チェック・ページを跨いだ一括全件チェックの状態を管理するための React のカスタムフックです。
バックエンドではチェックした要素の ID 一覧(sting[])かページを跨いだ一括全件チェックのフラグ(boolean)を受け取ることを想定します。
import React from 'react'
import { useBulkCheck } from '@smarthr/use-bulk-check'
export const Component = () => {
const users = [
{
id: '1',
name: 'user-1',
},
{
id: '2',
name: 'user-2',
},
{
id: '3',
name: 'user-3',
},
]
const {
pageItems,
hasCheckedItemInPage,
isPageChecked,
isAllChecked,
toggleChecked,
togglePageChecked,
toggleAllChecked,
resetChecked,
checkedIds,
} = useBulkCheck({ pageItems: users, defaultCheckedIds: ['1', '3'], defaultIsAllChecked: false })
return (
<div>
<ul>
{pageItems.map(({ item, checked }) => (
<li key={item.id}>
<input type="checkbox" checked={checked || isPageChecked || isAllChecked} onChange={() => toggleChecked(item.id)} />
{item.name}
</li>
))}
</ul>
<div>
<p>
<input type="checkbox" checked={isPageChecked} onChange={togglePageChecked} />
ページ内全件チェック
</p>
<p>
<input type="checkbox" checked={isAllChecked} onChange={toggleAllChecked} />
ページを跨いで全件チェック
</p>
<button onClick={resetChecked}>全てのチェック状態を解除</button>
</div>
<div>
<p>
{hasCheckedItemInPage
? '表示しているページ内にチェックされたユーザーが一人以上います'
: '表示しているページ内のユーザーにはチェックが一つもついていません'}
</p>
<p>
{isPageChecked
? '表示しているページ内の全てのユーザーにチェックがついています'
: '表示しているページ内にチェックがついていないユーザーが一人以上います'}
</p>
<p>{isAllChecked && 'ページを跨いで全てのユーザーにチェックがついています'}</p>
</div>
<div>
<p>ページ関係なくチェックされている ID の一覧です。</p>
<ul>
{checkedIds.map((id) => (
<li key={id}>{id}</li>
))}
</ul>
</div>
</div>
)
}
This project is licensed under the terms of the MIT license.
FAQs
React hooks for managing the values in the checkbox list
The npm package @smarthr/use-bulk-check receives a total of 3,898 weekly downloads. As such, @smarthr/use-bulk-check popularity was classified as popular.
We found that @smarthr/use-bulk-check demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.