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.
@createnl/pagination
Advanced tools
Pagination with SEO described in this article (Crazy Idea #2): https://www.portent.com/blog/seo/pagination-tunnels-experiment-click-depth.htm
npm install --save @createnl/pagination
yarn add @createnl/pagination
import React from "react";
import Pagination from '@createnl/pagination';
const Container = (props) => {
const [page, setPage] = useState(0);
const onPaginationChange = (page) => {
setPage(page);
}
return (
<Pagination
centerNumbers
id="pagination"
onChange={onPaginationChange}
amountOfPages={30}
currentPage={15}
/>
);
};
<Pagination
id="pagination"
onChange={console.log}
amountOfPages={30}
currentPage={15}
marginInitial={3}
marginCenter={2}
/>
<Pagination
id="pagination"
baseHref="/items?page="
amountOfPages={30}
currentPage={15}
/>
<Pagination
centerNumbers
id="pagination"
baseHref="/items?page="
amountOfPages={30}
currentPage={15}
/>
<Pagination
buttonPrevText="Vorige"
buttonNextText="Volgende"
id="pagination"
onChange={console.log}
amountOfPages={30}
currentPage={15}
/>
import React from "react";
import Pagination from '@createnl/pagination';
<Pagination
centerNumbers
buttonPrevText="Vorige"
buttonNextText="Volgende"
id="pagination"
onChange={onPaginationChange}
baseHref="/stages?page="
amountOfPages={30}
currentPage={15}
marginInitial={3}
marginCenter={2}
/>
.pagination {
.pagination__ellipsis {
width: 1rem;
@include for-size(tablet-portrait-up) {
width: 1.5rem;
}
}
.pagination-input__label {
min-width: 1rem;
padding: 0.5rem;
font-size: 1rem;
font-weight: 600;
text-decoration: none;
color: var(--c-muted);
@include for-size(tablet-portrait-up) {
margin: 0 0.25rem;
min-width: 1.5rem;
font-size: 1rem;
}
&--active {
background-color: var(--c-secondary);
box-shadow: $shadow-md rgba(var(--c-shadow-rgb), 0.11);
color: var(--c-text);
}
&:not(.pagination-input__label--active) {
&:hover, &:focus {
color: var(--c-text);
background-color: var(--c-grey-light);
}
}
}
.pagination-direction-button {
width: var(--pagination-block-size);
text-decoration: none;
&--disabled {
background: none;
}
&__text {
display: none;
}
}
@include for-size(phone-only) {
.pagination-input--side-number {
display: none;
& + .pagination__ellipsis {
display: none;
}
}
.pagination__controls {
flex-wrap: wrap;
justify-content: space-between;
}
.pagination__list {
justify-content: center;
margin-bottom: 1.5rem;
width: 100%;
order: 0;
}
.pagination-direction-button {
border-radius: 2px;
justify-content: center;
width: 50%;
padding: 1rem;
line-height: 2;
font-family: $f-secondary;
font-size: 0.75rem;
letter-spacing: 0.07em;
text-transform: uppercase;
color: var(--c-black);
opacity: 1;
svg {
height: 0.75rem;
min-width: 0.75rem;
fill: var(--c-black);
}
&__text {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-weight: 600;
}
&--prev, &--next {
width: calc(50% - #{0.5rem});
}
&--prev {
order: 1;
background-color: var(--c-grey);
}
&--next {
order: 2;
background-color: var(--c-secondary);
}
}
&.pagination--start {
.pagination-direction-button--prev {
display: none;
}
.pagination-direction-button--next {
width: 100%;
}
}
&.pagination--end {
.pagination-direction-button--next {
display: none;
}
.pagination-direction-button--prev {
width: 100%;
}
}
}
}
FAQs
Pagination react component
The npm package @createnl/pagination receives a total of 13 weekly downloads. As such, @createnl/pagination popularity was classified as not popular.
We found that @createnl/pagination demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.