Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.