You've already forked linux-packaging-mono
Imported Upstream version 6.4.0.137
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
parent
e9207cf623
commit
ef583813eb
16
external/illinker-test-assets/wasm/Newtonsoft/Pages/Counter.cshtml
vendored
Normal file
16
external/illinker-test-assets/wasm/Newtonsoft/Pages/Counter.cshtml
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
@page "/counter"
|
||||
|
||||
<h1>Counter</h1>
|
||||
|
||||
<p>Current count: @currentCount</p>
|
||||
|
||||
<button class="btn btn-primary" onclick="@IncrementCount">Click me</button>
|
||||
|
||||
@functions {
|
||||
int currentCount = 0;
|
||||
|
||||
void IncrementCount()
|
||||
{
|
||||
currentCount++;
|
||||
}
|
||||
}
|
66
external/illinker-test-assets/wasm/Newtonsoft/Pages/FetchData.cshtml
vendored
Normal file
66
external/illinker-test-assets/wasm/Newtonsoft/Pages/FetchData.cshtml
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
@page "/fetchdata"
|
||||
@inject HttpClient Http
|
||||
@using Newtonsoft.Json
|
||||
|
||||
<h1>Weather forecast</h1>
|
||||
|
||||
<p>This component demonstrates fetching data from the server.</p>
|
||||
|
||||
@if (forecasts == null)
|
||||
{
|
||||
<p><em>Loading...</em></p>
|
||||
}
|
||||
else
|
||||
{
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<th>Temp. (C)</th>
|
||||
<th>Temp. (F)</th>
|
||||
<th>Summary</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var forecast in forecasts)
|
||||
{
|
||||
<tr>
|
||||
<td>@forecast.Date.ToShortDateString()</td>
|
||||
<td>@forecast.TemperatureC</td>
|
||||
<td>@forecast.TemperatureF</td>
|
||||
<td>@forecast.Summary</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
}
|
||||
|
||||
@functions {
|
||||
WeatherForecast[] forecasts;
|
||||
String serialized;
|
||||
|
||||
protected override async Task OnInitAsync()
|
||||
{
|
||||
var text = await Http.GetStringAsync ("sample-data/weather.json");
|
||||
forecasts = JsonConvert.DeserializeObject<List<WeatherForecast>>(text).Append (
|
||||
new WeatherForecast {
|
||||
Date = DateTime.Parse ("08/18/2018 07:22:16"),
|
||||
TemperatureC = -28,
|
||||
TemperatureF = -18,
|
||||
Summary = "Why are temperatures ints??"
|
||||
}).ToArray();
|
||||
|
||||
serialized = JsonConvert.SerializeObject (forecasts);
|
||||
}
|
||||
|
||||
class WeatherForecast
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
|
||||
public int TemperatureC { get; set; }
|
||||
|
||||
public int TemperatureF { get; set; }
|
||||
|
||||
public string Summary { get; set; }
|
||||
}
|
||||
}
|
7
external/illinker-test-assets/wasm/Newtonsoft/Pages/Index.cshtml
vendored
Normal file
7
external/illinker-test-assets/wasm/Newtonsoft/Pages/Index.cshtml
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
@page "/"
|
||||
|
||||
<h1>Hello, world!</h1>
|
||||
|
||||
Welcome to your new app.
|
||||
|
||||
<SurveyPrompt Title="How is Blazor working for you?" />
|
1
external/illinker-test-assets/wasm/Newtonsoft/Pages/_ViewImports.cshtml
vendored
Normal file
1
external/illinker-test-assets/wasm/Newtonsoft/Pages/_ViewImports.cshtml
vendored
Normal file
@@ -0,0 +1 @@
|
||||
@layout MainLayout
|
Reference in New Issue
Block a user