Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
react-aria-carousel
Advanced tools
The carousel for the modern age.
React Aria Carousel is a collection of React hooks and components that provide the behavior and accessibility implementation for building a carousel. Unlike many other carousels, this implementation uses the latest browser and DOM APIs for scrolling and snapping.
Checkout documentation and examples at https://react-aria-carousel.vercel.app.
npm install react-aria-carousel
react-aria-carousel
comes with both ready-to-go unstyled React components and hooks if you need more control over how the component is rendered.
A simple set-up using the components:
import {
Carousel,
CarouselButton,
CarouselButton,
CarouselItem,
CarouselScroller,
CarouselTab,
CarouselTabs,
} from "react-aria-carousel";
<Carousel>
<CarouselAutoplayControl />
<CarouselButton dir="prev" />
<CarouselButton dir="next" />
<CarouselScroller>
<CarouselItem />
</CarouselScroller>
<CarouselTabs>
{(page) => (
<CarouselTab index={page.index} />
)}
</CarouselTabs>
</Carousel>
And a simple set-up using the hooks:
import {
useCarousel,
useCarouselItem,
useCarouselTab,
} from "react-aria-carousel";
export function Carousel() {
const [assignScrollerRef, carousel] = useCarousel({
spaceBetweenItems: "16px",
itemsPerPage: 2,
});
const {
rootProps,
prevButtonProps,
nextButtonProps,
scrollerProps,
tabProps,
pages,
autoplayControlProps,
} = carousel;
return (
<div {...rootProps}>
<button {...autoplayControlProps}>Toggle autoplay</button>
<div>
<button {...prevButtonProps}>Previous</button>
<button {...nextButtonProps}>Next</button>
</div>
<div {...scrollerProps} ref={assignScrollerRef}>
<CarouselItem index={0} state={carousel} />
</div>
<div {...tabProps}>
{pages.map((_, i) => (
<CarouselTab key={i} index={i} state={carousel} />
))}
</div>
</div>
);
}
function CarouselItem({ index, state }) {
const { itemProps } = useCarouselItem({ index }, state);
return <div {...itemProps} />;
}
function CarouselTab({ index, state }) {
const { tabProps } = useCarouselTab({ index }, state);
return <div {...tabProps} />;
}
FAQs
> The carousel for the modern age.
The npm package react-aria-carousel receives a total of 120 weekly downloads. As such, react-aria-carousel popularity was classified as not popular.
We found that react-aria-carousel 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
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.