feat(abonnement): /compte/abonnement non-abonné affiche M'abonner/Me réabonner

This commit is contained in:
Colin Maudry
2026-07-04 23:34:35 +02:00
parent c5c63cb68e
commit 3b744d87f0
2 changed files with 23 additions and 124 deletions
+14 -89
View File
@@ -3,7 +3,6 @@ from dash import Input, Output, State, callback, dcc, html, register_page
from flask_login import current_user from flask_login import current_user
from src.pages._compte_shell import account_guard, account_shell from src.pages._compte_shell import account_guard, account_shell
from src.pages.a_propos.abonnement import abonnement_features
from src.subscriptions import db, plans from src.subscriptions import db, plans
from src.utils.frontend import format_date_french from src.utils.frontend import format_date_french
@@ -15,8 +14,6 @@ register_page(
description="Gestion de votre abonnement colibre.", description="Gestion de votre abonnement colibre.",
) )
_PLAN_KEYS = ("simple", "soutien")
def _csrf_input(): def _csrf_input():
from flask_wtf.csrf import generate_csrf from flask_wtf.csrf import generate_csrf
@@ -24,92 +21,23 @@ def _csrf_input():
return dcc.Input(type="hidden", name="csrf_token", value=generate_csrf()) return dcc.Input(type="hidden", name="csrf_token", value=generate_csrf())
def _plan_card(meta: dict, trial: int | None, trial_used: bool): def _reabo_button(has_used_trial: bool):
from src.utils import TOUS_ABONNES label = "Me réabonner" if has_used_trial else "M'abonner"
return html.Div(
if trial_used:
badge = html.Div(
"Sans période d'essai (déjà utilisée) — débit immédiat",
className="text-muted mb-2",
)
elif trial:
badge = html.Div(f"{trial} jours d'essai gratuit", className="mb-3")
else:
badge = None
return dbc.Card(
dbc.CardBody(
[
html.H4(meta["label"], className="mb-1"),
html.P(
f"{meta['prix_ht']} € HT / mois ({str(int(meta['prix_ht']) * 1.2).replace('.0', '')} € TTC)",
className="text-muted mb-3",
),
html.P(meta["description"], className="mb-3"),
badge,
html.A(
"S'abonner",
href=(
"#"
if TOUS_ABONNES
else f"/compte/abonnement/mes-infos?plan={meta['key']}"
),
className=(
"btn btn-secondary disabled"
if TOUS_ABONNES
else "btn btn-primary"
),
style={"width": "fit-content"},
),
],
className="p-4",
),
className="h-100",
)
def _plan_cards(trial_used=False, trial_for=plans.trial_days):
cards = []
for key in _PLAN_KEYS:
meta = plans.plan_meta(key)
if meta:
cards.append(_plan_card(meta, trial_for(key), trial_used))
return dbc.Row([dbc.Col(c, md=6) for c in cards], className="g-4 mb-5")
def _explainer():
col_left = dbc.Col(
[html.H4("Fonctionnalités réservées aux abonné·es :"), abonnement_features],
md=6,
style={
"borderRight": "1px solid var(--bs-border-color)",
"paddingRight": "2rem",
},
)
col_right = dbc.Col(
[ [
html.H4("Ce que les abonnements permettent"), html.P(
html.Ul( "Abonnez-vous pour accéder aux fonctionnalités réservées "
[ "aux abonné·es.",
html.Li( className="mb-3",
"passer plus de temps à développer colibre et moins de temps à chercher des missions" ),
), html.A(
html.Li( label,
"rédaction d'études à partir des données, par exemple sur les " href="/a-propos/abonnement",
"acheteurs dont les données sont introuvables et les raisons de " className="btn btn-primary",
"cette non-publication."
),
html.Li(
"fédération des bonnes volontés souhaitant militer pour une "
"législation plus ambitieuse sur la transparence de la commande "
"publique."
),
]
), ),
], ],
md=6, className="mb-4",
style={"paddingLeft": "2rem"},
) )
return dbc.Row([col_left, col_right], className="align-items-start pt-2")
def _active_view(row): def _active_view(row):
@@ -287,9 +215,6 @@ def layout(**query):
return guard return guard
row = db.get_current(current_user.id) if current_user.is_authenticated else None row = db.get_current(current_user.id) if current_user.is_authenticated else None
trial_used = (
db.has_used_trial(current_user.id) if current_user.is_authenticated else False
)
body = [html.H2("Abonnement", className="mb-4")] body = [html.H2("Abonnement", className="mb-4")]
banner = _tous_abonnes_banner() banner = _tous_abonnes_banner()
@@ -307,7 +232,7 @@ def layout(**query):
"Votre abonnement a expiré.", color="warning", className="mb-4" "Votre abonnement a expiré.", color="warning", className="mb-4"
) )
) )
body.extend([_plan_cards(trial_used=trial_used), _explainer()]) body.append(_reabo_button(db.has_used_trial(current_user.id)))
body.append(_salaire_modal) body.append(_salaire_modal)
return account_shell("abonnement", html.Div(body)) return account_shell("abonnement", html.Div(body))
+9 -35
View File
@@ -1,23 +1,18 @@
def test_plan_cards_present_when_no_subscription(monkeypatch): def test_reabo_button_never_subscribed():
monkeypatch.setenv("FRISBII_PLAN_SIMPLE", "plan_simple")
monkeypatch.setenv("FRISBII_PLAN_SOUTIEN", "plan_soutien")
from src.pages.compte import abonnement as compte_abonnement from src.pages.compte import abonnement as compte_abonnement
cards = compte_abonnement._plan_cards(trial_for=lambda key: 2) text = str(compte_abonnement._reabo_button(has_used_trial=False))
text = str(cards) assert "M'abonner" in text
assert "Abonnement" in text assert "Me réabonner" not in text
assert "Abonnement de soutien" in text assert "href='/a-propos/abonnement'" in text
assert "2 jours d'essai gratuit" in text
def test_plan_cards_no_trial_when_trial_used(monkeypatch): def test_reabo_button_former_subscriber():
monkeypatch.setenv("FRISBII_PLAN_SIMPLE", "plan_simple")
monkeypatch.setenv("FRISBII_PLAN_SOUTIEN", "plan_soutien")
from src.pages.compte import abonnement as compte_abonnement from src.pages.compte import abonnement as compte_abonnement
text = str(compte_abonnement._plan_cards(trial_used=True, trial_for=lambda key: 2)) text = str(compte_abonnement._reabo_button(has_used_trial=True))
assert "Sans période d'essai" in text assert "Me réabonner" in text
assert "2 jours d'essai gratuit" not in text assert "href='/a-propos/abonnement'" in text
def test_active_view_shows_cancel(monkeypatch): def test_active_view_shows_cancel(monkeypatch):
@@ -43,27 +38,6 @@ def test_active_view_trial_banner(monkeypatch):
assert "Essai gratuit" in str(compte_abonnement._active_view(row)) assert "Essai gratuit" in str(compte_abonnement._active_view(row))
def test_subscribe_buttons_disabled_when_tous_abonnes(monkeypatch):
monkeypatch.setenv("FRISBII_PLAN_SIMPLE", "plan_simple")
monkeypatch.setenv("FRISBII_PLAN_SOUTIEN", "plan_soutien")
monkeypatch.setattr("src.utils.TOUS_ABONNES", True)
from src.pages.compte import abonnement as compte_abonnement
text = str(compte_abonnement._plan_cards(trial_for=lambda key: 2))
assert "btn-secondary disabled" in text
assert "btn-primary" not in text
def test_subscribe_buttons_active_when_flag_off(monkeypatch):
monkeypatch.setenv("FRISBII_PLAN_SIMPLE", "plan_simple")
monkeypatch.setenv("FRISBII_PLAN_SOUTIEN", "plan_soutien")
monkeypatch.setattr("src.utils.TOUS_ABONNES", False)
from src.pages.compte import abonnement as compte_abonnement
text = str(compte_abonnement._plan_cards(trial_for=lambda key: 2))
assert "btn-primary" in text
def test_banner_present_when_tous_abonnes(monkeypatch): def test_banner_present_when_tous_abonnes(monkeypatch):
monkeypatch.setattr("src.utils.TOUS_ABONNES", True) monkeypatch.setattr("src.utils.TOUS_ABONNES", True)
from src.pages.compte import abonnement as compte_abonnement from src.pages.compte import abonnement as compte_abonnement