Neighbourhood.omg.lol/Components/NewPicDialog.razor

127 lines
3.6 KiB
Text
Raw Normal View History

2024-06-06 05:20:09 +00:00
@inject IJSRuntime JS
@inject State State
2024-07-16 00:45:33 +00:00
@inject ApiService api
@inject NavigationManager navigationManager
2024-06-06 05:20:09 +00:00
<div class="overlay @(Active ? "active" : string.Empty)" data-ui="#@id"></div>
<dialog id="@id" class="@(Active ? "active" : string.Empty)" open="@Active">
2024-06-06 05:20:09 +00:00
<h5>Share a picture</h5>
<div class="row">
2024-06-07 04:25:21 +00:00
<button @onclick="PicFromMedia"><i class="fa-solid fa-image"></i> Select a picture</button>
<button @onclick="PicFromPhoto"><i class="fa-solid fa-camera"></i> Take a photo</button>
</div>
<div class="row">
@if(Base64File != null && FileSize != null){
2024-06-07 04:25:21 +00:00
<img class="extra" src="@Base64Url">
2024-06-06 05:20:09 +00:00
<small>
@FileContentType (@formatSizeUnits(FileSize))
2024-06-06 05:20:09 +00:00
</small>
}
</div>
<div class="row">
<div class="field textarea label border max">
<InputTextArea @bind-Value="Description"></InputTextArea>
<label>Description</label>
</div>
</div>
<nav class="right-align no-space">
<button class="transparent link" data-ui="#@id" disabled="@loading">Cancel</button>
<button @onclick="PostPic" disabled="@loading">
@if (loading) {
<span>Uploading...</span>
}
else {
<i class="fa-solid fa-cloud-arrow-up"></i> <span>Upload</span>
}
</button>
</nav>
</dialog>
@code {
2024-06-07 04:25:21 +00:00
// private IBrowserFile? File { get; set; }
[Parameter]
public string? Base64File { get; set; }
[Parameter]
public long? FileSize { get; set; }
[Parameter]
public string? FileContentType { get; set; }
[Parameter]
public string? Description { get; set; }
[Parameter]
2024-07-02 00:13:52 +00:00
public string? id { get; set; }
[Parameter]
public bool Active { get; set; }
private bool loading = false;
2024-06-07 04:25:21 +00:00
private FileResult? File { get; set; }
private string? Base64Url {
get {
if (FileContentType == null || Base64File == null) return null;
2024-06-07 04:25:21 +00:00
return $"data:{FileContentType};base64,{Base64File}";
2024-06-07 04:25:21 +00:00
}
}
2024-06-06 05:20:09 +00:00
public async Task PostPic() {
loading = true;
await InvokeAsync(StateHasChanged);
2024-07-02 00:13:52 +00:00
PutPicResponseData? response = await api.PutPic(State.SelectedAddressName!, Base64File!);
2024-06-06 05:20:09 +00:00
if(!string.IsNullOrEmpty(Description) && response != null && !string.IsNullOrEmpty(response.Id)) {
2024-07-02 00:13:52 +00:00
await api.PostPicDescription(State.SelectedAddressName!, response.Id, Description);
2024-06-06 05:20:09 +00:00
await State.RefreshPics();
2024-06-24 04:52:45 +00:00
State.SendRefresh();
2024-06-06 05:20:09 +00:00
await InvokeAsync(StateHasChanged);
}
await JS.InvokeVoidAsync("ui", "#" + id);
// clear input
File = null;
Description = string.Empty;
loading = false;
await InvokeAsync(StateHasChanged);
}
2024-06-07 04:25:21 +00:00
private string formatSizeUnits(long? bytes){
if(bytes == null) return "?? bytes";
2024-06-06 05:20:09 +00:00
string formatted = "0 bytes";
if (bytes >= 1073741824) { formatted = $"{(bytes / 1073741824):.##} GB"; }
else if (bytes >= 1048576) { formatted = $"{(bytes / 1048576):.##} MB"; }
else if (bytes >= 1024) { formatted = $"{(bytes / 1024):.##} KB"; }
else if (bytes > 1) { formatted = $"{bytes} bytes"; }
else if (bytes == 1) { formatted = $"{bytes} byte"; }
return formatted;
}
2024-06-07 04:25:21 +00:00
2024-06-07 04:25:21 +00:00
private async Task PicFromMedia(EventArgs e) {
File = await MediaPicker.Default.PickPhotoAsync();
await PopulateFileDetails();
}
private async Task PicFromPhoto(EventArgs e) {
File = await MediaPicker.Default.CapturePhotoAsync();
await PopulateFileDetails();
}
private async Task PopulateFileDetails() {
2024-07-02 00:13:52 +00:00
if (File == null)
{
FileContentType = null;
FileSize = null;
Base64File = null;
}
else
{
FileContentType = File.ContentType;
FileSize = await Utilities.FileSize(File);
Base64File = await Utilities.Base64FromFile(File);
}
2024-06-07 04:25:21 +00:00
}
2024-06-06 05:20:09 +00:00
}