A simple and responsive quizlet-like flashcard component with a few additional options.
Front and back card accepts html strings and JSX elements!
react-quizlet-flashcard | Quizlet's flashcard component |
---|---|
yarn add react-quizlet-flashcard
npm i react-quizlet-flashcard
NOTE: All basic card styles like padding, border radius, font, font size and flex alignment for card content has been removed from V3.0.0 to make it more customizable. You can add your own styles to the card using various style props in both <Flashcard />
and <FlashcardArray />
components or by defining the styles in cards
array as mentioned below.
import { FlashcardArray } from "react-quizlet-flashcard";
function App() {
const cards = [
{
id: 1,
frontHTML: <div>What is the capital of <u>Alaska</u>?</div>,
backHTML: <>Juneau</>,
},
{
id: 2,
frontHTML: <>What is the capital of California?</>,
backHTML: <>Sacramento</>,
},
{
id: 3,
frontHTML: <>What is the capital of New York?</>,
backHTML: <>Albany</>,
},
{
id: 4,
frontHTML: <>What is the capital of Florida?</>,
backHTML: <>Tallahassee</>,
},
{
id: 5,
frontHTML: <>What is the capital of Texas?</>,
backHTML: <>Austin</>,
},
{
id: 6,
frontHTML: <>What is the capital of New Mexico?</>,
backHTML: <>Santa Fe</>,
},
{
id: 7,
frontHTML: <>What is the capital of Arizona?</>,
backHTML: <>Phoenix</>,
},
];
return (
<div>
<FlashcardArray cards={cards} />
</div>
);
}
Prop | Type | default |
---|---|---|
*cards | array | None |
controls | boolean | true |
forwardRef | Obj | () => {} |
showCount | boolean | true |
frontCardStyle | React.CSSProperties | {} |
frontContentStyle | React.CSSProperties | {} |
backCardStyle | React.CSSProperties | {} |
backContentStyle | React.CSSProperties | {} |
FlashcardArrayStyle | React.CSSProperties | {} |
onCardChange | func | (id: any, index: number) => {} |
onCardFlip | func | (id: any, index: number, state: boolean) => {} |
currentCardFlipRef | React.MutableRefObject | None |
cycle | boolean | false |
Prop | Type | default |
---|---|---|
*frontHTML | string | JSX.Element | None |
frontCardStyle | React.CSSProperties | None |
frontContentStyle | React.CSSProperties | None |
backHTML | string | JSX.Element | None |
backCardStyle | React.CSSProperties | None |
backContentStyle | React.CSSProperties | None |
className | string | "" |
height | string | None |
width | string | None |
borderRadius | string | 1rem |
style | React.CSSProperties | None |
onCardFlip | (state: boolean) => void |
None |
manualFlipRef | React.MutableRefObject | { current: null } |
Key | Type |
---|---|
*id | number |
*frontHTML | string | JSX.Element |
*backHTML | string | JSX.Element |
frontCardStyle | React.CSSProperties |
frontContentStyle | React.CSSProperties |
backCardStyle | React.CSSProperties |
backContentStyle | React.CSSProperties |
className | string |
height | string |
width | string |
borderRadius | string |
style | React.CSSProperties |
Standalone Flashcard component
import { Flashcard } from "react-quizlet-flashcard";
function App() {
return (
<div className="storyContainer">
<Flashcard frontHTML="<h1>Front</h1>" backHTML={<h1>Back</h1>} />
</div>
);
}
You can use this when you want to add buttons or other intractable elements to flip the card content.
import { Flashcard } from "react-quizlet-flashcard";
import { useRef } from "react";
function App() {
const flipRef = useRef();
return (
<div className="storyContainer">
<Flashcard
frontHTML="<h1>Front</h1>"
backHTML={<h1>Back</h1>}
manualFlipRef={flipRef}
/>
<button onClick={() => flipRef.current()}>Flip</button>
</div>
);
}
import { Flashcard } from "react-quizlet-flashcard";
function App() {
return (
<div className="storyContainer">
<Flashcard
frontHTML={
<>
<span>1</span>
<span>2</span>
<span>3</span>
<span>4</span>
<span>5</span>
<span>6</span>
<span>7</span>
<span>8</span>
<span>9</span>
</>
}
backHTML={<h1>Back</h1>}
backContentStyle={{
backgroundColor: "red",
color: "white",
padding: "10px",
display: "flex",
justifyContent: "center",
alignItems: "center",
}}
frontContentStyle={{
backgroundColor: "turquoise",
color: "white",
display: "grid",
gridTemplateColumns: "repeat(3, 1fr)",
gridTemplateRows: "repeat(3, 1fr)",
fontSize: "2rem",
}}
/>
</div>
);
}
import { Flashcard } from "react-quizlet-flashcard";
function App() {
return (
<div className="storyContainer">
<Flashcard
frontHTML="<h1>Check console</h1>"
backHTML={<h1>Back</h1>}
onCardFlip={(state) => {
if (state) console.log("Card is flipped");
else console.log("Card is not flipped");
}}
/>
</div>
);
}
import { Flashcard } from "react-quizlet-flashcard";
function App() {
return (
<div className="storyContainer">
<Flashcard
frontHTML="<h1>Front</h1>"
backHTML={<h1>Back</h1>}
style={{ width: "300px", height: "300px" }}
/>
</div>
);
}
FlashcardArray component
import { FlashcardArray } from "react-quizlet-flashcard";
function App() {
const cards = [...]
return (
<div className="storyContainer">
<FlashcardArray cards={cards} />
</div>
);
}
import { FlashcardArray } from "react-quizlet-flashcard";
import { useRef } from "react";
function App() {
const controlRef = useRef({}); // {} should definitely be passed to useRef for it to work
const currentCardFlipRef = useRef(); // nothing should be passed to useRef for it to work
const [currentCard, setCurrentCard] = useState(1);
return (
<div className="storyContainer">
<FlashcardArray
cards={deck.cards}
controls={false}
showCount={false}
forwardRef={controlRef}
currentCardFlipRef={currentCardFlipRef}
onCardChange={(id, index) => {
setCurrentCard(index);
}}
/>
<p>
{currentCard} / {deck.cards.length}
</p>
<button onClick={() => controlRef.current.prevCard()}>Prev</button>
<button onClick={() => controlRef.current.resetArray()}>Reset</button>
<button onClick={() => controlRef.current.nextCard()}>Next</button>
<button onClick={() => currentCardFlipRef.current()}>Flip</button>
</div>
);
}
import { FlashcardArray } from "react-quizlet-flashcard";
function App() {
cards = [...]
return (
<div className="storyContainer">
<FlashcardArray
cards={cards}
frontContentStyle={{
backgroundColor: "lightgoldenrodyellow",
color: "black",
}}
backContentStyle={{
backgroundColor: "turquoise",
}}
/>
</div>
);
}
You can set style for each card through the card object. Refer to prop list of Card object above. Instead, you can also pass another react component with custom style into cards.
import { FlashcardArray } from "react-quizlet-flashcard";
function App() {
return (
<div className="storyContainer">
<FlashcardArray
cards={[
{
id: 1,
frontHTML: (
<>
<span style={{ backgroundColor: "lawngreen" }}>Option 1</span>
<span style={{ backgroundColor: "lawngreen" }}>Option 2</span>
<span style={{ backgroundColor: "lawngreen" }}>Option 3</span>
</>
),
backHTML: "Juneau",
options: ["Juneau", "Anchorage", "Fairbanks"],
frontContentStyle: {
backgroundColor: "lightgoldenrodyellow",
color: "black",
display: "grid",
gridTemplateColumns: "1fr 1fr 1fr",
gridTemplateRows: "1fr",
gap: "10px",
padding: "10px",
},
},
{
id: 2,
frontHTML: (
<>
<span style={{ backgroundColor: "pink" }}>Option 1</span>
<span style={{ backgroundColor: "pink" }}>Option 2</span>
<span style={{ backgroundColor: "pink" }}>Option 3</span>
</>
),
backHTML: "Sacramento",
options: ["Sacramento", "Los Angeles", "San Francisco"],
frontContentStyle: {
backgroundColor: "lightgoldenrodyellow",
color: "black",
display: "grid",
gridTemplateColumns: "1fr",
gridTemplateRows: "1fr 1fr 1fr",
gap: "10px",
padding: "10px",
},
},
]}
/>
</div>
);
}
Contributions, issues and feature requests are welcome! Feel free to check issues page.
Give a ⭐️ if this project helped you!
- Write the component with typescript.
- Write Unit tests.
- More finer control.
- Write the styles with Sass