Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@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
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.