ça ne marche pas mais je n'y arrive pas tant pis au moins la page est propre
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
67b4094d81
commit
f6bd5d2fc1
@ -0,0 +1,17 @@
|
||||
@page "/commentary-chart"
|
||||
@using MudBlazor
|
||||
|
||||
<MudCard Class="p-4">
|
||||
<MudCardContent>
|
||||
<h3 class="text-center mb-4">Statistiques des Commentaires - Année @SelectedYear</h3>
|
||||
|
||||
<MudSelect T="int" Label="Sélectionner l'année" @bind-SelectedValue="SelectedYear" Dense="true" Immediate="true" OnValueChanged="UpdateChartData">
|
||||
@foreach (var year in AvailableYears)
|
||||
{
|
||||
<MudSelectItem T="int" Value="@year">@year</MudSelectItem>
|
||||
}
|
||||
</MudSelect>
|
||||
|
||||
<MudChart ChartType="ChartType.Bar" Labels="@Labels" Data="@ChartData" />
|
||||
</MudCardContent>
|
||||
</MudCard>
|
@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "3.0",
|
||||
"defaultProvider": "cdnjs",
|
||||
"libraries": []
|
||||
}
|
@ -0,0 +1,359 @@
|
||||
[
|
||||
{
|
||||
"id_comment": 1,
|
||||
"quote": 1,
|
||||
"users": 1,
|
||||
"dateC": "2024-10-10",
|
||||
"comment": "coucou"
|
||||
},
|
||||
{
|
||||
"id_comment": 2,
|
||||
"quote": 1,
|
||||
"users": 2,
|
||||
"dateC": "2024-10-11",
|
||||
"comment": "Super citation !"
|
||||
},
|
||||
{
|
||||
"id_comment": 3,
|
||||
"quote": 1,
|
||||
"users": 3,
|
||||
"dateC": "2024-10-12",
|
||||
"comment": "Très inspirant."
|
||||
},
|
||||
{
|
||||
"id_comment": 4,
|
||||
"quote": 2,
|
||||
"users": 4,
|
||||
"dateC": "2024-10-13",
|
||||
"comment": "J'adore cette phrase."
|
||||
},
|
||||
{
|
||||
"id_comment": 5,
|
||||
"quote": 2,
|
||||
"users": 5,
|
||||
"dateC": "2024-10-14",
|
||||
"comment": "Citation profonde."
|
||||
},
|
||||
{
|
||||
"id_comment": 6,
|
||||
"quote": 2,
|
||||
"users": 6,
|
||||
"dateC": "2024-10-15",
|
||||
"comment": "Belle pensée."
|
||||
},
|
||||
{
|
||||
"id_comment": 7,
|
||||
"quote": 3,
|
||||
"users": 7,
|
||||
"dateC": "2024-10-16",
|
||||
"comment": "Très motivant."
|
||||
},
|
||||
{
|
||||
"id_comment": 8,
|
||||
"quote": 3,
|
||||
"users": 8,
|
||||
"dateC": "2024-10-17",
|
||||
"comment": "Citation puissante."
|
||||
},
|
||||
{
|
||||
"id_comment": 9,
|
||||
"quote": 3,
|
||||
"users": 9,
|
||||
"dateC": "2024-10-18",
|
||||
"comment": "Paroles sages."
|
||||
},
|
||||
{
|
||||
"id_comment": 10,
|
||||
"quote": 4,
|
||||
"users": 10,
|
||||
"dateC": "2024-10-19",
|
||||
"comment": "Très réfléchi."
|
||||
},
|
||||
{
|
||||
"id_comment": 11,
|
||||
"quote": 4,
|
||||
"users": 11,
|
||||
"dateC": "2024-10-20",
|
||||
"comment": "Citation magnifique."
|
||||
},
|
||||
{
|
||||
"id_comment": 12,
|
||||
"quote": 4,
|
||||
"users": 12,
|
||||
"dateC": "2024-10-21",
|
||||
"comment": "Très touchant."
|
||||
},
|
||||
{
|
||||
"id_comment": 13,
|
||||
"quote": 5,
|
||||
"users": 13,
|
||||
"dateC": "2024-10-22",
|
||||
"comment": "Citation parfaite."
|
||||
},
|
||||
{
|
||||
"id_comment": 14,
|
||||
"quote": 5,
|
||||
"users": 14,
|
||||
"dateC": "2024-10-23",
|
||||
"comment": "Très émouvant."
|
||||
},
|
||||
{
|
||||
"id_comment": 15,
|
||||
"quote": 5,
|
||||
"users": 15,
|
||||
"dateC": "2024-10-24",
|
||||
"comment": "Citation merveilleuse."
|
||||
},
|
||||
{
|
||||
"id_comment": 16,
|
||||
"quote": 6,
|
||||
"users": 16,
|
||||
"dateC": "2024-10-25",
|
||||
"comment": "Très poétique."
|
||||
},
|
||||
{
|
||||
"id_comment": 17,
|
||||
"quote": 6,
|
||||
"users": 17,
|
||||
"dateC": "2024-10-26",
|
||||
"comment": "Citation exceptionnelle."
|
||||
},
|
||||
{
|
||||
"id_comment": 18,
|
||||
"quote": 6,
|
||||
"users": 18,
|
||||
"dateC": "2024-10-27",
|
||||
"comment": "Très inspirant."
|
||||
},
|
||||
{
|
||||
"id_comment": 19,
|
||||
"quote": 7,
|
||||
"users": 19,
|
||||
"dateC": "2024-10-28",
|
||||
"comment": "J'adore cette phrase."
|
||||
},
|
||||
{
|
||||
"id_comment": 20,
|
||||
"quote": 7,
|
||||
"users": 20,
|
||||
"dateC": "2024-10-29",
|
||||
"comment": "Citation profonde."
|
||||
},
|
||||
{
|
||||
"id_comment": 21,
|
||||
"quote": 7,
|
||||
"users": 21,
|
||||
"dateC": "2024-8-30",
|
||||
"comment": "Belle pensée."
|
||||
},
|
||||
{
|
||||
"id_comment": 22,
|
||||
"quote": 8,
|
||||
"users": 22,
|
||||
"dateC": "2024-10-31",
|
||||
"comment": "Très motivant."
|
||||
},
|
||||
{
|
||||
"id_comment": 23,
|
||||
"quote": 8,
|
||||
"users": 23,
|
||||
"dateC": "2024-11-01",
|
||||
"comment": "Citation puissante."
|
||||
},
|
||||
{
|
||||
"id_comment": 24,
|
||||
"quote": 8,
|
||||
"users": 24,
|
||||
"dateC": "2024-11-02",
|
||||
"comment": "Paroles sages."
|
||||
},
|
||||
{
|
||||
"id_comment": 25,
|
||||
"quote": 9,
|
||||
"users": 25,
|
||||
"dateC": "2024-11-03",
|
||||
"comment": "Très réfléchi."
|
||||
},
|
||||
{
|
||||
"id_comment": 26,
|
||||
"quote": 9,
|
||||
"users": 26,
|
||||
"dateC": "2024-11-04",
|
||||
"comment": "Citation magnifique."
|
||||
},
|
||||
{
|
||||
"id_comment": 27,
|
||||
"quote": 9,
|
||||
"users": 27,
|
||||
"dateC": "2024-11-05",
|
||||
"comment": "Très touchant."
|
||||
},
|
||||
{
|
||||
"id_comment": 28,
|
||||
"quote": 10,
|
||||
"users": 28,
|
||||
"dateC": "2024-11-06",
|
||||
"comment": "Citation parfaite."
|
||||
},
|
||||
{
|
||||
"id_comment": 29,
|
||||
"quote": 10,
|
||||
"users": 29,
|
||||
"dateC": "2024-11-07",
|
||||
"comment": "Très émouvant."
|
||||
},
|
||||
{
|
||||
"id_comment": 30,
|
||||
"quote": 10,
|
||||
"users": 30,
|
||||
"dateC": "2024-11-08",
|
||||
"comment": "Citation merveilleuse."
|
||||
},
|
||||
{
|
||||
"id_comment": 31,
|
||||
"quote": 11,
|
||||
"users": 31,
|
||||
"dateC": "2024-11-09",
|
||||
"comment": "Très poétique."
|
||||
},
|
||||
{
|
||||
"id_comment": 32,
|
||||
"quote": 11,
|
||||
"users": 32,
|
||||
"dateC": "2024-11-10",
|
||||
"comment": "Citation exceptionnelle."
|
||||
},
|
||||
{
|
||||
"id_comment": 33,
|
||||
"quote": 11,
|
||||
"users": 33,
|
||||
"dateC": "2024-11-11",
|
||||
"comment": "Très inspirant."
|
||||
},
|
||||
{
|
||||
"id_comment": 34,
|
||||
"quote": 12,
|
||||
"users": 34,
|
||||
"dateC": "2024-11-12",
|
||||
"comment": "J'adore cette phrase."
|
||||
},
|
||||
{
|
||||
"id_comment": 35,
|
||||
"quote": 12,
|
||||
"users": 35,
|
||||
"dateC": "2024-11-13",
|
||||
"comment": "Citation profonde."
|
||||
},
|
||||
{
|
||||
"id_comment": 36,
|
||||
"quote": 12,
|
||||
"users": 36,
|
||||
"dateC": "2024-11-14",
|
||||
"comment": "Belle pensée."
|
||||
},
|
||||
{
|
||||
"id_comment": 37,
|
||||
"quote": 13,
|
||||
"users": 37,
|
||||
"dateC": "2024-11-15",
|
||||
"comment": "Très motivant."
|
||||
},
|
||||
{
|
||||
"id_comment": 38,
|
||||
"quote": 13,
|
||||
"users": 38,
|
||||
"dateC": "2024-11-16",
|
||||
"comment": "Citation puissante."
|
||||
},
|
||||
{
|
||||
"id_comment": 39,
|
||||
"quote": 13,
|
||||
"users": 39,
|
||||
"dateC": "2024-11-17",
|
||||
"comment": "Paroles sages."
|
||||
},
|
||||
{
|
||||
"id_comment": 40,
|
||||
"quote": 14,
|
||||
"users": 40,
|
||||
"dateC": "2024-11-18",
|
||||
"comment": "Très réfléchi."
|
||||
},
|
||||
{
|
||||
"id_comment": 41,
|
||||
"quote": 14,
|
||||
"users": 41,
|
||||
"dateC": "2024-11-19",
|
||||
"comment": "Citation magnifique."
|
||||
},
|
||||
{
|
||||
"id_comment": 42,
|
||||
"quote": 14,
|
||||
"users": 42,
|
||||
"dateC": "2024-11-20",
|
||||
"comment": "Très touchant."
|
||||
},
|
||||
{
|
||||
"id_comment": 43,
|
||||
"quote": 15,
|
||||
"users": 43,
|
||||
"dateC": "2024-11-21",
|
||||
"comment": "Citation parfaite."
|
||||
},
|
||||
{
|
||||
"id_comment": 44,
|
||||
"quote": 15,
|
||||
"users": 44,
|
||||
"dateC": "2024-11-22",
|
||||
"comment": "Très émouvant."
|
||||
},
|
||||
{
|
||||
"id_comment": 45,
|
||||
"quote": 15,
|
||||
"users": 45,
|
||||
"dateC": "2024-11-23",
|
||||
"comment": "Citation merveilleuse."
|
||||
},
|
||||
{
|
||||
"id_comment": 46,
|
||||
"quote": 16,
|
||||
"users": 46,
|
||||
"dateC": "2024-11-24",
|
||||
"comment": "Très poétique."
|
||||
},
|
||||
{
|
||||
"id_comment": 47,
|
||||
"quote": 16,
|
||||
"users": 47,
|
||||
"dateC": "2024-11-25",
|
||||
"comment": "Citation exceptionnelle."
|
||||
},
|
||||
{
|
||||
"id_comment": 48,
|
||||
"quote": 16,
|
||||
"users": 48,
|
||||
"dateC": "2024-11-26",
|
||||
"comment": "Très inspirant."
|
||||
},
|
||||
{
|
||||
"id_comment": 49,
|
||||
"quote": 17,
|
||||
"users": 49,
|
||||
"dateC": "2024-11-27",
|
||||
"comment": "J'adore cette phrase."
|
||||
},
|
||||
{
|
||||
"id_comment": 50,
|
||||
"quote": 17,
|
||||
"users": 50,
|
||||
"dateC": "2024-11-28",
|
||||
"comment": "Citation profonde."
|
||||
},
|
||||
{
|
||||
"id_comment": 51,
|
||||
"quote": 17,
|
||||
"users": 51,
|
||||
"dateC": "2024-11-29",
|
||||
"comment": "Belle pensée."
|
||||
}
|
||||
]
|
@ -1,9 +0,0 @@
|
||||
[
|
||||
{
|
||||
"id_comment": 1,
|
||||
"quote": 1,
|
||||
"users": 1,
|
||||
"dateC":"2024-10-10",
|
||||
"comment": "coucou"
|
||||
}
|
||||
]
|
Loading…
Reference in new issue