Compare commits

...

3 Commits

Author SHA1 Message Date
eee2c201fa
Store when barcode was last scanned
All checks were successful
Docker Image CI / build (push) Successful in 14m3s
2024-10-05 19:15:21 +01:00
68eff11fdc
Update dependencies 2024-10-05 17:55:58 +01:00
485f58c61d
Serve fonts locally 2024-10-05 17:41:24 +01:00
10 changed files with 33 additions and 16 deletions

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.7-labs
FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build1
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build1
WORKDIR /src
COPY ./.config ./
@ -10,7 +10,7 @@ WORKDIR Groceries
COPY ./Groceries/libman.json ./
RUN dotnet libman restore
FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build2
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build2
WORKDIR /src
COPY ./Groceries.sln ./
@ -23,7 +23,7 @@ COPY . ./
COPY --from=build1 /src ./
RUN dotnet publish --no-restore --output /out
FROM mcr.microsoft.com/dotnet/aspnet:9.0-preview-alpine-composite AS base
FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine-composite AS base
WORKDIR /groceries
COPY --from=build2 /out .

View File

@ -33,6 +33,9 @@ public class AppDbContext : DbContext
entity.Property(e => e.Format)
.HasDefaultValueSql();
entity.Property(e => e.LastScannedAt)
.HasDefaultValueSql();
});
modelBuilder.Entity<ItemPurchase>(entity =>

View File

@ -12,7 +12,7 @@
<PackageReference Include="DbUp-PostgreSQL" Version="5.0.40" />
<PackageReference Include="EFCore.NamingConventions" Version="8.0.3" />
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.4" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.8" />
</ItemGroup>
<ItemGroup>

View File

@ -12,4 +12,5 @@ public class ItemBarcode
public Guid ItemId { get; init; }
public long BarcodeData { get; init; }
public string Format { get; init; }
public DateTime LastScannedAt { get; set; }
}

View File

@ -0,0 +1,7 @@
ALTER TABLE item_barcodes
ADD COLUMN IF NOT EXISTS last_scanned_at timestamptz NOT NULL DEFAULT current_timestamp;
UPDATE item_barcodes
SET last_scanned_at = created_at
FROM item_purchases
WHERE item_barcodes.item_id = item_purchases.item_id AND is_last_purchase = true;

View File

@ -9,6 +9,7 @@
<meta name="view-transition" content="same-origin" />
<meta name="turbo-prefetch" content="false" />
<link rel="stylesheet" type="text/css" href="@Assets["lib/inter/index.css"]" data-turbo-track="reload" />
<link rel="stylesheet" type="text/css" href="@Assets["css/main.css"]" data-turbo-track="reload" />
<ImportMap />

View File

@ -76,7 +76,16 @@ public class TransactionsController : Controller
.FirstOrDefaultAsync();
item ??= new Item(id: default);
item.Barcodes.Add(new ItemBarcode(item.Id, barcodeData.Value, barcodeFormat));
var barcode = new ItemBarcode(item.Id, barcodeData.Value, barcodeFormat);
item.Barcodes.Add(barcode);
if (item.Id != default)
{
barcode.LastScannedAt = DateTime.UtcNow;
dbContext.Update(barcode);
await dbContext.SaveChangesAsync();
}
// TODO: Fix `MinValue` hack - view models?
transactionItem = new TransactionItem(item.Id, decimal.MinValue, int.MinValue) { Item = item };

View File

@ -3,7 +3,11 @@
"defaultProvider": "unpkg",
"libraries": [
{
"library": "@hotwired/turbo@8.0.4",
"library": "@fontsource-variable/inter@5.1.0",
"destination": "wwwroot/lib/inter/"
},
{
"library": "@hotwired/turbo@8.0.10",
"destination": "wwwroot/lib/hotwired/turbo/"
},
{

View File

@ -1,16 +1,8 @@
@import url("https://rsms.me/inter/inter.css");
:root {
font-family: "Inter", sans-serif;
font-family: "Inter Variable", sans-serif;
color-scheme: light;
}
@supports (font-variation-settings: normal) {
:root {
font-family: "Inter var", sans-serif;
}
}
* {
margin: 0;
padding: 0;

View File

@ -13,7 +13,7 @@ export default class ModalController extends Controller {
if (!this.element.open) {
return;
}
if (event.type === "turbo:submit-end" && (event.detail.formSubmission.method === "get" || !event.detail.success)) {
if (event.type === "turbo:submit-end" && (event.detail.formSubmission.method === "GET" || !event.detail.success)) {
// Don't close modal if form method was GET or submission failed
return;
}