37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
@page "/"
|
|
@page "/home"
|
|
@page "/status-map"
|
|
|
|
<MseSampler SampleMult="2" E_Updated="RefreshData"></MseSampler>
|
|
<div class="row">
|
|
@if (ListMSE == null || ListMSE.Count == 0)
|
|
{
|
|
@for (int i = 0; i < 10; i++)
|
|
{
|
|
<div class="col-6 col-sm-6 col-md-4 col-lg-3 col-xl-2 mb-2 px-1 bloccoMacc">
|
|
<MachineBlock></MachineBlock>
|
|
</div>
|
|
}
|
|
}
|
|
else
|
|
{
|
|
@if (Width < 640)
|
|
{
|
|
|
|
<div class="d-flex justify-content-center">
|
|
<label class="form-check-label me-2" for="">Nascondi dettagli</label>
|
|
<div class="form-check form-switch">
|
|
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckDefault" @bind="ShowCard">
|
|
<label class="form-check-label" for="flexSwitchCheckDefault">Mostra dettagli</label>
|
|
</div>
|
|
</div>
|
|
}
|
|
@foreach (var item in ListMSE)
|
|
{
|
|
<div class="col-6 col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-2 px-1 bloccoMacc">
|
|
<MachineBlock RecMSE="@item" FullMode="true" Width="@Width" Height="@Height" showCard="@ShowCard"></MachineBlock>
|
|
</div>
|
|
}
|
|
}
|
|
</div>
|