commit
c5eefafa96
@ -0,0 +1,24 @@
|
||||
@using WF_WebAdmin.Model
|
||||
@page "/modifquote"
|
||||
|
||||
<PageTitle>Corection des citation</PageTitle>
|
||||
|
||||
<h3>Corection des citation</h3>
|
||||
|
||||
<p>Ajouter une recherche</p>
|
||||
|
||||
@if (quotes != null)
|
||||
{
|
||||
<DataGrid TItem="Quote"
|
||||
Data="@quotes"
|
||||
PageSize="int.MaxValue"
|
||||
Responsive>
|
||||
|
||||
<DataGridColumn TItem="Quote" Field="@nameof(Quote.Id)" Caption="Id"/>
|
||||
<DataGridColumn TItem="Quote" Field="@nameof(Quote.Content)" Caption="Citation"/>
|
||||
<DataGridColumn TItem="Quote" Field="@nameof(Quote.Charac)" Caption="Personage"/>
|
||||
<DataGridColumn TItem="Quote" Field="@nameof(Quote.TitleSrc)" Caption="Source" />
|
||||
<DataGridColumn TItem="Quote" Field="@nameof(Quote.Langue)" Caption="Langue" />
|
||||
<DataGridColumn TItem="Quote" Field="@nameof(Quote.DateSrc)" Caption="Date" DisplayFormat="{0:d}" DisplayFormatProvider="@System.Globalization.CultureInfo.GetCultureInfo("fr-FR")" />
|
||||
</DataGrid>
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using WF_WebAdmin.Model;
|
||||
|
||||
namespace WF_WebAdmin.Pages
|
||||
{
|
||||
public partial class ModifQuote
|
||||
{
|
||||
private Quote[] quotes;
|
||||
|
||||
private int MaxValue = 5;
|
||||
|
||||
[Inject]
|
||||
public HttpClient Http { get; set; }
|
||||
|
||||
[Inject]
|
||||
public NavigationManager NavigationManager { get; set; }
|
||||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
quotes = await Http.GetFromJsonAsync<Quote[]>($"{NavigationManager.BaseUri}fake-dataModifQuote.json");
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,90 @@
|
||||
[
|
||||
{
|
||||
"Id": 1,
|
||||
"ImgPath": "https://tse2.mm.bing.net/th/id/OIP.MMpXBB5RDRYQm05FJmevGAHaKl?w=137&h=195&c=7&r=0&o=5&pid=1.7",
|
||||
"Content": "Harry POTTER JE SUIS TON PERE",
|
||||
"Charac": "Sirius Black",
|
||||
"TitleSrc": "Harry Potter",
|
||||
"Langue": "fr",
|
||||
"UserProposition": "demo",
|
||||
"DateSrc": "2001-01-01",
|
||||
"Like": 20
|
||||
},
|
||||
{
|
||||
"Id": 2,
|
||||
"ImgPath": "https://tse2.mm.bing.net/th/id/OIP.zR4rzkK7q2wCcNwZd6jjegHaIC?w=163&h=180&c=7&r=0&o=5&pid=1.7",
|
||||
"Content": "'Une autre citation'",
|
||||
"Charac": "Un personnage",
|
||||
"TitleSrc": "Un super film",
|
||||
"Langue": "fr",
|
||||
"DateSrc": "2002-02-02",
|
||||
"Like": 0,
|
||||
"UserProposition": "exploit"
|
||||
},
|
||||
{
|
||||
"Id": 1,
|
||||
"ImgPath": "https://tse2.mm.bing.net/th/id/OIP.MMpXBB5RDRYQm05FJmevGAHaKl?w=137&h=195&c=7&r=0&o=5&pid=1.7",
|
||||
"Content": "Harry POTTER JE SUIS TON PERE",
|
||||
"Charac": "Sirius Black",
|
||||
"TitleSrc": "Harry Potter",
|
||||
"Langue": "fr",
|
||||
"UserProposition": "demo",
|
||||
"DateSrc": "2001-01-01",
|
||||
"Like": 20
|
||||
},
|
||||
{
|
||||
"Id": 2,
|
||||
"ImgPath": "https://tse2.mm.bing.net/th/id/OIP.zR4rzkK7q2wCcNwZd6jjegHaIC?w=163&h=180&c=7&r=0&o=5&pid=1.7",
|
||||
"Content": "'Une autre citation'",
|
||||
"Charac": "Un personnage",
|
||||
"TitleSrc": "Un super film",
|
||||
"Langue": "fr",
|
||||
"DateSrc": "2002-02-02",
|
||||
"Like": 0,
|
||||
"UserProposition": "exploit"
|
||||
},
|
||||
{
|
||||
"Id": 1,
|
||||
"ImgPath": "https://tse2.mm.bing.net/th/id/OIP.MMpXBB5RDRYQm05FJmevGAHaKl?w=137&h=195&c=7&r=0&o=5&pid=1.7",
|
||||
"Content": "Harry POTTER JE SUIS TON PERE",
|
||||
"Charac": "Sirius Black",
|
||||
"TitleSrc": "Harry Potter",
|
||||
"Langue": "fr",
|
||||
"UserProposition": "demo",
|
||||
"DateSrc": "2001-01-01",
|
||||
"Like": 20
|
||||
},
|
||||
{
|
||||
"Id": 2,
|
||||
"ImgPath": "https://tse2.mm.bing.net/th/id/OIP.zR4rzkK7q2wCcNwZd6jjegHaIC?w=163&h=180&c=7&r=0&o=5&pid=1.7",
|
||||
"Content": "'Une autre citation'",
|
||||
"Charac": "Un personnage",
|
||||
"TitleSrc": "Un super film",
|
||||
"Langue": "fr",
|
||||
"DateSrc": "2002-02-02",
|
||||
"Like": 0,
|
||||
"UserProposition": "exploit"
|
||||
},
|
||||
{
|
||||
"Id": 1,
|
||||
"ImgPath": "https://tse2.mm.bing.net/th/id/OIP.MMpXBB5RDRYQm05FJmevGAHaKl?w=137&h=195&c=7&r=0&o=5&pid=1.7",
|
||||
"Content": "Harry POTTER JE SUIS TON PERE",
|
||||
"Charac": "Sirius Black",
|
||||
"TitleSrc": "Harry Potter",
|
||||
"Langue": "fr",
|
||||
"UserProposition": "demo",
|
||||
"DateSrc": "2001-01-01",
|
||||
"Like": 20
|
||||
},
|
||||
{
|
||||
"Id": 2,
|
||||
"ImgPath": "https://tse2.mm.bing.net/th/id/OIP.zR4rzkK7q2wCcNwZd6jjegHaIC?w=163&h=180&c=7&r=0&o=5&pid=1.7",
|
||||
"Content": "'Une autre citation'",
|
||||
"Charac": "Un personnage",
|
||||
"TitleSrc": "Un super film",
|
||||
"Langue": "fr",
|
||||
"DateSrc": "2002-02-02",
|
||||
"Like": 0,
|
||||
"UserProposition": "exploit"
|
||||
}
|
||||
]
|
Loading…
Reference in new issue