Move the containter list into it's own component
This commit is contained in:
parent
93888369ce
commit
ad1552e343
4 changed files with 112 additions and 74 deletions
|
|
@ -7,7 +7,7 @@
|
|||
@inject IDispatcher dispatch
|
||||
@inject IState<RootState> state
|
||||
|
||||
<div class="activeBookmarkContainer">
|
||||
<div class="activeBookmarkContainer" role="tabpanel">
|
||||
@if (this.state.Value.CurrentContainerState.ErrorMessage != null)
|
||||
{
|
||||
<Alert Type="Alert.AlertType.Error">
|
||||
|
|
|
|||
77
Start/Client/Components/ContainerList.razor
Normal file
77
Start/Client/Components/ContainerList.razor
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
@using Fluxor
|
||||
@using Start.Client.Store.State
|
||||
@using Start.Client.Store.Features.CurrentContainer
|
||||
@using Start.Client.Store.Features.CreateContainer
|
||||
@using Start.Client.Store.Features.DeleteContainer
|
||||
@using Start.Client.Store.Features.Sidebar
|
||||
|
||||
@inherits Fluxor.Blazor.Web.Components.FluxorComponent
|
||||
|
||||
@inject Blazored.LocalStorage.ILocalStorageService localStorage
|
||||
@inject IState<RootState> state
|
||||
@inject IDispatcher dispatch
|
||||
|
||||
<div id="containerTabStrip" class="px-2">
|
||||
<button id="menuButton" class="btn btn-link" @onclick="this.ShowSidebar">
|
||||
<i class="icon icon-menu"></i>
|
||||
</button>
|
||||
<ul class="containerList tab" role="tablist">
|
||||
@foreach (BookmarkContainerDto container in this.state.Value.ContainerListState.Containers)
|
||||
{
|
||||
string itemClasses = "tab-item";
|
||||
if (container.BookmarkContainerId == this.state.Value.CurrentContainerState.Container?.BookmarkContainerId)
|
||||
itemClasses += " active";
|
||||
|
||||
<li class="@itemClasses" role="tab">
|
||||
<a @onclick="() => OnContainerClicked(container.BookmarkContainerId)">
|
||||
@container.Title
|
||||
</a>
|
||||
@if (this.state.Value.EditMode)
|
||||
{
|
||||
<button class="btn btn-clear" aria-label="Delete"
|
||||
@onclick="() => this.OnDeleteContainerClicked(container.BookmarkContainerId)">
|
||||
</button>
|
||||
}
|
||||
</li>
|
||||
}
|
||||
@if (this.state.Value.EditMode)
|
||||
{
|
||||
<li class="tab-item tab-action">
|
||||
<button @onclick="OnCreateContainerClicked" class="btn btn-link tooltip tooltip-left"
|
||||
title="Create New Container" aria-label="Create New Container"
|
||||
data-tooltip="Create Container">
|
||||
+
|
||||
</button>
|
||||
</li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
protected void ShowSidebar()
|
||||
{
|
||||
dispatch.Dispatch(new ShowSidebarAction());
|
||||
}
|
||||
|
||||
protected void OnContainerClicked(int bookmarkContainerId) {
|
||||
dispatch.Dispatch(new LoadCurrentContainerAction(bookmarkContainerId));
|
||||
}
|
||||
|
||||
protected void OnCreateContainerClicked()
|
||||
{
|
||||
dispatch.Dispatch(new ShowCreateContainerFormAction());
|
||||
}
|
||||
|
||||
protected void OnDeleteContainerClicked(int bookmarkContainerId)
|
||||
{
|
||||
BookmarkContainerDto? bookmarkContainerToDelete = this.state.Value.ContainerListState
|
||||
.Containers
|
||||
?.FirstOrDefault(bc => bc.BookmarkContainerId == bookmarkContainerId);
|
||||
|
||||
if (bookmarkContainerToDelete == null)
|
||||
return;
|
||||
|
||||
this.dispatch.Dispatch(new ShowDeleteContainerFormAction(
|
||||
bookmarkContainerToDelete.BookmarkContainerId, bookmarkContainerToDelete.Title));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue