{% extends 'base.html.twig' %} {% block title %}Choice Card - Design System - Bubul{% endblock %} {% block body %}
{% include '_atoms/icon/icon.html.twig' with { name: 'chevron-left', size: 'sm', color: 'gray' } %}
Organisme /

Choice Card

Carte de choix premium pour wizards et selections

{# ===== EXPLICATION ===== #}
{% include '_atoms/icon/icon.html.twig' with { name: 'cursor', size: 'lg', color: 'white' } %}

Carte de choix premium

Critique

Organisme utilise dans les wizards Moodia pour les selections importantes (type de generation, approche pedagogique). Design premium avec icone animee, features list, gradient hover et fleche directionnelle.

0

Molecules

1

Atome

4

Couleurs

11

Parametres

{# ===== COMPOSITION ===== #}

Composition

Atomes utilises

Atomes

  • icon - Icone principale, fleche, checks des features

Logique metier

  • Configuration couleur dynamique (4 themes)
  • Tag HTML adaptatif (a, button ou div)
  • Gradient et fleche animes au hover
  • Icone avec rotation et scale au hover
  • Support badge pour cartes desactivees
{# ===== USAGE ===== #}

Usage

{% verbatim %}{% include '_organisms/choice-card/choice-card.html.twig' with {
    title: 'Importer un document',
    description: 'Importez votre PDF et l\'IA analysera le contenu',
    icon: 'document',
    color: 'primary',
    features: [
        { text: 'Structure automatique' },
        { text: 'Extraction des images' },
        { text: 'Génération de quiz' }
    ],
    href: '/moodia/upload'
} %}{% endverbatim %}
{# ===== COULEURS ===== #}

Couleurs

Parametre : color

primary (defaut)

{% include '_organisms/choice-card/choice-card.html.twig' with { title: 'Importer un document', description: 'Importez votre PDF et l\'IA analysera le contenu', icon: 'document', color: 'primary', features: [ { text: 'Structure automatique' }, { text: 'Extraction des images' }, { text: 'Generation de quiz' } ], href: '#' } %}

violet

{% include '_organisms/choice-card/choice-card.html.twig' with { title: 'Prompt libre', description: 'Decrivez votre cours et l\'IA le construira', icon: 'edit', color: 'violet', features: [ { text: 'Liberte totale' }, { text: 'Prompt personnalise' } ], href: '#' } %}
{# ===== DESACTIVEE ===== #}

Desactivee

Parametres : disabled, badge, badgeIcon

disabled: true, badge: 'Bientot'

{% include '_organisms/choice-card/choice-card.html.twig' with { title: 'Rediger manuellement', description: 'Creez votre cours section par section', icon: 'edit', disabled: true, badge: 'Bientot', badgeIcon: 'clock', features: [ { text: 'Controle total' }, { text: 'Sans tokens' } ] } %}
{# ===== PARAMETRES ===== #}

Parametres

Parametre Type Defaut Description
titlestring(requis)Titre de la carte
descriptionstringnullDescription sous le titre
iconstringnullNom de l'icone principale
colorstring'primary'Theme couleur : primary, violet, warning, success
colorHexstringnullCouleur hex custom (ex: '#8B5CF6')
featuresarray[]Liste de features [{text: '...'}]
hrefstringnullLien (rend la carte cliquable, tag <a>)
actionstringnulldata-action Stimulus (tag <button>)
disabledboolfalseDesactive la carte (opacite reduite, non cliquable)
badgestringnullTexte du badge en haut a droite
badgeIconstringnullIcone du badge
classstring''Classes Tailwind additionnelles
{# ===== FICHIER SOURCE ===== #}

Fichier source

templates/_organisms/choice-card/choice-card.html.twig
{% endblock %}