Compare commits
2 Commits
5b862eeb88
...
47069f5ece
Author | SHA1 | Date | |
---|---|---|---|
47069f5ece | |||
b147439065 |
@ -3,7 +3,7 @@ WORKDIR /app
|
||||
EXPOSE 80
|
||||
EXPOSE 443
|
||||
|
||||
FROM node:alpine as build-deps
|
||||
FROM node:20-alpine as build-deps
|
||||
WORKDIR /src
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm i -g gulp-cli
|
||||
|
16
OliverBooth/Services/IReadingListService.cs
Normal file
16
OliverBooth/Services/IReadingListService.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using OliverBooth.Data.Web;
|
||||
|
||||
namespace OliverBooth.Services;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a service which fetches books from the reading list.
|
||||
/// </summary>
|
||||
public interface IReadingListService
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the books in the reading list with the specified state.
|
||||
/// </summary>
|
||||
/// <param name="state">The state.</param>
|
||||
/// <returns>A collection of books in the specified state.</returns>
|
||||
IReadOnlyCollection<IBook> GetBooks(BookState state);
|
||||
}
|
31
OliverBooth/Services/ReadingListService.cs
Normal file
31
OliverBooth/Services/ReadingListService.cs
Normal file
@ -0,0 +1,31 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using OliverBooth.Data.Web;
|
||||
|
||||
namespace OliverBooth.Services;
|
||||
|
||||
internal sealed class ReadingListService : IReadingListService
|
||||
{
|
||||
private readonly IDbContextFactory<WebContext> _dbContextFactory;
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ReadingListService" /> class.
|
||||
/// </summary>
|
||||
/// <param name="dbContextFactory">The database context factory.</param>
|
||||
public ReadingListService(IDbContextFactory<WebContext> dbContextFactory)
|
||||
{
|
||||
_dbContextFactory = dbContextFactory;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the books in the reading list with the specified state.
|
||||
/// </summary>
|
||||
/// <param name="state">The state.</param>
|
||||
/// <returns>A collection of books in the specified state.</returns>
|
||||
public IReadOnlyCollection<IBook> GetBooks(BookState state)
|
||||
{
|
||||
using WebContext context = _dbContextFactory.CreateDbContext();
|
||||
return state == (BookState)(-1)
|
||||
? context.Books.ToArray()
|
||||
: context.Books.Where(b => b.State == state).ToArray();
|
||||
}
|
||||
}
|
@ -2,6 +2,7 @@
|
||||
"compilerOptions": {
|
||||
"lib": ["ES2022", "DOM"],
|
||||
"target": "ES2022",
|
||||
"moduleResolution": "nodenext"
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user