44 lines
1.4 KiB
C#
44 lines
1.4 KiB
C#
|
using System.Threading.Tasks;
|
|||
|
using Fluxor;
|
|||
|
using Microsoft.AspNetCore.Components.WebAssembly.Authentication;
|
|||
|
using Refit;
|
|||
|
using Start.Shared;
|
|||
|
using Start.Shared.Api;
|
|||
|
using Start.Client.Store.Features.CurrentContainer;
|
|||
|
using Start.Client.Store.Features.ContainersList;
|
|||
|
|
|||
|
namespace Start.Client.Store.Features.CreateContainer {
|
|||
|
public class CreateContainerEffects {
|
|||
|
public IBookmarkContainersApi BookmarkContainersApi { get; set; }
|
|||
|
|
|||
|
public CreateContainerEffects(IBookmarkContainersApi bookmarkContainersApi) {
|
|||
|
this.BookmarkContainersApi = bookmarkContainersApi;
|
|||
|
}
|
|||
|
|
|||
|
[EffectMethod]
|
|||
|
public async Task SubmitCreateContainer(SubmitCreateContainerAction action,
|
|||
|
IDispatcher dispatch) {
|
|||
|
dispatch.Dispatch(new FetchCreateContainerAction());
|
|||
|
|
|||
|
try {
|
|||
|
ApiResponse<BookmarkContainerDto?> apiResponse = await this.BookmarkContainersApi
|
|||
|
.CreateBookmarkContainer(action.NewContainer.Title);
|
|||
|
|
|||
|
BookmarkContainerDto? container = apiResponse.Content;
|
|||
|
|
|||
|
if (container == null)
|
|||
|
dispatch.Dispatch(new ErrorFetchingCreateContainerAction(
|
|||
|
"Failed to create container"));
|
|||
|
else {
|
|||
|
dispatch.Dispatch(new AddContainerToListAction(container));
|
|||
|
dispatch.Dispatch(new ReceivedCreateContainerAction());
|
|||
|
dispatch.Dispatch(new LoadCurrentContainerAction(
|
|||
|
container.BookmarkContainerId));
|
|||
|
}
|
|||
|
} catch (AccessTokenNotAvailableException e) {
|
|||
|
e.Redirect();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|