Launch Week Day 5: Introducing Reachability for PHP.Learn More
Socket
Book a DemoSign in
Socket

@sb1/ffe-cards-react

Package Overview
Dependencies
Maintainers
4
Versions
270
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sb1/ffe-cards-react

React implementation of ffe-react

latest
Source
npmnpm
Version
101.0.2
Version published
Maintainers
4
Created
Source

@sb1/ffe-cards-react

Beskrivelse

Kort-komponenter for presentasjon av innhold. Alle bruker render prop-monster der innholdskomponenter (Title, Text, Subtext, CardName, CardAction) gis som funksjonargumenter.

Installasjon

npm install --save @sb1/ffe-cards-react

Bruk

Full dokumentasjon: https://sparebank1.github.io/designsystem/

Avhengig av @sb1/ffe-icons-react. Importer styling:

@import '@sb1/ffe-cards/css/cards.css';

Eksporterte komponenter

  • CardBase - Grunnleggende kortkomponent
  • TextCard - Tekstkort uten visuelt element
  • IconCard - Kort med ikon til venstre
  • ImageCard - Kort med bilde
  • IllustrationCard - Kort med illustrasjon
  • StippledCard - Kort med stiplet kant
  • GroupCard, GroupCardTitle, GroupCardElement, GroupCardFooter - Grupperte kort

Eksempler

Import

import {
    TextCard,
    IconCard,
    ImageCard,
    IllustrationCard,
    StippledCard,
    GroupCard,
    GroupCardTitle,
    GroupCardElement,
    GroupCardFooter,
} from '@sb1/ffe-cards-react';
import { Icon } from '@sb1/ffe-icons-react';

TextCard

<TextCard>
    {({ CardName, Title, Subtext, Text }) => (
        <>
            <CardName>Kortnavn</CardName>
            <Title>Tittel</Title>
            <Subtext>En liten undertekst</Subtext>
            <Text>Beskrivende tekst her.</Text>
        </>
    )}
</TextCard>

IconCard

<IconCard icon={<Icon fileUrl="./icons/open/300/xl/savings.svg" size="xl" />}>
    {({ CardName, Title, Subtext, Text }) => (
        <>
            <CardName>Sparekonto</CardName>
            <Title>BSU</Title>
            <Subtext>Boligsparing for ungdom</Subtext>
            <Text>Spar til bolig med skattefradrag.</Text>
        </>
    )}
</IconCard>

ImageCard

<ImageCard imageSrc="https://example.com/bilde.jpg" imageAltText="Beskrivelse">
    {({ Title, Text }) => (
        <>
            <Title>Forsikring</Title>
            <Text>Les mer om vare forsikringsprodukter.</Text>
        </>
    )}
</ImageCard>

IllustrationCard

<IllustrationCard img={<img src={illustrasjon} alt="" />}>
    {({ Title, Text }) => (
        <>
            <Title>Finansieringsbevis</Title>
            <Text>For deg som skal kjope ny bolig.</Text>
        </>
    )}
</IllustrationCard>

StippledCard

<StippledCard
    img={{
        type: 'icon',
        element: (
            <Icon fileUrl="./icons/open/300/xl/monitoring.svg" size="xl" />
        ),
    }}
>
    {({ Title, Subtext, Text }) => (
        <>
            <Title>Sparekonto</Title>
            <Subtext>7 004,00 kr</Subtext>
            <Text>Din saldo.</Text>
        </>
    )}
</StippledCard>

GroupCard

<GroupCard>
    <GroupCardTitle>
        <Heading2 lookLike={5}>Tjenester</Heading2>
    </GroupCardTitle>
    <GroupCardElement>
        {({ Title, Text }) => (
            <>
                <Title>Betaling</Title>
                <Text>Betal regninger enkelt.</Text>
            </>
        )}
    </GroupCardElement>
    <GroupCardFooter>
        {({ CardAction }) => (
            <CardAction href="/tjenester">Se alle tjenester</CardAction>
        )}
    </GroupCardFooter>
</GroupCard>

CardBase

<CardBase bgColor="secondary" noMargin>
    Tilpasset innhold her.
</CardBase>

Gjore kort klikkbare med CardAction

Bruk CardAction fra render props for a gjore hele kortet klikkbart:

<TextCard>
    {({ Title, Text, CardAction }) => (
        <>
            <Title>
                <CardAction href="/destinasjon">Klikkbar tittel</CardAction>
            </Title>
            <Text>Hele kortet blir klikkbart.</Text>
        </>
    )}
</TextCard>

Render Props-komponentene

KomponentBeskrivelse
CardNameLiten tekst over tittelen
TitleHovedtittel
TextBeskrivende tekst
SubtextSekundar tekst (gra)
CardActionGjor kortet klikkbart

Alle stotter as-prop: <Title as="h2">Tittel</Title>

Polymorfisme med as-prop

<GroupCard as="ul">
    <GroupCardElement as="li">Element 1</GroupCardElement>
</GroupCard>

Utvikling

npm install
npm run build
npm start

Lokal Storybook kjorer pa http://localhost:6006/.

FAQs

Package last updated on 21 Apr 2026

Did you know?

Socket

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.

Install

Related posts