Compare commits
19 Commits
1fa1fc4941
...
agent/hex/
| Author | SHA1 | Date | |
|---|---|---|---|
| a5a9f42d06 | |||
| 42285c5dac | |||
| 9cd619b5ee | |||
| ddae95767f | |||
| 15187cab65 | |||
| 9112f78641 | |||
| 57157ad947 | |||
| a2707e02ee | |||
| 9192ece040 | |||
| fa4a4c21b3 | |||
| f2d9b7f455 | |||
| 808d5f909d | |||
| b7e61fab8a | |||
| 5ede6a8eb6 | |||
| e56aa3ba39 | |||
| f70495a85c | |||
| bb35ed1eab | |||
| 1f03606468 | |||
| 1b4fc22f59 |
@@ -42,39 +42,3 @@ jobs:
|
|||||||
- name: Build frontend
|
- name: Build frontend
|
||||||
run: npm run build
|
run: npm run build
|
||||||
working-directory: ./frontend
|
working-directory: ./frontend
|
||||||
|
|
||||||
deploy-dev:
|
|
||||||
needs: build-test
|
|
||||||
if: gitea.event_name == 'push'
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Deploy dev
|
|
||||||
run: |
|
|
||||||
echo "${{ secrets.DEV_DEPLOY_SSH_KEY }}" > /tmp/dev_key
|
|
||||||
chmod 600 /tmp/dev_key
|
|
||||||
ssh -i /tmp/dev_key -o StrictHostKeyChecking=no \
|
|
||||||
${{ secrets.DEV_DEPLOY_USER }}@${{ secrets.DEV_DEPLOY_HOST }} \
|
|
||||||
"${{ secrets.DEV_DEPLOY_PATH }}/deploy.sh"
|
|
||||||
|
|
||||||
notify-success:
|
|
||||||
needs: [build-test, deploy-dev]
|
|
||||||
if: success() && gitea.event_name == 'push'
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Notify Slack success
|
|
||||||
run: |
|
|
||||||
curl -X POST -H 'Content-type: application/json' \
|
|
||||||
--data "{\"text\":\"✅ Extrudex dev deployed successfully from dev branch.\"}" \
|
|
||||||
"${{ secrets.SLACK_WEBHOOK_URL }}"
|
|
||||||
|
|
||||||
notify-failure:
|
|
||||||
needs: [build-test, deploy-dev]
|
|
||||||
if: failure()
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Notify Slack failure
|
|
||||||
run: |
|
|
||||||
curl -X POST -H 'Content-type: application/json' \
|
|
||||||
--data "{\"text\":\"🚨 Extrudex dev pipeline failed. Check Gitea Actions for details.\"}" \
|
|
||||||
"${{ secrets.SLACK_WEBHOOK_URL }}"
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
using Extrudex.API.DTOs;
|
using Extrudex.API.DTOs;
|
||||||
using Extrudex.API.DTOs.Filaments;
|
using Extrudex.API.DTOs.Filaments;
|
||||||
using Extrudex.Domain.Entities;
|
using Extrudex.Domain.Entities;
|
||||||
|
using Extrudex.Domain.Interfaces;
|
||||||
using Extrudex.Infrastructure.Data;
|
using Extrudex.Infrastructure.Data;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
@@ -17,16 +18,22 @@ namespace Extrudex.API.Controllers;
|
|||||||
public class FilamentsController : ControllerBase
|
public class FilamentsController : ControllerBase
|
||||||
{
|
{
|
||||||
private readonly ExtrudexDbContext _dbContext;
|
private readonly ExtrudexDbContext _dbContext;
|
||||||
|
private readonly ILowStockDetector _lowStockDetector;
|
||||||
private readonly ILogger<FilamentsController> _logger;
|
private readonly ILogger<FilamentsController> _logger;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="FilamentsController"/> class.
|
/// Initializes a new instance of the <see cref="FilamentsController"/> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="dbContext">The database context for data access.</param>
|
/// <param name="dbContext">The database context for data access.</param>
|
||||||
|
/// <param name="lowStockDetector">The low-stock detection service for filament alerts.</param>
|
||||||
/// <param name="logger">The logger for diagnostic output.</param>
|
/// <param name="logger">The logger for diagnostic output.</param>
|
||||||
public FilamentsController(ExtrudexDbContext dbContext, ILogger<FilamentsController> logger)
|
public FilamentsController(
|
||||||
|
ExtrudexDbContext dbContext,
|
||||||
|
ILowStockDetector lowStockDetector,
|
||||||
|
ILogger<FilamentsController> logger)
|
||||||
{
|
{
|
||||||
_dbContext = dbContext;
|
_dbContext = dbContext;
|
||||||
|
_lowStockDetector = lowStockDetector;
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,7 +102,7 @@ public class FilamentsController : ControllerBase
|
|||||||
.OrderByDescending(s => s.CreatedAt)
|
.OrderByDescending(s => s.CreatedAt)
|
||||||
.Skip((pageNumber - 1) * pageSize)
|
.Skip((pageNumber - 1) * pageSize)
|
||||||
.Take(pageSize)
|
.Take(pageSize)
|
||||||
.Select(s => MapToFilamentResponse(s))
|
.Select(s => MapToFilamentResponse(s, _lowStockDetector))
|
||||||
.ToListAsync();
|
.ToListAsync();
|
||||||
|
|
||||||
var response = new PagedResponse<FilamentResponse>
|
var response = new PagedResponse<FilamentResponse>
|
||||||
@@ -136,7 +143,7 @@ public class FilamentsController : ControllerBase
|
|||||||
return NotFound(new { error = $"Filament with ID '{id}' not found." });
|
return NotFound(new { error = $"Filament with ID '{id}' not found." });
|
||||||
}
|
}
|
||||||
|
|
||||||
return Ok(MapToFilamentResponse(spool));
|
return Ok(MapToFilamentResponse(spool, _lowStockDetector));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -211,7 +218,7 @@ public class FilamentsController : ControllerBase
|
|||||||
if (entity.MaterialModifierId.HasValue)
|
if (entity.MaterialModifierId.HasValue)
|
||||||
await _dbContext.Entry(entity).Reference(s => s.MaterialModifier).LoadAsync();
|
await _dbContext.Entry(entity).Reference(s => s.MaterialModifier).LoadAsync();
|
||||||
|
|
||||||
var response = MapToFilamentResponse(entity);
|
var response = MapToFilamentResponse(entity, _lowStockDetector);
|
||||||
return CreatedAtAction(nameof(GetFilament), new { id = entity.Id }, response);
|
return CreatedAtAction(nameof(GetFilament), new { id = entity.Id }, response);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -292,7 +299,97 @@ public class FilamentsController : ControllerBase
|
|||||||
if (entity.MaterialModifierId.HasValue)
|
if (entity.MaterialModifierId.HasValue)
|
||||||
await _dbContext.Entry(entity).Reference(s => s.MaterialModifier).LoadAsync();
|
await _dbContext.Entry(entity).Reference(s => s.MaterialModifier).LoadAsync();
|
||||||
|
|
||||||
return Ok(MapToFilamentResponse(entity));
|
return Ok(MapToFilamentResponse(entity, _lowStockDetector));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets only the filament spools that are flagged as low stock.
|
||||||
|
/// A spool is considered low stock when its remaining weight percentage
|
||||||
|
/// is at or below the configured threshold.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>A list of low-stock filament spools with alert metadata.</returns>
|
||||||
|
/// <response code="200">Returns the list of low-stock filament spools.</response>
|
||||||
|
[HttpGet("low-stock")]
|
||||||
|
[ProducesResponseType(typeof(List<FilamentResponse>), StatusCodes.Status200OK)]
|
||||||
|
public async Task<ActionResult<List<FilamentResponse>>> GetLowStockFilaments()
|
||||||
|
{
|
||||||
|
_logger.LogDebug("Getting low-stock filaments (threshold: {Threshold}%)",
|
||||||
|
_lowStockDetector.LowStockThresholdPercent);
|
||||||
|
|
||||||
|
var spools = await _dbContext.Spools
|
||||||
|
.Include(s => s.MaterialBase)
|
||||||
|
.Include(s => s.MaterialFinish)
|
||||||
|
.Include(s => s.MaterialModifier)
|
||||||
|
.Where(s => s.IsActive)
|
||||||
|
.OrderByDescending(s => s.CreatedAt)
|
||||||
|
.ToListAsync();
|
||||||
|
|
||||||
|
var lowStockItems = spools
|
||||||
|
.Where(s => _lowStockDetector.IsLowStock(s.WeightRemainingGrams, s.WeightTotalGrams))
|
||||||
|
.Select(s => MapToFilamentResponse(s, _lowStockDetector))
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
return Ok(lowStockItems);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Deletes a filament spool by its unique identifier.
|
||||||
|
/// If the spool has associated print jobs, the deletion is rejected with a 409 Conflict
|
||||||
|
/// to preserve COGS and print history — the caller should archive the spool instead.
|
||||||
|
/// Associated filament usage records are removed before the spool is deleted.
|
||||||
|
/// AMS slots referencing this spool will have their SpoolId set to null by the database.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="id">The unique identifier of the filament spool to delete.</param>
|
||||||
|
/// <returns>No content on successful deletion.</returns>
|
||||||
|
/// <response code="204">The filament spool was successfully deleted.</response>
|
||||||
|
/// <response code="404">If the filament spool with the given ID is not found.</response>
|
||||||
|
/// <response code="409">If the spool has associated print jobs and cannot be deleted.</response>
|
||||||
|
[HttpDelete("{id:guid}")]
|
||||||
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
||||||
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
||||||
|
[ProducesResponseType(StatusCodes.Status409Conflict)]
|
||||||
|
public async Task<IActionResult> DeleteFilament(Guid id)
|
||||||
|
{
|
||||||
|
_logger.LogInformation("Deleting filament {Id}", id);
|
||||||
|
|
||||||
|
var entity = await _dbContext.Spools.FindAsync(id);
|
||||||
|
if (entity is null)
|
||||||
|
{
|
||||||
|
_logger.LogWarning("Filament {Id} not found for deletion", id);
|
||||||
|
return NotFound(new { error = $"Filament with ID '{id}' not found." });
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check for associated print jobs — these cannot be orphaned
|
||||||
|
var hasPrintJobs = await _dbContext.PrintJobs.AnyAsync(pj => pj.SpoolId == id);
|
||||||
|
if (hasPrintJobs)
|
||||||
|
{
|
||||||
|
_logger.LogWarning(
|
||||||
|
"Cannot delete filament {Id}: associated print jobs exist. Suggest archiving instead.", id);
|
||||||
|
return Conflict(new
|
||||||
|
{
|
||||||
|
error = $"Cannot delete filament '{id}' because it has associated print jobs. " +
|
||||||
|
"Archive the filament instead to preserve print history and COGS data."
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove associated filament usage records (usage tracking data for this spool)
|
||||||
|
var usageRecords = await _dbContext.FilamentUsages
|
||||||
|
.Where(fu => fu.SpoolId == id)
|
||||||
|
.ToListAsync();
|
||||||
|
|
||||||
|
if (usageRecords.Count > 0)
|
||||||
|
{
|
||||||
|
_logger.LogInformation(
|
||||||
|
"Removing {Count} filament usage records for spool {Id}",
|
||||||
|
usageRecords.Count, id);
|
||||||
|
_dbContext.FilamentUsages.RemoveRange(usageRecords);
|
||||||
|
}
|
||||||
|
|
||||||
|
_dbContext.Spools.Remove(entity);
|
||||||
|
await _dbContext.SaveChangesAsync();
|
||||||
|
|
||||||
|
_logger.LogInformation("Filament {Id} deleted successfully", id);
|
||||||
|
return NoContent();
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Mapping helper ─────────────────────────────────────────
|
// ── Mapping helper ─────────────────────────────────────────
|
||||||
@@ -301,10 +398,12 @@ public class FilamentsController : ControllerBase
|
|||||||
/// Maps a Spool domain entity to a FilamentResponse DTO.
|
/// Maps a Spool domain entity to a FilamentResponse DTO.
|
||||||
/// Denormalizes material names for display convenience.
|
/// Denormalizes material names for display convenience.
|
||||||
/// Populates the QrCodeUrl for easy frontend access to the spool's QR code.
|
/// Populates the QrCodeUrl for easy frontend access to the spool's QR code.
|
||||||
|
/// Calculates low-stock status and remaining weight percentage.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="s">The spool entity to map.</param>
|
/// <param name="s">The spool entity to map.</param>
|
||||||
/// <returns>A FilamentResponse DTO with denormalized material names and QR code URL.</returns>
|
/// <param name="lowStockDetector">The low-stock detection service for computing alert flags.</param>
|
||||||
private static FilamentResponse MapToFilamentResponse(Spool s) => new()
|
/// <returns>A FilamentResponse DTO with denormalized material names, QR code URL, and low-stock metadata.</returns>
|
||||||
|
private static FilamentResponse MapToFilamentResponse(Spool s, ILowStockDetector lowStockDetector) => new()
|
||||||
{
|
{
|
||||||
Id = s.Id,
|
Id = s.Id,
|
||||||
MaterialBaseId = s.MaterialBaseId,
|
MaterialBaseId = s.MaterialBaseId,
|
||||||
@@ -327,6 +426,8 @@ public class FilamentsController : ControllerBase
|
|||||||
StorageLocation = s.StorageLocation,
|
StorageLocation = s.StorageLocation,
|
||||||
CreatedAt = s.CreatedAt,
|
CreatedAt = s.CreatedAt,
|
||||||
UpdatedAt = s.UpdatedAt,
|
UpdatedAt = s.UpdatedAt,
|
||||||
QrCodeUrl = $"/api/qr/spool/{s.Id}"
|
QrCodeUrl = $"/api/qr/spool/{s.Id}",
|
||||||
|
IsLowStock = lowStockDetector.IsLowStock(s.WeightRemainingGrams, s.WeightTotalGrams),
|
||||||
|
RemainingWeightPercent = lowStockDetector.GetRemainingWeightPercent(s.WeightRemainingGrams, s.WeightTotalGrams)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
117
backend/API/Controllers/UsageLogsController.cs
Normal file
117
backend/API/Controllers/UsageLogsController.cs
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
using Extrudex.API.DTOs.UsageLogs;
|
||||||
|
using Extrudex.Domain.Enums;
|
||||||
|
using Extrudex.Domain.Interfaces;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
|
namespace Extrudex.API.Controllers;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// API controller for recording and querying filament usage logs.
|
||||||
|
/// Usage logs provide a fine-grained audit trail of filament consumption
|
||||||
|
/// from printer integrations or manual input.
|
||||||
|
/// </summary>
|
||||||
|
[ApiController]
|
||||||
|
[Route("api/[controller]")]
|
||||||
|
[Produces("application/json")]
|
||||||
|
public class UsageLogsController : ControllerBase
|
||||||
|
{
|
||||||
|
private readonly IUsageLogService _usageLogService;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="UsageLogsController"/> class.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="usageLogService">The usage log service for recording and querying usage.</param>
|
||||||
|
public UsageLogsController(IUsageLogService usageLogService)
|
||||||
|
{
|
||||||
|
_usageLogService = usageLogService;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Records a new filament usage entry.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="request">The usage entry details.</param>
|
||||||
|
/// <returns>The created usage log entry.</returns>
|
||||||
|
[HttpPost]
|
||||||
|
[ProducesResponseType(typeof(UsageLogResponse), StatusCodes.Status201Created)]
|
||||||
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
||||||
|
public async Task<ActionResult<UsageLogResponse>> Create([FromBody] CreateUsageLogRequest request)
|
||||||
|
{
|
||||||
|
if (!Enum.TryParse<DataSource>(request.DataSource, ignoreCase: true, out var dataSource))
|
||||||
|
{
|
||||||
|
return BadRequest($"Invalid data source: '{request.DataSource}'. Valid values: Mqtt, Moonraker, Manual.");
|
||||||
|
}
|
||||||
|
|
||||||
|
var entry = await _usageLogService.RecordUsageAsync(
|
||||||
|
spoolId: request.SpoolId,
|
||||||
|
gramsUsed: request.GramsUsed,
|
||||||
|
dataSource: dataSource,
|
||||||
|
printerId: request.PrinterId,
|
||||||
|
printJobId: request.PrintJobId,
|
||||||
|
mmExtruded: request.MmExtruded,
|
||||||
|
usageTimestamp: request.UsageTimestamp,
|
||||||
|
notes: request.Notes
|
||||||
|
);
|
||||||
|
|
||||||
|
return CreatedAtAction(
|
||||||
|
nameof(GetBySpool),
|
||||||
|
new { spoolId = entry.SpoolId },
|
||||||
|
MapToResponse(entry));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets usage logs for a specific spool, ordered by most recent first.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="spoolId">The spool ID to filter by.</param>
|
||||||
|
/// <returns>A collection of usage log entries for the spool.</returns>
|
||||||
|
[HttpGet("spool/{spoolId:guid}")]
|
||||||
|
[ProducesResponseType(typeof(IEnumerable<UsageLogResponse>), StatusCodes.Status200OK)]
|
||||||
|
public async Task<ActionResult<IEnumerable<UsageLogResponse>>> GetBySpool(Guid spoolId)
|
||||||
|
{
|
||||||
|
var logs = await _usageLogService.GetBySpoolAsync(spoolId);
|
||||||
|
return Ok(logs.Select(MapToResponse));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets usage logs for a specific printer, ordered by most recent first.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="printerId">The printer ID to filter by.</param>
|
||||||
|
/// <returns>A collection of usage log entries for the printer.</returns>
|
||||||
|
[HttpGet("printer/{printerId:guid}")]
|
||||||
|
[ProducesResponseType(typeof(IEnumerable<UsageLogResponse>), StatusCodes.Status200OK)]
|
||||||
|
public async Task<ActionResult<IEnumerable<UsageLogResponse>>> GetByPrinter(Guid printerId)
|
||||||
|
{
|
||||||
|
var logs = await _usageLogService.GetByPrinterAsync(printerId);
|
||||||
|
return Ok(logs.Select(MapToResponse));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets usage logs for a specific print job, ordered by most recent first.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="printJobId">The print job ID to filter by.</param>
|
||||||
|
/// <returns>A collection of usage log entries for the print job.</returns>
|
||||||
|
[HttpGet("print-job/{printJobId:guid}")]
|
||||||
|
[ProducesResponseType(typeof(IEnumerable<UsageLogResponse>), StatusCodes.Status200OK)]
|
||||||
|
public async Task<ActionResult<IEnumerable<UsageLogResponse>>> GetByPrintJob(Guid printJobId)
|
||||||
|
{
|
||||||
|
var logs = await _usageLogService.GetByPrintJobAsync(printJobId);
|
||||||
|
return Ok(logs.Select(MapToResponse));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Maps a UsageLog domain entity to a UsageLogResponse DTO.
|
||||||
|
/// </summary>
|
||||||
|
private static UsageLogResponse MapToResponse(Domain.Entities.UsageLog log) => new()
|
||||||
|
{
|
||||||
|
Id = log.Id,
|
||||||
|
SpoolId = log.SpoolId,
|
||||||
|
PrinterId = log.PrinterId,
|
||||||
|
PrintJobId = log.PrintJobId,
|
||||||
|
GramsUsed = log.GramsUsed,
|
||||||
|
MmExtruded = log.MmExtruded,
|
||||||
|
UsageTimestamp = log.UsageTimestamp,
|
||||||
|
DataSource = log.DataSource.ToString(),
|
||||||
|
Notes = log.Notes,
|
||||||
|
CreatedAt = log.CreatedAt,
|
||||||
|
UpdatedAt = log.UpdatedAt
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -76,6 +76,19 @@ public class FilamentResponse
|
|||||||
/// Encodes a deep link to the spool's detail page.
|
/// Encodes a deep link to the spool's detail page.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string QrCodeUrl { get; set; } = string.Empty;
|
public string QrCodeUrl { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether this spool is flagged as low stock — remaining weight is at or
|
||||||
|
/// below the configured low-stock threshold percentage.
|
||||||
|
/// Useful for UI alerts and inventory dashboards.
|
||||||
|
/// </summary>
|
||||||
|
public bool IsLowStock { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Remaining filament weight as a percentage of total weight (0–100).
|
||||||
|
/// Rounded to one decimal place. Returns 0 if total weight is zero.
|
||||||
|
/// </summary>
|
||||||
|
public decimal RemainingWeightPercent { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
115
backend/API/DTOs/UsageLogs/UsageLogDtos.cs
Normal file
115
backend/API/DTOs/UsageLogs/UsageLogDtos.cs
Normal file
@@ -0,0 +1,115 @@
|
|||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
|
||||||
|
namespace Extrudex.API.DTOs.UsageLogs;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Request DTO for recording a filament usage entry.
|
||||||
|
/// </summary>
|
||||||
|
public class CreateUsageLogRequest
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The ID of the spool that provided the filament.
|
||||||
|
/// </summary>
|
||||||
|
[Required]
|
||||||
|
public Guid SpoolId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The number of grams of filament consumed.
|
||||||
|
/// </summary>
|
||||||
|
[Required]
|
||||||
|
[Range(0.01, double.MaxValue, ErrorMessage = "GramsUsed must be a positive value.")]
|
||||||
|
public decimal GramsUsed { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The source of the usage data (Mqtt, Moonraker, Manual).
|
||||||
|
/// </summary>
|
||||||
|
[Required]
|
||||||
|
public string DataSource { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The ID of the printer that consumed the filament. Optional.
|
||||||
|
/// </summary>
|
||||||
|
public Guid? PrinterId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The ID of the print job associated with this usage. Optional.
|
||||||
|
/// </summary>
|
||||||
|
public Guid? PrintJobId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The number of millimeters of filament extruded. Optional.
|
||||||
|
/// </summary>
|
||||||
|
public decimal? MmExtruded { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// When the usage occurred (UTC). Defaults to now if not specified.
|
||||||
|
/// </summary>
|
||||||
|
public DateTime? UsageTimestamp { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Optional notes about this usage entry.
|
||||||
|
/// </summary>
|
||||||
|
[MaxLength(2000)]
|
||||||
|
public string? Notes { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Response DTO for a usage log entry.
|
||||||
|
/// </summary>
|
||||||
|
public class UsageLogResponse
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Unique identifier for the usage log entry.
|
||||||
|
/// </summary>
|
||||||
|
public Guid Id { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The spool that provided the filament.
|
||||||
|
/// </summary>
|
||||||
|
public Guid SpoolId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The printer that consumed the filament, if applicable.
|
||||||
|
/// </summary>
|
||||||
|
public Guid? PrinterId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The print job associated with this usage, if applicable.
|
||||||
|
/// </summary>
|
||||||
|
public Guid? PrintJobId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Grams of filament consumed.
|
||||||
|
/// </summary>
|
||||||
|
public decimal GramsUsed { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Millimeters of filament extruded, if available.
|
||||||
|
/// </summary>
|
||||||
|
public decimal? MmExtruded { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// When the usage occurred (UTC).
|
||||||
|
/// </summary>
|
||||||
|
public DateTime UsageTimestamp { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Source of the usage data (Mqtt, Moonraker, Manual).
|
||||||
|
/// </summary>
|
||||||
|
public string DataSource { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Optional notes about this usage entry.
|
||||||
|
/// </summary>
|
||||||
|
public string? Notes { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// When the record was created (UTC).
|
||||||
|
/// </summary>
|
||||||
|
public DateTime CreatedAt { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// When the record was last updated (UTC).
|
||||||
|
/// </summary>
|
||||||
|
public DateTime UpdatedAt { get; set; }
|
||||||
|
}
|
||||||
72
backend/Domain/Entities/UsageLog.cs
Normal file
72
backend/Domain/Entities/UsageLog.cs
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
using Extrudex.Domain.Base;
|
||||||
|
using Extrudex.Domain.Enums;
|
||||||
|
|
||||||
|
namespace Extrudex.Domain.Entities;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Represents a single filament usage log entry. Records how much filament
|
||||||
|
/// was consumed, by which printer, at what time, and optionally linked to
|
||||||
|
/// a print job. This provides a fine-grained audit trail of filament consumption
|
||||||
|
/// independent of print job lifecycle.
|
||||||
|
/// </summary>
|
||||||
|
public class UsageLog : AuditableEntity
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Foreign key to the spool that provided the filament.
|
||||||
|
/// </summary>
|
||||||
|
public Guid SpoolId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Navigation to the spool that provided the filament.
|
||||||
|
/// </summary>
|
||||||
|
public Spool Spool { get; set; } = null!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Foreign key to the printer that consumed the filament.
|
||||||
|
/// Nullable to support manual entries without a specific printer.
|
||||||
|
/// </summary>
|
||||||
|
public Guid? PrinterId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Navigation to the printer that consumed the filament.
|
||||||
|
/// </summary>
|
||||||
|
public Printer? Printer { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Foreign key to the print job associated with this usage entry.
|
||||||
|
/// Nullable because usage can be logged before or without a print job.
|
||||||
|
/// </summary>
|
||||||
|
public Guid? PrintJobId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Navigation to the print job associated with this usage entry.
|
||||||
|
/// </summary>
|
||||||
|
public PrintJob? PrintJob { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The number of grams of filament consumed in this usage event.
|
||||||
|
/// </summary>
|
||||||
|
public decimal GramsUsed { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The number of millimeters of filament extruded in this usage event.
|
||||||
|
/// Optional — may not be available for all data sources.
|
||||||
|
/// </summary>
|
||||||
|
public decimal? MmExtruded { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Timestamp when the usage occurred (UTC). This is the actual time of
|
||||||
|
/// consumption, which may differ from CreatedAt if the entry was recorded later.
|
||||||
|
/// </summary>
|
||||||
|
public DateTime UsageTimestamp { get; set; } = DateTime.UtcNow;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The source of the usage data (which integration path provided it).
|
||||||
|
/// </summary>
|
||||||
|
public DataSource DataSource { get; set; } = DataSource.Manual;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Optional notes about this usage entry.
|
||||||
|
/// </summary>
|
||||||
|
public string? Notes { get; set; }
|
||||||
|
}
|
||||||
50
backend/Domain/Interfaces/IFilamentUsageService.cs
Normal file
50
backend/Domain/Interfaces/IFilamentUsageService.cs
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
using Extrudex.Domain.Entities;
|
||||||
|
|
||||||
|
namespace Extrudex.Domain.Interfaces;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Service for persisting and querying filament usage records.
|
||||||
|
/// Tracks consumption per print job and per spool for COGS and inventory tracking.
|
||||||
|
/// </summary>
|
||||||
|
public interface IFilamentUsageService
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Records a new filament usage entry for a print job.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="printJobId">The print job that consumed the filament.</param>
|
||||||
|
/// <param name="spoolId">The spool that provided the filament.</param>
|
||||||
|
/// <param name="printerId">The printer that executed the print.</param>
|
||||||
|
/// <param name="gramsUsed">Grams of filament consumed.</param>
|
||||||
|
/// <param name="mmExtruded">Millimeters of filament extruded.</param>
|
||||||
|
/// <param name="notes">Optional notes about this usage record.</param>
|
||||||
|
/// <param name="cancellationToken">Cancellation token.</param>
|
||||||
|
/// <returns>The created FilamentUsage entity.</returns>
|
||||||
|
Task<FilamentUsage> RecordUsageAsync(
|
||||||
|
Guid printJobId,
|
||||||
|
Guid spoolId,
|
||||||
|
Guid printerId,
|
||||||
|
decimal gramsUsed,
|
||||||
|
decimal mmExtruded,
|
||||||
|
string? notes = null,
|
||||||
|
CancellationToken cancellationToken = default);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Retrieves all filament usage records for a specific print job.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="printJobId">The print job ID.</param>
|
||||||
|
/// <param name="cancellationToken">Cancellation token.</param>
|
||||||
|
/// <returns>Collection of filament usage records for the print job.</returns>
|
||||||
|
Task<IReadOnlyList<FilamentUsage>> GetByPrintJobAsync(
|
||||||
|
Guid printJobId,
|
||||||
|
CancellationToken cancellationToken = default);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Retrieves all filament usage records for a specific spool.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="spoolId">The spool ID.</param>
|
||||||
|
/// <param name="cancellationToken">Cancellation token.</param>
|
||||||
|
/// <returns>Collection of filament usage records for the spool.</returns>
|
||||||
|
Task<IReadOnlyList<FilamentUsage>> GetBySpoolAsync(
|
||||||
|
Guid spoolId,
|
||||||
|
CancellationToken cancellationToken = default);
|
||||||
|
}
|
||||||
39
backend/Domain/Interfaces/ILowStockDetector.cs
Normal file
39
backend/Domain/Interfaces/ILowStockDetector.cs
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
namespace Extrudex.Domain.Interfaces;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Detects low-stock filament spools based on configurable weight thresholds.
|
||||||
|
/// Determines whether a spool's remaining filament falls below a critical level
|
||||||
|
/// so that alerts and API flags can be surfaced to the user.
|
||||||
|
/// </summary>
|
||||||
|
public interface ILowStockDetector
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Determines whether a spool is considered low stock based on its remaining
|
||||||
|
/// weight relative to its total weight and the configured threshold percentage.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="weightRemainingGrams">The current remaining weight in grams.</param>
|
||||||
|
/// <param name="weightTotalGrams">The total spool weight in grams when full.</param>
|
||||||
|
/// <returns>
|
||||||
|
/// <c>true</c> if the remaining weight percentage is at or below the configured
|
||||||
|
/// low-stock threshold; <c>false</c> otherwise. Returns <c>false</c> for spools
|
||||||
|
/// with zero total weight to avoid division-by-zero.
|
||||||
|
/// </returns>
|
||||||
|
bool IsLowStock(decimal weightRemainingGrams, decimal weightTotalGrams);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Calculates the remaining weight as a percentage of total weight.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="weightRemainingGrams">The current remaining weight in grams.</param>
|
||||||
|
/// <param name="weightTotalGrams">The total spool weight in grams when full.</param>
|
||||||
|
/// <returns>
|
||||||
|
/// A value between 0 and 100 representing the percentage of filament remaining.
|
||||||
|
/// Returns 0 if total weight is zero to avoid division-by-zero.
|
||||||
|
/// </returns>
|
||||||
|
decimal GetRemainingWeightPercent(decimal weightRemainingGrams, decimal weightTotalGrams);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the currently configured low-stock threshold percentage.
|
||||||
|
/// Useful for API responses so clients know what threshold is in effect.
|
||||||
|
/// </summary>
|
||||||
|
decimal LowStockThresholdPercent { get; }
|
||||||
|
}
|
||||||
57
backend/Domain/Interfaces/IUsageLogService.cs
Normal file
57
backend/Domain/Interfaces/IUsageLogService.cs
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
using Extrudex.Domain.Entities;
|
||||||
|
using Extrudex.Domain.Enums;
|
||||||
|
|
||||||
|
namespace Extrudex.Domain.Interfaces;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Service for recording filament usage entries. Writes to the usage_logs table
|
||||||
|
/// and provides query capabilities for usage history.
|
||||||
|
/// </summary>
|
||||||
|
public interface IUsageLogService
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Records a filament usage entry.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="spoolId">The spool that provided the filament.</param>
|
||||||
|
/// <param name="gramsUsed">Grams of filament consumed.</param>
|
||||||
|
/// <param name="dataSource">Where the data came from.</param>
|
||||||
|
/// <param name="printerId">Optional printer ID.</param>
|
||||||
|
/// <param name="printJobId">Optional print job ID.</param>
|
||||||
|
/// <param name="mmExtruded">Optional mm extruded.</param>
|
||||||
|
/// <param name="usageTimestamp">When the usage occurred (defaults to UTC now).</param>
|
||||||
|
/// <param name="notes">Optional notes.</param>
|
||||||
|
/// <returns>The created UsageLog entity.</returns>
|
||||||
|
Task<UsageLog> RecordUsageAsync(
|
||||||
|
Guid spoolId,
|
||||||
|
decimal gramsUsed,
|
||||||
|
DataSource dataSource,
|
||||||
|
Guid? printerId = null,
|
||||||
|
Guid? printJobId = null,
|
||||||
|
decimal? mmExtruded = null,
|
||||||
|
DateTime? usageTimestamp = null,
|
||||||
|
string? notes = null);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Retrieves usage logs for a specific spool, ordered by usage timestamp descending.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="spoolId">The spool ID to filter by.</param>
|
||||||
|
/// <param name="cancellationToken">Cancellation token.</param>
|
||||||
|
/// <returns>A collection of usage logs for the spool.</returns>
|
||||||
|
Task<IEnumerable<UsageLog>> GetBySpoolAsync(Guid spoolId, CancellationToken cancellationToken = default);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Retrieves usage logs for a specific printer, ordered by usage timestamp descending.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="printerId">The printer ID to filter by.</param>
|
||||||
|
/// <param name="cancellationToken">Cancellation token.</param>
|
||||||
|
/// <returns>A collection of usage logs for the printer.</returns>
|
||||||
|
Task<IEnumerable<UsageLog>> GetByPrinterAsync(Guid printerId, CancellationToken cancellationToken = default);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Retrieves usage logs for a specific print job, ordered by usage timestamp descending.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="printJobId">The print job ID to filter by.</param>
|
||||||
|
/// <param name="cancellationToken">Cancellation token.</param>
|
||||||
|
/// <returns>A collection of usage logs for the print job.</returns>
|
||||||
|
Task<IEnumerable<UsageLog>> GetByPrintJobAsync(Guid printJobId, CancellationToken cancellationToken = default);
|
||||||
|
}
|
||||||
@@ -0,0 +1,91 @@
|
|||||||
|
using Extrudex.Domain.Entities;
|
||||||
|
using Extrudex.Domain.Enums;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||||
|
|
||||||
|
namespace Extrudex.Infrastructure.Data.Configurations;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// EF Core configuration for the UsageLog entity.
|
||||||
|
/// Maps to the usage_logs table with snake_case columns and appropriate indexes.
|
||||||
|
/// </summary>
|
||||||
|
public class UsageLogConfiguration : BaseEntityConfiguration<UsageLog>
|
||||||
|
{
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public override void Configure(EntityTypeBuilder<UsageLog> builder)
|
||||||
|
{
|
||||||
|
base.Configure(builder);
|
||||||
|
|
||||||
|
builder.Property(e => e.SpoolId)
|
||||||
|
.HasColumnName("spool_id")
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
builder.Property(e => e.PrinterId)
|
||||||
|
.HasColumnName("printer_id");
|
||||||
|
|
||||||
|
builder.Property(e => e.PrintJobId)
|
||||||
|
.HasColumnName("print_job_id");
|
||||||
|
|
||||||
|
builder.Property(e => e.GramsUsed)
|
||||||
|
.HasColumnName("grams_used")
|
||||||
|
.HasPrecision(10, 2)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
builder.Property(e => e.MmExtruded)
|
||||||
|
.HasColumnName("mm_extruded")
|
||||||
|
.HasPrecision(12, 2);
|
||||||
|
|
||||||
|
builder.Property(e => e.UsageTimestamp)
|
||||||
|
.HasColumnName("usage_timestamp")
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
builder.Property(e => e.DataSource)
|
||||||
|
.HasColumnName("data_source")
|
||||||
|
.HasConversion<string>()
|
||||||
|
.HasMaxLength(50)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
builder.Property(e => e.Notes)
|
||||||
|
.HasColumnName("notes")
|
||||||
|
.HasMaxLength(2000);
|
||||||
|
|
||||||
|
// Index on spool_id for querying usage by spool
|
||||||
|
builder.HasIndex(e => e.SpoolId)
|
||||||
|
.HasDatabaseName("ix_usage_logs_spool_id");
|
||||||
|
|
||||||
|
// Index on printer_id for querying usage by printer
|
||||||
|
builder.HasIndex(e => e.PrinterId)
|
||||||
|
.HasDatabaseName("ix_usage_logs_printer_id");
|
||||||
|
|
||||||
|
// Index on print_job_id for querying usage by print job
|
||||||
|
builder.HasIndex(e => e.PrintJobId)
|
||||||
|
.HasDatabaseName("ix_usage_logs_print_job_id");
|
||||||
|
|
||||||
|
// Index on usage_timestamp for chronological queries
|
||||||
|
builder.HasIndex(e => e.UsageTimestamp)
|
||||||
|
.HasDatabaseName("ix_usage_logs_usage_timestamp");
|
||||||
|
|
||||||
|
// Index on data_source for filtering by integration path
|
||||||
|
builder.HasIndex(e => e.DataSource)
|
||||||
|
.HasDatabaseName("ix_usage_logs_data_source");
|
||||||
|
|
||||||
|
// Relationships
|
||||||
|
builder.HasOne(e => e.Spool)
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey(e => e.SpoolId)
|
||||||
|
.HasConstraintName("fk_usage_logs_spool")
|
||||||
|
.OnDelete(DeleteBehavior.Restrict);
|
||||||
|
|
||||||
|
builder.HasOne(e => e.Printer)
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey(e => e.PrinterId)
|
||||||
|
.HasConstraintName("fk_usage_logs_printer")
|
||||||
|
.OnDelete(DeleteBehavior.SetNull);
|
||||||
|
|
||||||
|
builder.HasOne(e => e.PrintJob)
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey(e => e.PrintJobId)
|
||||||
|
.HasConstraintName("fk_usage_logs_print_job")
|
||||||
|
.OnDelete(DeleteBehavior.SetNull);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -24,6 +24,7 @@ public class ExtrudexDbContext : DbContext
|
|||||||
public DbSet<AmsSlot> AmsSlots => Set<AmsSlot>();
|
public DbSet<AmsSlot> AmsSlots => Set<AmsSlot>();
|
||||||
public DbSet<PrintJob> PrintJobs => Set<PrintJob>();
|
public DbSet<PrintJob> PrintJobs => Set<PrintJob>();
|
||||||
public DbSet<FilamentUsage> FilamentUsages => Set<FilamentUsage>();
|
public DbSet<FilamentUsage> FilamentUsages => Set<FilamentUsage>();
|
||||||
|
public DbSet<UsageLog> UsageLogs => Set<UsageLog>();
|
||||||
|
|
||||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||||
{
|
{
|
||||||
|
|||||||
1061
backend/Infrastructure/Data/Migrations/20260426184329_AddUsageLogTable.Designer.cs
generated
Normal file
1061
backend/Infrastructure/Data/Migrations/20260426184329_AddUsageLogTable.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,534 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace Extrudex.Infrastructure.Data.Migrations
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
public partial class AddUsageLogTable : Migration
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "usage_logs",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
id = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
|
spool_id = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
|
printer_id = table.Column<Guid>(type: "uuid", nullable: true),
|
||||||
|
print_job_id = table.Column<Guid>(type: "uuid", nullable: true),
|
||||||
|
grams_used = table.Column<decimal>(type: "numeric(10,2)", precision: 10, scale: 2, nullable: false),
|
||||||
|
mm_extruded = table.Column<decimal>(type: "numeric(12,2)", precision: 12, scale: 2, nullable: true),
|
||||||
|
usage_timestamp = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
||||||
|
data_source = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: false),
|
||||||
|
notes = table.Column<string>(type: "character varying(2000)", maxLength: 2000, nullable: true),
|
||||||
|
created_at = table.Column<DateTime>(type: "timestamp with time zone", nullable: false, defaultValueSql: "now() at time zone 'utc'"),
|
||||||
|
updated_at = table.Column<DateTime>(type: "timestamp with time zone", nullable: false, defaultValueSql: "now() at time zone 'utc'")
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_usage_logs", x => x.id);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "fk_usage_logs_print_job",
|
||||||
|
column: x => x.print_job_id,
|
||||||
|
principalTable: "print_jobs",
|
||||||
|
principalColumn: "id",
|
||||||
|
onDelete: ReferentialAction.SetNull);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "fk_usage_logs_printer",
|
||||||
|
column: x => x.printer_id,
|
||||||
|
principalTable: "printers",
|
||||||
|
principalColumn: "id",
|
||||||
|
onDelete: ReferentialAction.SetNull);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "fk_usage_logs_spool",
|
||||||
|
column: x => x.spool_id,
|
||||||
|
principalTable: "spools",
|
||||||
|
principalColumn: "id",
|
||||||
|
onDelete: ReferentialAction.Restrict);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(6535), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(6535) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000002"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7016), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7016) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000003"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7027), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7028) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000004"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7034), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7035) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000005"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7042), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7042) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000006"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7049), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7049) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000001"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7291), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7292) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000002"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7453), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7453) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000003"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7461), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7461) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000004"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7468), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7468) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000005"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7474), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7474) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000006"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7480), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7481) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000007"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7487), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7487) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000008"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7493), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7493) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000009"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7500), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7500) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000010"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7507), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7507) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000011"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7513), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7513) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000012"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7519), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7520) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000013"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7526), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7526) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000014"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7532), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7532) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000015"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7538), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7539) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000001"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7690), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7690) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000002"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7838), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7838) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000003"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7846), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7846) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000004"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7853), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7853) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000005"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7859), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7859) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000006"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7865), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7866) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000007"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7872), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7872) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000008"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7878), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7879) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000009"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7885), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7885) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000010"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7891), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7891) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000011"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7898), new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7898) });
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "ix_usage_logs_data_source",
|
||||||
|
table: "usage_logs",
|
||||||
|
column: "data_source");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "ix_usage_logs_print_job_id",
|
||||||
|
table: "usage_logs",
|
||||||
|
column: "print_job_id");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "ix_usage_logs_printer_id",
|
||||||
|
table: "usage_logs",
|
||||||
|
column: "printer_id");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "ix_usage_logs_spool_id",
|
||||||
|
table: "usage_logs",
|
||||||
|
column: "spool_id");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "ix_usage_logs_usage_timestamp",
|
||||||
|
table: "usage_logs",
|
||||||
|
column: "usage_timestamp");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "usage_logs");
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1096), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1096) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000002"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1620), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1620) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000003"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1630), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1630) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000004"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1638), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1638) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000005"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1645), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1645) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_bases",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("10000000-0000-0000-0000-000000000006"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1651), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1652) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000001"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1850), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(1850) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000002"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2041), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2041) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000003"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2049), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2049) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000004"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2055), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2056) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000005"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2062), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2062) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000006"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2068), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2068) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000007"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2075), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2075) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000008"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2081), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2081) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000009"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2100), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2100) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000010"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2107), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2107) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000011"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2113), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2113) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000012"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2120), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2120) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000013"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2126), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2126) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000014"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2132), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2133) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_finishes",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("20000000-0000-0000-0000-000000000015"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2139), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2139) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000001"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2304), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2304) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000002"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2463), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2463) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000003"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2471), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2471) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000004"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2477), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2478) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000005"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2484), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2484) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000006"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2490), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2491) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000007"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2497), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2497) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000008"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2503), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2503) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000009"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2510), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2510) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000010"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2516), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2516) });
|
||||||
|
|
||||||
|
migrationBuilder.UpdateData(
|
||||||
|
table: "material_modifiers",
|
||||||
|
keyColumn: "id",
|
||||||
|
keyValue: new Guid("30000000-0000-0000-0000-000000000011"),
|
||||||
|
columns: new[] { "created_at", "updated_at" },
|
||||||
|
values: new object[] { new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2522), new DateTime(2026, 4, 26, 13, 14, 18, 745, DateTimeKind.Utc).AddTicks(2523) });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -104,77 +104,6 @@ namespace Extrudex.Infrastructure.Data.Migrations
|
|||||||
b.ToTable("ams_units", (string)null);
|
b.ToTable("ams_units", (string)null);
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("Extrudex.Domain.Entities.FilamentUsage", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.HasColumnType("uuid")
|
|
||||||
.HasColumnName("id");
|
|
||||||
|
|
||||||
b.Property<DateTime>("CreatedAt")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("timestamp with time zone")
|
|
||||||
.HasColumnName("created_at")
|
|
||||||
.HasDefaultValueSql("now() at time zone 'utc'");
|
|
||||||
|
|
||||||
b.Property<decimal>("GramsUsed")
|
|
||||||
.HasPrecision(10, 2)
|
|
||||||
.HasColumnType("numeric(10,2)")
|
|
||||||
.HasColumnName("grams_used");
|
|
||||||
|
|
||||||
b.Property<decimal>("MmExtruded")
|
|
||||||
.HasPrecision(12, 2)
|
|
||||||
.HasColumnType("numeric(12,2)")
|
|
||||||
.HasColumnName("mm_extruded");
|
|
||||||
|
|
||||||
b.Property<string>("Notes")
|
|
||||||
.HasMaxLength(2000)
|
|
||||||
.HasColumnType("character varying(2000)")
|
|
||||||
.HasColumnName("notes");
|
|
||||||
|
|
||||||
b.Property<Guid>("PrintJobId")
|
|
||||||
.HasColumnType("uuid")
|
|
||||||
.HasColumnName("print_job_id");
|
|
||||||
|
|
||||||
b.Property<Guid>("PrinterId")
|
|
||||||
.HasColumnType("uuid")
|
|
||||||
.HasColumnName("printer_id");
|
|
||||||
|
|
||||||
b.Property<DateTime>("RecordedAt")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("timestamp with time zone")
|
|
||||||
.HasColumnName("recorded_at")
|
|
||||||
.HasDefaultValueSql("now() at time zone 'utc'");
|
|
||||||
|
|
||||||
b.Property<Guid>("SpoolId")
|
|
||||||
.HasColumnType("uuid")
|
|
||||||
.HasColumnName("spool_id");
|
|
||||||
|
|
||||||
b.Property<DateTime>("UpdatedAt")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("timestamp with time zone")
|
|
||||||
.HasColumnName("updated_at")
|
|
||||||
.HasDefaultValueSql("now() at time zone 'utc'");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.HasIndex("PrintJobId")
|
|
||||||
.HasDatabaseName("ix_filament_usages_print_job_id");
|
|
||||||
|
|
||||||
b.HasIndex("PrinterId")
|
|
||||||
.HasDatabaseName("ix_filament_usages_printer_id");
|
|
||||||
|
|
||||||
b.HasIndex("RecordedAt")
|
|
||||||
.HasDatabaseName("ix_filament_usages_recorded_at");
|
|
||||||
|
|
||||||
b.HasIndex("SpoolId")
|
|
||||||
.HasDatabaseName("ix_filament_usages_spool_id");
|
|
||||||
|
|
||||||
b.HasIndex("SpoolId", "RecordedAt")
|
|
||||||
.HasDatabaseName("ix_filament_usages_spool_id_recorded_at");
|
|
||||||
|
|
||||||
b.ToTable("filament_usages", (string)null);
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Extrudex.Domain.Entities.MaterialBase", b =>
|
modelBuilder.Entity("Extrudex.Domain.Entities.MaterialBase", b =>
|
||||||
{
|
{
|
||||||
b.Property<Guid>("Id")
|
b.Property<Guid>("Id")
|
||||||
@@ -216,50 +145,50 @@ namespace Extrudex.Infrastructure.Data.Migrations
|
|||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("10000000-0000-0000-0000-000000000001"),
|
Id = new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9388),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(6535),
|
||||||
DensityGperCm3 = 1.24m,
|
DensityGperCm3 = 1.24m,
|
||||||
Name = "PLA",
|
Name = "PLA",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9388)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(6535)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("10000000-0000-0000-0000-000000000002"),
|
Id = new Guid("10000000-0000-0000-0000-000000000002"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9871),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7016),
|
||||||
DensityGperCm3 = 1.27m,
|
DensityGperCm3 = 1.27m,
|
||||||
Name = "PETG",
|
Name = "PETG",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9871)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7016)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("10000000-0000-0000-0000-000000000003"),
|
Id = new Guid("10000000-0000-0000-0000-000000000003"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9881),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7027),
|
||||||
DensityGperCm3 = 1.04m,
|
DensityGperCm3 = 1.04m,
|
||||||
Name = "ABS",
|
Name = "ABS",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9881)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7028)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("10000000-0000-0000-0000-000000000004"),
|
Id = new Guid("10000000-0000-0000-0000-000000000004"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9888),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7034),
|
||||||
DensityGperCm3 = 1.07m,
|
DensityGperCm3 = 1.07m,
|
||||||
Name = "ASA",
|
Name = "ASA",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9888)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7035)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("10000000-0000-0000-0000-000000000005"),
|
Id = new Guid("10000000-0000-0000-0000-000000000005"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9895),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7042),
|
||||||
DensityGperCm3 = 1.21m,
|
DensityGperCm3 = 1.21m,
|
||||||
Name = "TPU",
|
Name = "TPU",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9895)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7042)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("10000000-0000-0000-0000-000000000006"),
|
Id = new Guid("10000000-0000-0000-0000-000000000006"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9901),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7049),
|
||||||
DensityGperCm3 = 1.14m,
|
DensityGperCm3 = 1.14m,
|
||||||
Name = "Nylon",
|
Name = "Nylon",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 291, DateTimeKind.Utc).AddTicks(9902)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7049)
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -303,122 +232,122 @@ namespace Extrudex.Infrastructure.Data.Migrations
|
|||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000001"),
|
Id = new Guid("20000000-0000-0000-0000-000000000001"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(90),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7291),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
Name = "Basic",
|
Name = "Basic",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(90)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7292)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000002"),
|
Id = new Guid("20000000-0000-0000-0000-000000000002"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(251),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7453),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
Name = "Matte",
|
Name = "Matte",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(251)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7453)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000003"),
|
Id = new Guid("20000000-0000-0000-0000-000000000003"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(259),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7461),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
Name = "Silk",
|
Name = "Silk",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(259)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7461)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000004"),
|
Id = new Guid("20000000-0000-0000-0000-000000000004"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(266),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7468),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
Name = "Glitter",
|
Name = "Glitter",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(266)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7468)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000005"),
|
Id = new Guid("20000000-0000-0000-0000-000000000005"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(272),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7474),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
Name = "Marble",
|
Name = "Marble",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(272)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7474)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000006"),
|
Id = new Guid("20000000-0000-0000-0000-000000000006"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(278),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7480),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
Name = "Sparkle",
|
Name = "Sparkle",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(278)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7481)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000007"),
|
Id = new Guid("20000000-0000-0000-0000-000000000007"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(285),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7487),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000002"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000002"),
|
||||||
Name = "Basic",
|
Name = "Basic",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(285)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7487)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000008"),
|
Id = new Guid("20000000-0000-0000-0000-000000000008"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(291),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7493),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000002"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000002"),
|
||||||
Name = "Matte",
|
Name = "Matte",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(291)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7493)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000009"),
|
Id = new Guid("20000000-0000-0000-0000-000000000009"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(297),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7500),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000002"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000002"),
|
||||||
Name = "Silk",
|
Name = "Silk",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(298)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7500)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000010"),
|
Id = new Guid("20000000-0000-0000-0000-000000000010"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(304),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7507),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000003"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000003"),
|
||||||
Name = "Basic",
|
Name = "Basic",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(304)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7507)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000011"),
|
Id = new Guid("20000000-0000-0000-0000-000000000011"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(310),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7513),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000003"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000003"),
|
||||||
Name = "Matte",
|
Name = "Matte",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(310)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7513)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000012"),
|
Id = new Guid("20000000-0000-0000-0000-000000000012"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(316),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7519),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000004"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000004"),
|
||||||
Name = "Basic",
|
Name = "Basic",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(317)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7520)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000013"),
|
Id = new Guid("20000000-0000-0000-0000-000000000013"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(323),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7526),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000004"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000004"),
|
||||||
Name = "Matte",
|
Name = "Matte",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(323)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7526)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000014"),
|
Id = new Guid("20000000-0000-0000-0000-000000000014"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(329),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7532),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000005"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000005"),
|
||||||
Name = "Basic",
|
Name = "Basic",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(329)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7532)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("20000000-0000-0000-0000-000000000015"),
|
Id = new Guid("20000000-0000-0000-0000-000000000015"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(336),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7538),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000006"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000006"),
|
||||||
Name = "Basic",
|
Name = "Basic",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(336)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7539)
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -462,90 +391,90 @@ namespace Extrudex.Infrastructure.Data.Migrations
|
|||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("30000000-0000-0000-0000-000000000001"),
|
Id = new Guid("30000000-0000-0000-0000-000000000001"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(482),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7690),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
Name = "Carbon Fiber",
|
Name = "Carbon Fiber",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(482)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7690)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("30000000-0000-0000-0000-000000000002"),
|
Id = new Guid("30000000-0000-0000-0000-000000000002"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(805),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7838),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
Name = "Glass Fiber",
|
Name = "Glass Fiber",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(806)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7838)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("30000000-0000-0000-0000-000000000003"),
|
Id = new Guid("30000000-0000-0000-0000-000000000003"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(815),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7846),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
Name = "Wood Fill",
|
Name = "Wood Fill",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(815)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7846)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("30000000-0000-0000-0000-000000000004"),
|
Id = new Guid("30000000-0000-0000-0000-000000000004"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(821),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7853),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000001"),
|
||||||
Name = "Glow-in-the-Dark",
|
Name = "Glow-in-the-Dark",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(821)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7853)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("30000000-0000-0000-0000-000000000005"),
|
Id = new Guid("30000000-0000-0000-0000-000000000005"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(828),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7859),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000002"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000002"),
|
||||||
Name = "Carbon Fiber",
|
Name = "Carbon Fiber",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(828)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7859)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("30000000-0000-0000-0000-000000000006"),
|
Id = new Guid("30000000-0000-0000-0000-000000000006"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(834),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7865),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000002"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000002"),
|
||||||
Name = "Glass Fiber",
|
Name = "Glass Fiber",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(834)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7866)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("30000000-0000-0000-0000-000000000007"),
|
Id = new Guid("30000000-0000-0000-0000-000000000007"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(840),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7872),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000003"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000003"),
|
||||||
Name = "Carbon Fiber",
|
Name = "Carbon Fiber",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(840)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7872)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("30000000-0000-0000-0000-000000000008"),
|
Id = new Guid("30000000-0000-0000-0000-000000000008"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(847),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7878),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000003"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000003"),
|
||||||
Name = "Glass Fiber",
|
Name = "Glass Fiber",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(847)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7879)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("30000000-0000-0000-0000-000000000009"),
|
Id = new Guid("30000000-0000-0000-0000-000000000009"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(853),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7885),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000004"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000004"),
|
||||||
Name = "Carbon Fiber",
|
Name = "Carbon Fiber",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(853)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7885)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("30000000-0000-0000-0000-000000000010"),
|
Id = new Guid("30000000-0000-0000-0000-000000000010"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(859),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7891),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000006"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000006"),
|
||||||
Name = "Carbon Fiber",
|
Name = "Carbon Fiber",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(860)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7891)
|
||||||
},
|
},
|
||||||
new
|
new
|
||||||
{
|
{
|
||||||
Id = new Guid("30000000-0000-0000-0000-000000000011"),
|
Id = new Guid("30000000-0000-0000-0000-000000000011"),
|
||||||
CreatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(866),
|
CreatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7898),
|
||||||
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000006"),
|
MaterialBaseId = new Guid("10000000-0000-0000-0000-000000000006"),
|
||||||
Name = "Glass Fiber",
|
Name = "Glass Fiber",
|
||||||
UpdatedAt = new DateTime(2026, 4, 26, 18, 34, 33, 292, DateTimeKind.Utc).AddTicks(866)
|
UpdatedAt = new DateTime(2026, 4, 26, 18, 43, 28, 895, DateTimeKind.Utc).AddTicks(7898)
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -877,6 +806,81 @@ namespace Extrudex.Infrastructure.Data.Migrations
|
|||||||
b.ToTable("spools", (string)null);
|
b.ToTable("spools", (string)null);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Extrudex.Domain.Entities.UsageLog", b =>
|
||||||
|
{
|
||||||
|
b.Property<Guid>("Id")
|
||||||
|
.HasColumnType("uuid")
|
||||||
|
.HasColumnName("id");
|
||||||
|
|
||||||
|
b.Property<DateTime>("CreatedAt")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("timestamp with time zone")
|
||||||
|
.HasColumnName("created_at")
|
||||||
|
.HasDefaultValueSql("now() at time zone 'utc'");
|
||||||
|
|
||||||
|
b.Property<string>("DataSource")
|
||||||
|
.IsRequired()
|
||||||
|
.HasMaxLength(50)
|
||||||
|
.HasColumnType("character varying(50)")
|
||||||
|
.HasColumnName("data_source");
|
||||||
|
|
||||||
|
b.Property<decimal>("GramsUsed")
|
||||||
|
.HasPrecision(10, 2)
|
||||||
|
.HasColumnType("numeric(10,2)")
|
||||||
|
.HasColumnName("grams_used");
|
||||||
|
|
||||||
|
b.Property<decimal?>("MmExtruded")
|
||||||
|
.HasPrecision(12, 2)
|
||||||
|
.HasColumnType("numeric(12,2)")
|
||||||
|
.HasColumnName("mm_extruded");
|
||||||
|
|
||||||
|
b.Property<string>("Notes")
|
||||||
|
.HasMaxLength(2000)
|
||||||
|
.HasColumnType("character varying(2000)")
|
||||||
|
.HasColumnName("notes");
|
||||||
|
|
||||||
|
b.Property<Guid?>("PrintJobId")
|
||||||
|
.HasColumnType("uuid")
|
||||||
|
.HasColumnName("print_job_id");
|
||||||
|
|
||||||
|
b.Property<Guid?>("PrinterId")
|
||||||
|
.HasColumnType("uuid")
|
||||||
|
.HasColumnName("printer_id");
|
||||||
|
|
||||||
|
b.Property<Guid>("SpoolId")
|
||||||
|
.HasColumnType("uuid")
|
||||||
|
.HasColumnName("spool_id");
|
||||||
|
|
||||||
|
b.Property<DateTime>("UpdatedAt")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("timestamp with time zone")
|
||||||
|
.HasColumnName("updated_at")
|
||||||
|
.HasDefaultValueSql("now() at time zone 'utc'");
|
||||||
|
|
||||||
|
b.Property<DateTime>("UsageTimestamp")
|
||||||
|
.HasColumnType("timestamp with time zone")
|
||||||
|
.HasColumnName("usage_timestamp");
|
||||||
|
|
||||||
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("DataSource")
|
||||||
|
.HasDatabaseName("ix_usage_logs_data_source");
|
||||||
|
|
||||||
|
b.HasIndex("PrintJobId")
|
||||||
|
.HasDatabaseName("ix_usage_logs_print_job_id");
|
||||||
|
|
||||||
|
b.HasIndex("PrinterId")
|
||||||
|
.HasDatabaseName("ix_usage_logs_printer_id");
|
||||||
|
|
||||||
|
b.HasIndex("SpoolId")
|
||||||
|
.HasDatabaseName("ix_usage_logs_spool_id");
|
||||||
|
|
||||||
|
b.HasIndex("UsageTimestamp")
|
||||||
|
.HasDatabaseName("ix_usage_logs_usage_timestamp");
|
||||||
|
|
||||||
|
b.ToTable("usage_logs", (string)null);
|
||||||
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("Extrudex.Domain.Entities.AmsSlot", b =>
|
modelBuilder.Entity("Extrudex.Domain.Entities.AmsSlot", b =>
|
||||||
{
|
{
|
||||||
b.HasOne("Extrudex.Domain.Entities.AmsUnit", "AmsUnit")
|
b.HasOne("Extrudex.Domain.Entities.AmsUnit", "AmsUnit")
|
||||||
@@ -909,36 +913,6 @@ namespace Extrudex.Infrastructure.Data.Migrations
|
|||||||
b.Navigation("Printer");
|
b.Navigation("Printer");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("Extrudex.Domain.Entities.FilamentUsage", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Extrudex.Domain.Entities.PrintJob", "PrintJob")
|
|
||||||
.WithMany("FilamentUsages")
|
|
||||||
.HasForeignKey("PrintJobId")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired()
|
|
||||||
.HasConstraintName("fk_filament_usages_print_job");
|
|
||||||
|
|
||||||
b.HasOne("Extrudex.Domain.Entities.Printer", "Printer")
|
|
||||||
.WithMany("FilamentUsages")
|
|
||||||
.HasForeignKey("PrinterId")
|
|
||||||
.OnDelete(DeleteBehavior.Restrict)
|
|
||||||
.IsRequired()
|
|
||||||
.HasConstraintName("fk_filament_usages_printer");
|
|
||||||
|
|
||||||
b.HasOne("Extrudex.Domain.Entities.Spool", "Spool")
|
|
||||||
.WithMany("FilamentUsages")
|
|
||||||
.HasForeignKey("SpoolId")
|
|
||||||
.OnDelete(DeleteBehavior.Restrict)
|
|
||||||
.IsRequired()
|
|
||||||
.HasConstraintName("fk_filament_usages_spool");
|
|
||||||
|
|
||||||
b.Navigation("PrintJob");
|
|
||||||
|
|
||||||
b.Navigation("Printer");
|
|
||||||
|
|
||||||
b.Navigation("Spool");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Extrudex.Domain.Entities.MaterialFinish", b =>
|
modelBuilder.Entity("Extrudex.Domain.Entities.MaterialFinish", b =>
|
||||||
{
|
{
|
||||||
b.HasOne("Extrudex.Domain.Entities.MaterialBase", "MaterialBase")
|
b.HasOne("Extrudex.Domain.Entities.MaterialBase", "MaterialBase")
|
||||||
@@ -1013,6 +987,34 @@ namespace Extrudex.Infrastructure.Data.Migrations
|
|||||||
b.Navigation("MaterialModifier");
|
b.Navigation("MaterialModifier");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("Extrudex.Domain.Entities.UsageLog", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("Extrudex.Domain.Entities.PrintJob", "PrintJob")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("PrintJobId")
|
||||||
|
.OnDelete(DeleteBehavior.SetNull)
|
||||||
|
.HasConstraintName("fk_usage_logs_print_job");
|
||||||
|
|
||||||
|
b.HasOne("Extrudex.Domain.Entities.Printer", "Printer")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("PrinterId")
|
||||||
|
.OnDelete(DeleteBehavior.SetNull)
|
||||||
|
.HasConstraintName("fk_usage_logs_printer");
|
||||||
|
|
||||||
|
b.HasOne("Extrudex.Domain.Entities.Spool", "Spool")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("SpoolId")
|
||||||
|
.OnDelete(DeleteBehavior.Restrict)
|
||||||
|
.IsRequired()
|
||||||
|
.HasConstraintName("fk_usage_logs_spool");
|
||||||
|
|
||||||
|
b.Navigation("PrintJob");
|
||||||
|
|
||||||
|
b.Navigation("Printer");
|
||||||
|
|
||||||
|
b.Navigation("Spool");
|
||||||
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("Extrudex.Domain.Entities.AmsUnit", b =>
|
modelBuilder.Entity("Extrudex.Domain.Entities.AmsUnit", b =>
|
||||||
{
|
{
|
||||||
b.Navigation("Slots");
|
b.Navigation("Slots");
|
||||||
@@ -1037,17 +1039,10 @@ namespace Extrudex.Infrastructure.Data.Migrations
|
|||||||
b.Navigation("Spools");
|
b.Navigation("Spools");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("Extrudex.Domain.Entities.PrintJob", b =>
|
|
||||||
{
|
|
||||||
b.Navigation("FilamentUsages");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Extrudex.Domain.Entities.Printer", b =>
|
modelBuilder.Entity("Extrudex.Domain.Entities.Printer", b =>
|
||||||
{
|
{
|
||||||
b.Navigation("AmsUnits");
|
b.Navigation("AmsUnits");
|
||||||
|
|
||||||
b.Navigation("FilamentUsages");
|
|
||||||
|
|
||||||
b.Navigation("PrintJobs");
|
b.Navigation("PrintJobs");
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -1055,8 +1050,6 @@ namespace Extrudex.Infrastructure.Data.Migrations
|
|||||||
{
|
{
|
||||||
b.Navigation("AmsSlots");
|
b.Navigation("AmsSlots");
|
||||||
|
|
||||||
b.Navigation("FilamentUsages");
|
|
||||||
|
|
||||||
b.Navigation("PrintJobs");
|
b.Navigation("PrintJobs");
|
||||||
});
|
});
|
||||||
#pragma warning restore 612, 618
|
#pragma warning restore 612, 618
|
||||||
|
|||||||
79
backend/Infrastructure/Services/FilamentUsageService.cs
Normal file
79
backend/Infrastructure/Services/FilamentUsageService.cs
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
using Extrudex.Domain.Entities;
|
||||||
|
using Extrudex.Domain.Interfaces;
|
||||||
|
using Extrudex.Infrastructure.Data;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
|
namespace Extrudex.Infrastructure.Services;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// EF Core–backed implementation of the filament usage service.
|
||||||
|
/// Persists usage records to the database and provides query methods
|
||||||
|
/// for retrieving usage by print job or spool.
|
||||||
|
/// </summary>
|
||||||
|
public class FilamentUsageService : IFilamentUsageService
|
||||||
|
{
|
||||||
|
private readonly ExtrudexDbContext _dbContext;
|
||||||
|
private readonly ILogger<FilamentUsageService> _logger;
|
||||||
|
|
||||||
|
public FilamentUsageService(
|
||||||
|
ExtrudexDbContext dbContext,
|
||||||
|
ILogger<FilamentUsageService> logger)
|
||||||
|
{
|
||||||
|
_dbContext = dbContext;
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public async Task<FilamentUsage> RecordUsageAsync(
|
||||||
|
Guid printJobId,
|
||||||
|
Guid spoolId,
|
||||||
|
Guid printerId,
|
||||||
|
decimal gramsUsed,
|
||||||
|
decimal mmExtruded,
|
||||||
|
string? notes = null,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
var usage = new FilamentUsage
|
||||||
|
{
|
||||||
|
PrintJobId = printJobId,
|
||||||
|
SpoolId = spoolId,
|
||||||
|
PrinterId = printerId,
|
||||||
|
GramsUsed = gramsUsed,
|
||||||
|
MmExtruded = mmExtruded,
|
||||||
|
RecordedAt = DateTime.UtcNow,
|
||||||
|
Notes = notes
|
||||||
|
};
|
||||||
|
|
||||||
|
_dbContext.FilamentUsages.Add(usage);
|
||||||
|
await _dbContext.SaveChangesAsync(cancellationToken);
|
||||||
|
|
||||||
|
_logger.LogInformation(
|
||||||
|
"Recorded filament usage: {Grams}g / {Mm}mm for print job {JobId} on spool {SpoolId}",
|
||||||
|
gramsUsed, mmExtruded, printJobId, spoolId);
|
||||||
|
|
||||||
|
return usage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public async Task<IReadOnlyList<FilamentUsage>> GetByPrintJobAsync(
|
||||||
|
Guid printJobId,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
return await _dbContext.FilamentUsages
|
||||||
|
.Where(u => u.PrintJobId == printJobId)
|
||||||
|
.OrderByDescending(u => u.RecordedAt)
|
||||||
|
.ToListAsync(cancellationToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public async Task<IReadOnlyList<FilamentUsage>> GetBySpoolAsync(
|
||||||
|
Guid spoolId,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
return await _dbContext.FilamentUsages
|
||||||
|
.Where(u => u.SpoolId == spoolId)
|
||||||
|
.OrderByDescending(u => u.RecordedAt)
|
||||||
|
.ToListAsync(cancellationToken);
|
||||||
|
}
|
||||||
|
}
|
||||||
95
backend/Infrastructure/Services/LowStockDetector.cs
Normal file
95
backend/Infrastructure/Services/LowStockDetector.cs
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
using Extrudex.Domain.Interfaces;
|
||||||
|
using Microsoft.Extensions.Configuration;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
|
namespace Extrudex.Infrastructure.Services;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Detects low-stock filament spools by comparing the remaining weight percentage
|
||||||
|
/// against a configurable threshold. The threshold can be set via:
|
||||||
|
/// 1. EXTRUDEX_LOW_STOCK_THRESHOLD env var (highest priority, e.g. "25")
|
||||||
|
/// 2. FilamentAlerts:LowStockThresholdPercent in appsettings.json
|
||||||
|
/// 3. Default: 20% (a standard spool is "low" when ≤20% remains)
|
||||||
|
/// </summary>
|
||||||
|
public class LowStockDetector : ILowStockDetector
|
||||||
|
{
|
||||||
|
private readonly ILogger<LowStockDetector> _logger;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The percentage threshold below which a spool is considered low stock.
|
||||||
|
/// For example, 20 means a spool is "low" when ≤20% of its filament remains.
|
||||||
|
/// </summary>
|
||||||
|
public decimal LowStockThresholdPercent { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="LowStockDetector"/> class.
|
||||||
|
/// Reads the low-stock threshold from configuration with env var override support.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="configuration">Application configuration for threshold settings.</param>
|
||||||
|
/// <param name="logger">Logger for diagnostic output.</param>
|
||||||
|
public LowStockDetector(IConfiguration configuration, ILogger<LowStockDetector> logger)
|
||||||
|
{
|
||||||
|
_logger = logger;
|
||||||
|
|
||||||
|
// Priority: env var > appsettings > default (20%)
|
||||||
|
var envThreshold = Environment.GetEnvironmentVariable("EXTRUDEX_LOW_STOCK_THRESHOLD");
|
||||||
|
var configThreshold = configuration.GetValue<decimal?>("FilamentAlerts:LowStockThresholdPercent");
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(envThreshold) && decimal.TryParse(envThreshold, out var parsedEnv))
|
||||||
|
{
|
||||||
|
LowStockThresholdPercent = Math.Clamp(parsedEnv, 0m, 100m);
|
||||||
|
_logger.LogInformation(
|
||||||
|
"Low-stock threshold set from env var EXTRUDEX_LOW_STOCK_THRESHOLD: {Threshold}%",
|
||||||
|
LowStockThresholdPercent);
|
||||||
|
}
|
||||||
|
else if (configThreshold.HasValue)
|
||||||
|
{
|
||||||
|
LowStockThresholdPercent = Math.Clamp(configThreshold.Value, 0m, 100m);
|
||||||
|
_logger.LogInformation(
|
||||||
|
"Low-stock threshold set from config FilamentAlerts:LowStockThresholdPercent: {Threshold}%",
|
||||||
|
LowStockThresholdPercent);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
LowStockThresholdPercent = 20m;
|
||||||
|
_logger.LogInformation(
|
||||||
|
"Low-stock threshold using default: {Threshold}%", LowStockThresholdPercent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public bool IsLowStock(decimal weightRemainingGrams, decimal weightTotalGrams)
|
||||||
|
{
|
||||||
|
if (weightTotalGrams <= 0m)
|
||||||
|
{
|
||||||
|
_logger.LogDebug(
|
||||||
|
"Spool with total weight {Total}g cannot be evaluated for low stock — treating as not low",
|
||||||
|
weightTotalGrams);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var remainingPercent = GetRemainingWeightPercent(weightRemainingGrams, weightTotalGrams);
|
||||||
|
var isLow = remainingPercent <= LowStockThresholdPercent;
|
||||||
|
|
||||||
|
if (isLow)
|
||||||
|
{
|
||||||
|
_logger.LogDebug(
|
||||||
|
"Spool is LOW STOCK: {Remaining}g / {Total}g = {Percent:F1}% (threshold: {Threshold}%)",
|
||||||
|
weightRemainingGrams, weightTotalGrams, remainingPercent, LowStockThresholdPercent);
|
||||||
|
}
|
||||||
|
|
||||||
|
return isLow;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public decimal GetRemainingWeightPercent(decimal weightRemainingGrams, decimal weightTotalGrams)
|
||||||
|
{
|
||||||
|
if (weightTotalGrams <= 0m)
|
||||||
|
return 0m;
|
||||||
|
|
||||||
|
return Math.Round(
|
||||||
|
(weightRemainingGrams / weightTotalGrams) * 100m,
|
||||||
|
1,
|
||||||
|
MidpointRounding.AwayFromZero);
|
||||||
|
}
|
||||||
|
}
|
||||||
390
backend/Infrastructure/Services/MoonrakerUsagePoller.cs
Normal file
390
backend/Infrastructure/Services/MoonrakerUsagePoller.cs
Normal file
@@ -0,0 +1,390 @@
|
|||||||
|
using Extrudex.Domain.DTOs.Moonraker;
|
||||||
|
using Extrudex.Domain.Entities;
|
||||||
|
using Extrudex.Domain.Enums;
|
||||||
|
using Extrudex.Domain.Interfaces;
|
||||||
|
using Extrudex.Infrastructure.Data;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
using Microsoft.Extensions.Options;
|
||||||
|
|
||||||
|
namespace Extrudex.Infrastructure.Services;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Configuration options for the Moonraker usage polling service.
|
||||||
|
/// </summary>
|
||||||
|
public class MoonrakerPollerOptions
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// How often to poll each Moonraker printer for filament usage data.
|
||||||
|
/// Default: 30 seconds.
|
||||||
|
/// </summary>
|
||||||
|
public TimeSpan PollInterval { get; set; } = TimeSpan.FromSeconds(30);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Timeout for individual Moonraker HTTP requests.
|
||||||
|
/// Default: 10 seconds.
|
||||||
|
/// </summary>
|
||||||
|
public TimeSpan RequestTimeout { get; set; } = TimeSpan.FromSeconds(10);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether the polling service is enabled. Default: true.
|
||||||
|
/// Set to false to disable polling (e.g., in development or testing).
|
||||||
|
/// </summary>
|
||||||
|
public bool Enabled { get; set; } = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Background service that periodically polls Moonraker-connected printers
|
||||||
|
/// for filament usage data. When a print job is detected as complete,
|
||||||
|
/// the usage data is persisted to the FilamentUsage table via
|
||||||
|
/// <see cref="IFilamentUsageService"/>.
|
||||||
|
///
|
||||||
|
/// <para>Polling logic:</para>
|
||||||
|
/// <list type="number">
|
||||||
|
/// <item>Query the database for all active printers with ConnectionType == Moonraker.</item>
|
||||||
|
/// <item>For each printer, call <see cref="IMoonrakerClient.GetPrintStatsAsync"/> for live data
|
||||||
|
/// and <see cref="IMoonrakerClient.GetPrintHistoryAsync"/> for completed job history.</item>
|
||||||
|
/// <item>If usage data is available and the print state is "complete",
|
||||||
|
/// create or update a FilamentUsage record.</item>
|
||||||
|
/// <item>If the printer is unreachable or returns malformed data, log a warning
|
||||||
|
/// and continue to the next printer (no crash).</item>
|
||||||
|
/// </list>
|
||||||
|
///
|
||||||
|
/// <para>Error handling:</para>
|
||||||
|
/// <list type="bullet">
|
||||||
|
/// <item>API unreachable: logged as warning, poller continues for other printers.</item>
|
||||||
|
/// <item>Malformed response: logged as warning, poller continues.</item>
|
||||||
|
/// <item>Database errors: logged as error, poller continues.</item>
|
||||||
|
/// </list>
|
||||||
|
/// </summary>
|
||||||
|
public class MoonrakerUsagePoller : BackgroundService
|
||||||
|
{
|
||||||
|
private readonly IServiceScopeFactory _scopeFactory;
|
||||||
|
private readonly ILogger<MoonrakerUsagePoller> _logger;
|
||||||
|
private readonly MoonrakerPollerOptions _options;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Tracks which Moonraker print jobs have already been recorded,
|
||||||
|
/// keyed by "printerId:gcodeFileName" to avoid duplicate recording.
|
||||||
|
/// </summary>
|
||||||
|
private readonly HashSet<string> _recordedJobs = new();
|
||||||
|
|
||||||
|
public MoonrakerUsagePoller(
|
||||||
|
IServiceScopeFactory scopeFactory,
|
||||||
|
ILogger<MoonrakerUsagePoller> logger,
|
||||||
|
IOptions<MoonrakerPollerOptions> options)
|
||||||
|
{
|
||||||
|
_scopeFactory = scopeFactory;
|
||||||
|
_logger = logger;
|
||||||
|
_options = options.Value;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
||||||
|
{
|
||||||
|
if (!_options.Enabled)
|
||||||
|
{
|
||||||
|
_logger.LogInformation("Moonraker usage poller is disabled via configuration.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_logger.LogInformation(
|
||||||
|
"Moonraker usage poller starting. Poll interval: {Interval}",
|
||||||
|
_options.PollInterval);
|
||||||
|
|
||||||
|
while (!stoppingToken.IsCancellationRequested)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await PollAllPrintersAsync(stoppingToken);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.LogError(ex,
|
||||||
|
"Unexpected error in Moonraker usage poller cycle. Continuing.");
|
||||||
|
}
|
||||||
|
|
||||||
|
await Task.Delay(_options.PollInterval, stoppingToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
_logger.LogInformation("Moonraker usage poller stopping.");
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task PollAllPrintersAsync(CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
using var scope = _scopeFactory.CreateScope();
|
||||||
|
var dbContext = scope.ServiceProvider.GetRequiredService<ExtrudexDbContext>();
|
||||||
|
var moonrakerClient = scope.ServiceProvider.GetRequiredService<IMoonrakerClient>();
|
||||||
|
var usageService = scope.ServiceProvider.GetRequiredService<IFilamentUsageService>();
|
||||||
|
|
||||||
|
var printers = await dbContext.Printers
|
||||||
|
.Where(p => p.IsActive && p.ConnectionType == ConnectionType.Moonraker)
|
||||||
|
.ToListAsync(cancellationToken);
|
||||||
|
|
||||||
|
if (printers.Count == 0)
|
||||||
|
{
|
||||||
|
_logger.LogDebug("No active Moonraker printers found.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_logger.LogDebug("Polling {Count} Moonraker printer(s).", printers.Count);
|
||||||
|
|
||||||
|
foreach (var printer in printers)
|
||||||
|
{
|
||||||
|
await PollPrinterAsync(
|
||||||
|
printer, moonrakerClient, usageService, dbContext, cancellationToken);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task PollPrinterAsync(
|
||||||
|
Printer printer,
|
||||||
|
IMoonrakerClient moonrakerClient,
|
||||||
|
IFilamentUsageService usageService,
|
||||||
|
ExtrudexDbContext dbContext,
|
||||||
|
CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
_logger.LogDebug(
|
||||||
|
"Polling Moonraker printer {PrinterName} ({Host}:{Port})",
|
||||||
|
printer.Name, printer.HostnameOrIp, printer.Port);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var printStats = await moonrakerClient.GetPrintStatsAsync(
|
||||||
|
printer.HostnameOrIp,
|
||||||
|
printer.Port,
|
||||||
|
printer.ApiKey,
|
||||||
|
cancellationToken);
|
||||||
|
|
||||||
|
if (printStats is null)
|
||||||
|
{
|
||||||
|
_logger.LogDebug(
|
||||||
|
"No print stats available from printer {PrinterName}.", printer.Name);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
printer.LastSeenAt = DateTime.UtcNow;
|
||||||
|
await dbContext.SaveChangesAsync(cancellationToken);
|
||||||
|
|
||||||
|
_logger.LogDebug(
|
||||||
|
"Printer {PrinterName}: state={State}, filament={Mm}mm, file={File}",
|
||||||
|
printer.Name, printStats.State, printStats.FilamentUsedMm, printStats.Filename);
|
||||||
|
|
||||||
|
decimal mmExtruded = printStats.FilamentUsedMm;
|
||||||
|
if (mmExtruded <= 0)
|
||||||
|
{
|
||||||
|
_logger.LogDebug(
|
||||||
|
"Printer {PrinterName} has no filament usage to record.", printer.Name);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!IsCompleteState(printStats.State))
|
||||||
|
{
|
||||||
|
_logger.LogDebug(
|
||||||
|
"Printer {PrinterName} print state '{State}' is not complete; skipping.",
|
||||||
|
printer.Name, printStats.State);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
string gcodeFileName = printStats.Filename ?? $"unknown-{Guid.NewGuid():N}";
|
||||||
|
var deduplicationKey = $"{printer.Id}:{gcodeFileName}";
|
||||||
|
if (_recordedJobs.Contains(deduplicationKey))
|
||||||
|
{
|
||||||
|
_logger.LogDebug(
|
||||||
|
"Printer {PrinterName} job '{File}' already recorded; skipping.",
|
||||||
|
printer.Name, gcodeFileName);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
DateTime? startedAt = null;
|
||||||
|
DateTime? completedAt = null;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var history = await moonrakerClient.GetPrintHistoryAsync(
|
||||||
|
printer.HostnameOrIp, printer.Port, printer.ApiKey,
|
||||||
|
limit: 1, cancellationToken);
|
||||||
|
|
||||||
|
if (history.Items.Count > 0)
|
||||||
|
{
|
||||||
|
var latestJob = history.Items[0];
|
||||||
|
startedAt = latestJob.StartTime;
|
||||||
|
completedAt = latestJob.EndTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.LogDebug(ex,
|
||||||
|
"Could not fetch history for printer {PrinterName}; proceeding with stats only.",
|
||||||
|
printer.Name);
|
||||||
|
}
|
||||||
|
|
||||||
|
var printJob = await FindOrCreatePrintJobAsync(
|
||||||
|
dbContext, printer, mmExtruded, gcodeFileName,
|
||||||
|
startedAt, completedAt, cancellationToken);
|
||||||
|
|
||||||
|
if (printJob is null)
|
||||||
|
{
|
||||||
|
_logger.LogWarning(
|
||||||
|
"Could not find or create print job for printer {PrinterName}. No active spool found.",
|
||||||
|
printer.Name);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var spool = await dbContext.Spools.FindAsync(
|
||||||
|
new object[] { printJob.SpoolId }, cancellationToken);
|
||||||
|
|
||||||
|
var gramsUsed = CalculateGramsUsed(mmExtruded, spool);
|
||||||
|
|
||||||
|
await usageService.RecordUsageAsync(
|
||||||
|
printJobId: printJob.Id,
|
||||||
|
spoolId: printJob.SpoolId,
|
||||||
|
printerId: printer.Id,
|
||||||
|
gramsUsed: gramsUsed,
|
||||||
|
mmExtruded: mmExtruded,
|
||||||
|
notes: $"Moonraker auto-recorded: {gcodeFileName}",
|
||||||
|
cancellationToken: cancellationToken);
|
||||||
|
|
||||||
|
_recordedJobs.Add(deduplicationKey);
|
||||||
|
|
||||||
|
_logger.LogInformation(
|
||||||
|
"Recorded Moonraker usage for printer {PrinterName}: {Mm}mm / {Grams}g, job '{File}'",
|
||||||
|
printer.Name, mmExtruded, gramsUsed, gcodeFileName);
|
||||||
|
}
|
||||||
|
catch (HttpRequestException ex)
|
||||||
|
{
|
||||||
|
_logger.LogWarning(ex,
|
||||||
|
"Moonraker API unreachable for printer {PrinterName} ({Host}:{Port}). Will retry next cycle.",
|
||||||
|
printer.Name, printer.HostnameOrIp, printer.Port);
|
||||||
|
}
|
||||||
|
catch (TaskCanceledException) when (cancellationToken.IsCancellationRequested)
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
catch (TaskCanceledException ex)
|
||||||
|
{
|
||||||
|
_logger.LogWarning(ex,
|
||||||
|
"Moonraker request timed out for printer {PrinterName} ({Host}:{Port}).",
|
||||||
|
printer.Name, printer.HostnameOrIp, printer.Port);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.LogError(ex,
|
||||||
|
"Unexpected error polling Moonraker printer {PrinterName}. Continuing to next printer.",
|
||||||
|
printer.Name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool IsCompleteState(string state) =>
|
||||||
|
state.Equals("complete", StringComparison.OrdinalIgnoreCase) ||
|
||||||
|
state.Equals("completed", StringComparison.OrdinalIgnoreCase);
|
||||||
|
|
||||||
|
private async Task<PrintJob?> FindOrCreatePrintJobAsync(
|
||||||
|
ExtrudexDbContext dbContext,
|
||||||
|
Printer printer,
|
||||||
|
decimal mmExtruded,
|
||||||
|
string gcodeFileName,
|
||||||
|
DateTime? startedAt,
|
||||||
|
DateTime? completedAt,
|
||||||
|
CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrEmpty(gcodeFileName))
|
||||||
|
{
|
||||||
|
var existingJob = await dbContext.PrintJobs
|
||||||
|
.Where(j => j.PrinterId == printer.Id &&
|
||||||
|
j.GcodeFilePath == gcodeFileName &&
|
||||||
|
j.DataSource == DataSource.Moonraker &&
|
||||||
|
j.Status != JobStatus.Cancelled)
|
||||||
|
.OrderByDescending(j => j.CreatedAt)
|
||||||
|
.FirstOrDefaultAsync(cancellationToken);
|
||||||
|
|
||||||
|
if (existingJob is not null)
|
||||||
|
{
|
||||||
|
existingJob.MmExtruded = mmExtruded;
|
||||||
|
existingJob.GramsDerived = CalculateGramsUsed(
|
||||||
|
mmExtruded,
|
||||||
|
await dbContext.Spools.FindAsync(
|
||||||
|
new object[] { existingJob.SpoolId }, cancellationToken));
|
||||||
|
existingJob.Status = JobStatus.Completed;
|
||||||
|
existingJob.CompletedAt = completedAt ?? DateTime.UtcNow;
|
||||||
|
existingJob.StartedAt ??= startedAt;
|
||||||
|
await dbContext.SaveChangesAsync(cancellationToken);
|
||||||
|
return existingJob;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var spool = await FindActiveSpoolForPrinterAsync(dbContext, printer, cancellationToken);
|
||||||
|
if (spool is null) return null;
|
||||||
|
|
||||||
|
var gramsDerived = CalculateGramsUsed(mmExtruded, spool);
|
||||||
|
|
||||||
|
var newJob = new PrintJob
|
||||||
|
{
|
||||||
|
PrinterId = printer.Id,
|
||||||
|
SpoolId = spool.Id,
|
||||||
|
PrintName = gcodeFileName ?? "Moonraker Print",
|
||||||
|
GcodeFilePath = gcodeFileName,
|
||||||
|
MmExtruded = mmExtruded,
|
||||||
|
GramsDerived = gramsDerived,
|
||||||
|
FilamentDiameterAtPrintMm = spool.FilamentDiameterMm,
|
||||||
|
MaterialDensityAtPrint = GetMaterialDensity(spool),
|
||||||
|
DataSource = DataSource.Moonraker,
|
||||||
|
Status = JobStatus.Completed,
|
||||||
|
StartedAt = startedAt ?? DateTime.UtcNow,
|
||||||
|
CompletedAt = completedAt ?? DateTime.UtcNow,
|
||||||
|
Notes = "Auto-created by Moonraker usage poller"
|
||||||
|
};
|
||||||
|
|
||||||
|
dbContext.PrintJobs.Add(newJob);
|
||||||
|
await dbContext.SaveChangesAsync(cancellationToken);
|
||||||
|
|
||||||
|
return newJob;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static async Task<Spool?> FindActiveSpoolForPrinterAsync(
|
||||||
|
ExtrudexDbContext dbContext,
|
||||||
|
Printer printer,
|
||||||
|
CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
var amsSpool = await dbContext.AmsSlots
|
||||||
|
.Include(s => s.Spool)
|
||||||
|
.ThenInclude(s => s!.MaterialBase)
|
||||||
|
.Include(s => s.AmsUnit)
|
||||||
|
.Where(s => s.AmsUnit.PrinterId == printer.Id && s.Spool != null && s.Spool.IsActive)
|
||||||
|
.Select(s => s.Spool)
|
||||||
|
.FirstOrDefaultAsync(cancellationToken);
|
||||||
|
|
||||||
|
if (amsSpool is not null) return amsSpool;
|
||||||
|
|
||||||
|
return await dbContext.Spools
|
||||||
|
.Include(s => s.MaterialBase)
|
||||||
|
.Where(s => s.IsActive)
|
||||||
|
.OrderByDescending(s => s.WeightRemainingGrams)
|
||||||
|
.FirstOrDefaultAsync(cancellationToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static decimal CalculateGramsUsed(decimal mmExtruded, Spool? spool)
|
||||||
|
{
|
||||||
|
if (spool is null) return 0m;
|
||||||
|
var diameterMm = spool.FilamentDiameterMm;
|
||||||
|
var densityGcm3 = GetMaterialDensity(spool);
|
||||||
|
var radiusMm = diameterMm / 2m;
|
||||||
|
var crossSectionArea = Math.PI * (double)radiusMm * (double)radiusMm;
|
||||||
|
var volumeMm3 = (double)mmExtruded * crossSectionArea;
|
||||||
|
var volumeCm3 = volumeMm3 / 1000.0;
|
||||||
|
var grams = volumeCm3 * (double)densityGcm3;
|
||||||
|
return Math.Round((decimal)grams, 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static decimal GetMaterialDensity(Spool? spool)
|
||||||
|
{
|
||||||
|
return spool?.MaterialBase?.Name?.ToUpperInvariant() switch
|
||||||
|
{
|
||||||
|
"PLA" => 1.24m,
|
||||||
|
"PETG" => 1.27m,
|
||||||
|
"ABS" => 1.04m,
|
||||||
|
"ASA" => 1.07m,
|
||||||
|
"TPU" => 1.21m,
|
||||||
|
"NYLON" or "PA" => 1.13m,
|
||||||
|
"PC" => 1.20m,
|
||||||
|
_ => 1.24m
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
81
backend/Infrastructure/Services/UsageLogService.cs
Normal file
81
backend/Infrastructure/Services/UsageLogService.cs
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
using Extrudex.Domain.Entities;
|
||||||
|
using Extrudex.Domain.Enums;
|
||||||
|
using Extrudex.Domain.Interfaces;
|
||||||
|
using Extrudex.Infrastructure.Data;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
|
namespace Extrudex.Infrastructure.Services;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Implementation of <see cref="IUsageLogService"/> that persists usage entries
|
||||||
|
/// to the usage_logs table via EF Core.
|
||||||
|
/// </summary>
|
||||||
|
public class UsageLogService : IUsageLogService
|
||||||
|
{
|
||||||
|
private readonly ExtrudexDbContext _dbContext;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="UsageLogService"/> class.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="dbContext">The EF Core database context for data persistence.</param>
|
||||||
|
public UsageLogService(ExtrudexDbContext dbContext)
|
||||||
|
{
|
||||||
|
_dbContext = dbContext;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public async Task<UsageLog> RecordUsageAsync(
|
||||||
|
Guid spoolId,
|
||||||
|
decimal gramsUsed,
|
||||||
|
DataSource dataSource,
|
||||||
|
Guid? printerId = null,
|
||||||
|
Guid? printJobId = null,
|
||||||
|
decimal? mmExtruded = null,
|
||||||
|
DateTime? usageTimestamp = null,
|
||||||
|
string? notes = null)
|
||||||
|
{
|
||||||
|
var entry = new UsageLog
|
||||||
|
{
|
||||||
|
SpoolId = spoolId,
|
||||||
|
GramsUsed = gramsUsed,
|
||||||
|
DataSource = dataSource,
|
||||||
|
PrinterId = printerId,
|
||||||
|
PrintJobId = printJobId,
|
||||||
|
MmExtruded = mmExtruded,
|
||||||
|
UsageTimestamp = usageTimestamp ?? DateTime.UtcNow,
|
||||||
|
Notes = notes
|
||||||
|
};
|
||||||
|
|
||||||
|
_dbContext.UsageLogs.Add(entry);
|
||||||
|
await _dbContext.SaveChangesAsync();
|
||||||
|
|
||||||
|
return entry;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public async Task<IEnumerable<UsageLog>> GetBySpoolAsync(Guid spoolId, CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
return await _dbContext.UsageLogs
|
||||||
|
.Where(u => u.SpoolId == spoolId)
|
||||||
|
.OrderByDescending(u => u.UsageTimestamp)
|
||||||
|
.ToListAsync(cancellationToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public async Task<IEnumerable<UsageLog>> GetByPrinterAsync(Guid printerId, CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
return await _dbContext.UsageLogs
|
||||||
|
.Where(u => u.PrinterId == printerId)
|
||||||
|
.OrderByDescending(u => u.UsageTimestamp)
|
||||||
|
.ToListAsync(cancellationToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public async Task<IEnumerable<UsageLog>> GetByPrintJobAsync(Guid printJobId, CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
return await _dbContext.UsageLogs
|
||||||
|
.Where(u => u.PrintJobId == printJobId)
|
||||||
|
.OrderByDescending(u => u.UsageTimestamp)
|
||||||
|
.ToListAsync(cancellationToken);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -55,6 +55,20 @@ builder.Services.AddSingleton<IQrCodeService, QrCodeService>();
|
|||||||
// ── Cost Per Print Calculation ─────────────────────────────
|
// ── Cost Per Print Calculation ─────────────────────────────
|
||||||
builder.Services.AddScoped<ICostPerPrintService, CostPerPrintService>();
|
builder.Services.AddScoped<ICostPerPrintService, CostPerPrintService>();
|
||||||
|
|
||||||
|
// ── Low Stock Detection ────────────────────────────────────
|
||||||
|
builder.Services.AddSingleton<ILowStockDetector, LowStockDetector>();
|
||||||
|
|
||||||
|
// ── Usage Logging ───────────────────────────────────────────
|
||||||
|
builder.Services.AddScoped<IUsageLogService, UsageLogService>();
|
||||||
|
|
||||||
|
// ── Filament Usage Service ──────────────────────────────────
|
||||||
|
builder.Services.AddScoped<IFilamentUsageService, FilamentUsageService>();
|
||||||
|
|
||||||
|
// ── Moonraker Usage Poller (Background Service) ─────────────
|
||||||
|
builder.Services.Configure<MoonrakerPollerOptions>(
|
||||||
|
builder.Configuration.GetSection("MoonrakerPoller"));
|
||||||
|
builder.Services.AddHostedService<MoonrakerUsagePoller>();
|
||||||
|
|
||||||
// ── FluentValidation ──────────────────────────────────────
|
// ── FluentValidation ──────────────────────────────────────
|
||||||
// Registers all validators from the API assembly into DI.
|
// Registers all validators from the API assembly into DI.
|
||||||
builder.Services.AddValidatorsFromAssembly(Assembly.GetExecutingAssembly());
|
builder.Services.AddValidatorsFromAssembly(Assembly.GetExecutingAssembly());
|
||||||
|
|||||||
@@ -20,5 +20,14 @@
|
|||||||
"RequestTimeout": "00:00:15",
|
"RequestTimeout": "00:00:15",
|
||||||
"Enabled": true,
|
"Enabled": true,
|
||||||
"HistoryBatchSize": 25
|
"HistoryBatchSize": 25
|
||||||
|
},
|
||||||
|
"FilamentAlerts": {
|
||||||
|
"LowStockThresholdPercent": 20
|
||||||
|
},
|
||||||
|
"MoonrakerPoller": {
|
||||||
|
"Enabled": true,
|
||||||
|
"PollInterval": "00:00:30",
|
||||||
|
"RequestTimeout": "00:00:10"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
7
backend/go.mod
Normal file
7
backend/go.mod
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
module github.com/CubeCraft-Creations/Extrudex/backend
|
||||||
|
|
||||||
|
go 1.24
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/jackc/pgx/v5 v5.7.4
|
||||||
|
)
|
||||||
162
backend/internal/models/models.go
Normal file
162
backend/internal/models/models.go
Normal file
@@ -0,0 +1,162 @@
|
|||||||
|
// Package models defines the Extrudex domain model structs.
|
||||||
|
// These map 1:1 to PostgreSQL tables with snake_case JSON serialization.
|
||||||
|
// Nullable fields use pointer types; all timestamps are time.Time.
|
||||||
|
package models
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// Lookup Tables
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
// PrinterType represents a printer technology category (fdm, resin, etc.).
|
||||||
|
type PrinterType struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
CreatedAt time.Time `json:"created_at"`
|
||||||
|
UpdatedAt time.Time `json:"updated_at"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// JobStatus represents a print job lifecycle state.
|
||||||
|
type JobStatus struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
CreatedAt time.Time `json:"created_at"`
|
||||||
|
UpdatedAt time.Time `json:"updated_at"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// MaterialBase represents a base material type (PLA, PETG, ABS, etc.).
|
||||||
|
// Density and temperature ranges are stored here for grams-calculation and slicing guidance.
|
||||||
|
type MaterialBase struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
DensityGCm3 float64 `json:"density_g_cm3"`
|
||||||
|
ExtrusionTempMin *int `json:"extrusion_temp_min,omitempty"`
|
||||||
|
ExtrusionTempMax *int `json:"extrusion_temp_max,omitempty"`
|
||||||
|
BedTempMin *int `json:"bed_temp_min,omitempty"`
|
||||||
|
BedTempMax *int `json:"bed_temp_max,omitempty"`
|
||||||
|
CreatedAt time.Time `json:"created_at"`
|
||||||
|
UpdatedAt time.Time `json:"updated_at"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// MaterialFinish represents the visual/texture finish (Basic, Silk, Matte, etc.).
|
||||||
|
type MaterialFinish struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Description *string `json:"description,omitempty"`
|
||||||
|
CreatedAt time.Time `json:"created_at"`
|
||||||
|
UpdatedAt time.Time `json:"updated_at"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// MaterialModifier represents an additive property (Carbon Fiber, Wood-Filled, etc.).
|
||||||
|
type MaterialModifier struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Description *string `json:"description,omitempty"`
|
||||||
|
CreatedAt time.Time `json:"created_at"`
|
||||||
|
UpdatedAt time.Time `json:"updated_at"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// Core Entity Tables
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
// Printer represents a 3D printer in the fleet.
|
||||||
|
type Printer struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
PrinterTypeID int `json:"printer_type_id"`
|
||||||
|
PrinterType *PrinterType `json:"printer_type,omitempty"` // populated on JOIN queries
|
||||||
|
Manufacturer *string `json:"manufacturer,omitempty"`
|
||||||
|
Model *string `json:"model,omitempty"`
|
||||||
|
MoonrakerURL *string `json:"moonraker_url,omitempty"`
|
||||||
|
MoonrakerAPIKey *string `json:"moonraker_api_key,omitempty"`
|
||||||
|
MQTTBrokerHost *string `json:"mqtt_broker_host,omitempty"`
|
||||||
|
MQTTTopicPrefix *string `json:"mqtt_topic_prefix,omitempty"`
|
||||||
|
MQTTTLSEnabled bool `json:"mqtt_tls_enabled"`
|
||||||
|
IsActive bool `json:"is_active"`
|
||||||
|
CreatedAt time.Time `json:"created_at"`
|
||||||
|
UpdatedAt time.Time `json:"updated_at"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// FilamentSpool represents a physical filament spool in inventory.
|
||||||
|
// material_finish_id defaults to 1 ("Basic"); material_modifier_id is optional.
|
||||||
|
// Grams are always physically measured values — grams_used is derived, not stored.
|
||||||
|
type FilamentSpool struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
MaterialBaseID int `json:"material_base_id"`
|
||||||
|
MaterialBase *MaterialBase `json:"material_base,omitempty"` // JOIN
|
||||||
|
MaterialFinishID int `json:"material_finish_id"`
|
||||||
|
MaterialFinish *MaterialFinish `json:"material_finish,omitempty"` // JOIN
|
||||||
|
MaterialModifierID *int `json:"material_modifier_id,omitempty"`
|
||||||
|
MaterialModifier *MaterialModifier `json:"material_modifier,omitempty"` // JOIN
|
||||||
|
ColorHex string `json:"color_hex"`
|
||||||
|
Brand *string `json:"brand,omitempty"`
|
||||||
|
DiameterMM float64 `json:"diameter_mm"`
|
||||||
|
InitialGrams int `json:"initial_grams"`
|
||||||
|
RemainingGrams int `json:"remaining_grams"`
|
||||||
|
SpoolWeightGrams *int `json:"spool_weight_grams,omitempty"`
|
||||||
|
CostUSD *float64 `json:"cost_usd,omitempty"`
|
||||||
|
LowStockThresholdGrams int `json:"low_stock_threshold_grams"`
|
||||||
|
Notes *string `json:"notes,omitempty"`
|
||||||
|
Barcode *string `json:"barcode,omitempty"`
|
||||||
|
DeletedAt *time.Time `json:"deleted_at,omitempty"`
|
||||||
|
CreatedAt time.Time `json:"created_at"`
|
||||||
|
UpdatedAt time.Time `json:"updated_at"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// PrintJob represents a single print on a specific printer.
|
||||||
|
// The filament_spool_id is a convenience reference; multi-spool jobs track usage in usage_logs.
|
||||||
|
type PrintJob struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
PrinterID int `json:"printer_id"`
|
||||||
|
Printer *Printer `json:"printer,omitempty"` // JOIN
|
||||||
|
FilamentSpoolID *int `json:"filament_spool_id,omitempty"`
|
||||||
|
FilamentSpool *FilamentSpool `json:"filament_spool,omitempty"` // JOIN
|
||||||
|
JobName string `json:"job_name"`
|
||||||
|
FileName *string `json:"file_name,omitempty"`
|
||||||
|
JobStatusID int `json:"job_status_id"`
|
||||||
|
JobStatus *JobStatus `json:"job_status,omitempty"` // JOIN
|
||||||
|
StartedAt *time.Time `json:"started_at,omitempty"`
|
||||||
|
CompletedAt *time.Time `json:"completed_at,omitempty"`
|
||||||
|
DurationSeconds *int `json:"duration_seconds,omitempty"`
|
||||||
|
EstimatedDurationSeconds *int `json:"estimated_duration_seconds,omitempty"`
|
||||||
|
TotalMMExtruded *float64 `json:"total_mm_extruded,omitempty"`
|
||||||
|
TotalGramsUsed *float64 `json:"total_grams_used,omitempty"`
|
||||||
|
TotalCostUSD *float64 `json:"total_cost_usd,omitempty"`
|
||||||
|
Notes *string `json:"notes,omitempty"`
|
||||||
|
DeletedAt *time.Time `json:"deleted_at,omitempty"`
|
||||||
|
CreatedAt time.Time `json:"created_at"`
|
||||||
|
UpdatedAt time.Time `json:"updated_at"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// UsageLog records filament consumption for a specific spool during a print job.
|
||||||
|
// This is the atomic unit of filament tracking — grams are derived from mm_extruded.
|
||||||
|
type UsageLog struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
PrintJobID int `json:"print_job_id"`
|
||||||
|
PrintJob *PrintJob `json:"print_job,omitempty"` // JOIN
|
||||||
|
FilamentSpoolID int `json:"filament_spool_id"`
|
||||||
|
FilamentSpool *FilamentSpool `json:"filament_spool,omitempty"` // JOIN
|
||||||
|
MMExtruded float64 `json:"mm_extruded"`
|
||||||
|
GramsUsed float64 `json:"grams_used"`
|
||||||
|
CostUSD *float64 `json:"cost_usd,omitempty"`
|
||||||
|
LoggedAt time.Time `json:"logged_at"`
|
||||||
|
CreatedAt time.Time `json:"created_at"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================================================
|
||||||
|
// Application Settings
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
// Setting represents a key-value application configuration entry.
|
||||||
|
// The value is stored as JSONB in PostgreSQL, allowing flexible typed config.
|
||||||
|
type Setting struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
Key string `json:"key"`
|
||||||
|
Value []byte `json:"value"` // raw JSON — marshalled/unmarshalled by caller
|
||||||
|
Description *string `json:"description,omitempty"`
|
||||||
|
CreatedAt time.Time `json:"created_at"`
|
||||||
|
UpdatedAt time.Time `json:"updated_at"`
|
||||||
|
}
|
||||||
19
backend/migrations/000001_initial_schema.down.sql
Normal file
19
backend/migrations/000001_initial_schema.down.sql
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
-- Migration: 000001_initial_schema (rollback)
|
||||||
|
-- Description: Drop all tables and indexes created in the initial schema migration
|
||||||
|
-- Author: Hex
|
||||||
|
-- Date: 2026-05-06
|
||||||
|
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS usage_logs CASCADE;
|
||||||
|
DROP TABLE IF EXISTS print_jobs CASCADE;
|
||||||
|
DROP TABLE IF EXISTS filament_spools CASCADE;
|
||||||
|
DROP TABLE IF EXISTS printers CASCADE;
|
||||||
|
DROP TABLE IF EXISTS settings CASCADE;
|
||||||
|
DROP TABLE IF EXISTS material_modifiers CASCADE;
|
||||||
|
DROP TABLE IF EXISTS material_finishes CASCADE;
|
||||||
|
DROP TABLE IF EXISTS material_bases CASCADE;
|
||||||
|
DROP TABLE IF EXISTS job_statuses CASCADE;
|
||||||
|
DROP TABLE IF EXISTS printer_types CASCADE;
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
231
backend/migrations/000001_initial_schema.up.sql
Normal file
231
backend/migrations/000001_initial_schema.up.sql
Normal file
@@ -0,0 +1,231 @@
|
|||||||
|
-- Migration: 000001_initial_schema
|
||||||
|
-- Description: Create initial Extrudex schema — lookup tables, core entities, and settings
|
||||||
|
-- Author: Hex
|
||||||
|
-- Date: 2026-05-06
|
||||||
|
--
|
||||||
|
-- Design decisions:
|
||||||
|
-- - Lookup tables for material_base, material_finish, material_modifier (no free-text enums)
|
||||||
|
-- - Lookup tables for printer_type and job_status (extensible, no hard-coded enum values)
|
||||||
|
-- - FK ON DELETE: RESTRICT on critical parents (material_base, material_finish, printer),
|
||||||
|
-- SET NULL on optional parents (modifier, spool on print_jobs),
|
||||||
|
-- CASCADE for usage_logs when parent job is deleted
|
||||||
|
-- - Soft-delete (deleted_at) on spools and print_jobs for safety
|
||||||
|
-- - JSONB config column on settings for flexible app-wide configuration
|
||||||
|
-- - All identifiers snake_case per project convention
|
||||||
|
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
-- ============================================================================
|
||||||
|
-- Lookup Tables
|
||||||
|
-- ============================================================================
|
||||||
|
|
||||||
|
-- Printer types (fdm, resin, etc.) — extensible, not a raw enum
|
||||||
|
CREATE TABLE printer_types (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
name VARCHAR(50) NOT NULL UNIQUE,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
-- Job statuses (pending, printing, paused, completed, failed, cancelled)
|
||||||
|
CREATE TABLE job_statuses (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
name VARCHAR(50) NOT NULL UNIQUE,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
-- Material base types (PLA, PETG, ABS, TPU, ASA, Nylon, PC)
|
||||||
|
CREATE TABLE material_bases (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
name VARCHAR(100) NOT NULL UNIQUE,
|
||||||
|
density_g_cm3 DECIMAL(5,3) NOT NULL,
|
||||||
|
extrusion_temp_min INT,
|
||||||
|
extrusion_temp_max INT,
|
||||||
|
bed_temp_min INT,
|
||||||
|
bed_temp_max INT,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
-- Material finishes (Basic, Silk, Matte, Glossy, Satin)
|
||||||
|
CREATE TABLE material_finishes (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
name VARCHAR(100) NOT NULL UNIQUE,
|
||||||
|
description TEXT,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
-- Material modifiers (Wood-Filled, Carbon Fiber, Glow-in-Dark, Marble)
|
||||||
|
CREATE TABLE material_modifiers (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
name VARCHAR(100) NOT NULL UNIQUE,
|
||||||
|
description TEXT,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
-- ============================================================================
|
||||||
|
-- Core Entity Tables
|
||||||
|
-- ============================================================================
|
||||||
|
|
||||||
|
-- 3D printers in the fleet
|
||||||
|
CREATE TABLE printers (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
name VARCHAR(255) NOT NULL,
|
||||||
|
printer_type_id INT NOT NULL,
|
||||||
|
manufacturer VARCHAR(255),
|
||||||
|
model VARCHAR(255),
|
||||||
|
moonraker_url VARCHAR(512),
|
||||||
|
moonraker_api_key VARCHAR(512),
|
||||||
|
mqtt_broker_host VARCHAR(255),
|
||||||
|
mqtt_topic_prefix VARCHAR(255),
|
||||||
|
mqtt_tls_enabled BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
|
is_active BOOLEAN NOT NULL DEFAULT TRUE,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
|
||||||
|
CONSTRAINT fk_printers_printer_type
|
||||||
|
FOREIGN KEY (printer_type_id) REFERENCES printer_types(id)
|
||||||
|
ON DELETE RESTRICT
|
||||||
|
);
|
||||||
|
|
||||||
|
-- Filament spools — the core inventory item
|
||||||
|
CREATE TABLE filament_spools (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
name VARCHAR(255) NOT NULL,
|
||||||
|
material_base_id INT NOT NULL,
|
||||||
|
material_finish_id INT NOT NULL DEFAULT 1, -- "Basic" (seed data populates this first)
|
||||||
|
material_modifier_id INT,
|
||||||
|
color_hex VARCHAR(7) NOT NULL CHECK (color_hex ~ '^#[0-9A-Fa-f]{6}$'),
|
||||||
|
brand VARCHAR(255),
|
||||||
|
diameter_mm DECIMAL(4,2) NOT NULL DEFAULT 1.75,
|
||||||
|
initial_grams INT NOT NULL CHECK (initial_grams > 0),
|
||||||
|
remaining_grams INT NOT NULL CHECK (remaining_grams >= 0),
|
||||||
|
spool_weight_grams INT, -- measured empty-spool weight (tare), nullable
|
||||||
|
cost_usd DECIMAL(10,2),
|
||||||
|
low_stock_threshold_grams INT NOT NULL DEFAULT 50,
|
||||||
|
notes TEXT,
|
||||||
|
barcode VARCHAR(255) UNIQUE,
|
||||||
|
deleted_at TIMESTAMPTZ,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
|
||||||
|
CONSTRAINT fk_spools_material_base
|
||||||
|
FOREIGN KEY (material_base_id) REFERENCES material_bases(id)
|
||||||
|
ON DELETE RESTRICT,
|
||||||
|
|
||||||
|
CONSTRAINT fk_spools_material_finish
|
||||||
|
FOREIGN KEY (material_finish_id) REFERENCES material_finishes(id)
|
||||||
|
ON DELETE RESTRICT,
|
||||||
|
|
||||||
|
CONSTRAINT fk_spools_material_modifier
|
||||||
|
FOREIGN KEY (material_modifier_id) REFERENCES material_modifiers(id)
|
||||||
|
ON DELETE SET NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
-- Print jobs — each job is one print on one printer
|
||||||
|
CREATE TABLE print_jobs (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
printer_id INT NOT NULL,
|
||||||
|
filament_spool_id INT, -- nullable: a job may use multiple spools (captured in usage_logs)
|
||||||
|
job_name VARCHAR(255) NOT NULL,
|
||||||
|
file_name VARCHAR(512),
|
||||||
|
job_status_id INT NOT NULL DEFAULT 1, -- "pending"
|
||||||
|
started_at TIMESTAMPTZ,
|
||||||
|
completed_at TIMESTAMPTZ,
|
||||||
|
duration_seconds INT,
|
||||||
|
estimated_duration_seconds INT,
|
||||||
|
total_mm_extruded DECIMAL(12,2),
|
||||||
|
total_grams_used DECIMAL(10,2),
|
||||||
|
total_cost_usd DECIMAL(10,4),
|
||||||
|
notes TEXT,
|
||||||
|
deleted_at TIMESTAMPTZ,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
|
||||||
|
CONSTRAINT fk_print_jobs_printer
|
||||||
|
FOREIGN KEY (printer_id) REFERENCES printers(id)
|
||||||
|
ON DELETE RESTRICT,
|
||||||
|
|
||||||
|
CONSTRAINT fk_print_jobs_spool
|
||||||
|
FOREIGN KEY (filament_spool_id) REFERENCES filament_spools(id)
|
||||||
|
ON DELETE SET NULL,
|
||||||
|
|
||||||
|
CONSTRAINT fk_print_jobs_status
|
||||||
|
FOREIGN KEY (job_status_id) REFERENCES job_statuses(id)
|
||||||
|
ON DELETE RESTRICT
|
||||||
|
);
|
||||||
|
|
||||||
|
-- Usage logs — granular tracking of filament consumed per job, per spool
|
||||||
|
CREATE TABLE usage_logs (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
print_job_id INT NOT NULL,
|
||||||
|
filament_spool_id INT NOT NULL,
|
||||||
|
mm_extruded DECIMAL(12,2) NOT NULL CHECK (mm_extruded > 0),
|
||||||
|
grams_used DECIMAL(10,2) NOT NULL CHECK (grams_used > 0),
|
||||||
|
cost_usd DECIMAL(10,4),
|
||||||
|
logged_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
|
||||||
|
CONSTRAINT fk_usage_logs_print_job
|
||||||
|
FOREIGN KEY (print_job_id) REFERENCES print_jobs(id)
|
||||||
|
ON DELETE CASCADE,
|
||||||
|
|
||||||
|
CONSTRAINT fk_usage_logs_spool
|
||||||
|
FOREIGN KEY (filament_spool_id) REFERENCES filament_spools(id)
|
||||||
|
ON DELETE RESTRICT
|
||||||
|
);
|
||||||
|
|
||||||
|
-- ============================================================================
|
||||||
|
-- Application Settings
|
||||||
|
-- ============================================================================
|
||||||
|
|
||||||
|
CREATE TABLE settings (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
key VARCHAR(255) NOT NULL UNIQUE,
|
||||||
|
value JSONB NOT NULL,
|
||||||
|
description TEXT,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
-- ============================================================================
|
||||||
|
-- Indexes
|
||||||
|
-- ============================================================================
|
||||||
|
|
||||||
|
-- Filament spools — query patterns: lookup by material, low-stock scans, barcode scans
|
||||||
|
CREATE INDEX ix_spools_material_base_id ON filament_spools(material_base_id);
|
||||||
|
CREATE INDEX ix_spools_material_finish_id ON filament_spools(material_finish_id);
|
||||||
|
CREATE INDEX ix_spools_material_modifier_id ON filament_spools(material_modifier_id);
|
||||||
|
CREATE INDEX ix_spools_remaining_grams ON filament_spools(remaining_grams)
|
||||||
|
WHERE deleted_at IS NULL; -- partial index: only active spools for low-stock queries
|
||||||
|
CREATE INDEX ix_spools_barcode ON filament_spools(barcode)
|
||||||
|
WHERE barcode IS NOT NULL AND deleted_at IS NULL;
|
||||||
|
CREATE INDEX ix_spools_deleted_at ON filament_spools(deleted_at)
|
||||||
|
WHERE deleted_at IS NOT NULL; -- small index for soft-delete filtering
|
||||||
|
|
||||||
|
-- Printers
|
||||||
|
CREATE INDEX ix_printers_printer_type_id ON printers(printer_type_id);
|
||||||
|
CREATE INDEX ix_printers_is_active ON printers(is_active)
|
||||||
|
WHERE is_active = TRUE; -- partial index for fleet dashboard queries
|
||||||
|
|
||||||
|
-- Print jobs — query by printer, status, date range, and soft-delete filter
|
||||||
|
CREATE INDEX ix_print_jobs_printer_id ON print_jobs(printer_id);
|
||||||
|
CREATE INDEX ix_print_jobs_spool_id ON print_jobs(filament_spool_id)
|
||||||
|
WHERE filament_spool_id IS NOT NULL;
|
||||||
|
CREATE INDEX ix_print_jobs_status_id ON print_jobs(job_status_id);
|
||||||
|
CREATE INDEX ix_print_jobs_created_at ON print_jobs(created_at DESC);
|
||||||
|
CREATE INDEX ix_print_jobs_deleted_at ON print_jobs(deleted_at)
|
||||||
|
WHERE deleted_at IS NOT NULL;
|
||||||
|
|
||||||
|
-- Usage logs — always queried by job or spool
|
||||||
|
CREATE INDEX ix_usage_logs_print_job_id ON usage_logs(print_job_id);
|
||||||
|
CREATE INDEX ix_usage_logs_spool_id ON usage_logs(filament_spool_id);
|
||||||
|
CREATE INDEX ix_usage_logs_logged_at ON usage_logs(logged_at DESC);
|
||||||
|
|
||||||
|
-- Settings — key lookups
|
||||||
|
CREATE INDEX ix_settings_key ON settings(key);
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
15
backend/migrations/000002_seed_data.down.sql
Normal file
15
backend/migrations/000002_seed_data.down.sql
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
-- Migration: 000002_seed_data (rollback)
|
||||||
|
-- Description: Remove seed data inserted in 000002
|
||||||
|
-- Author: Hex
|
||||||
|
-- Date: 2026-05-06
|
||||||
|
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
DELETE FROM settings WHERE key IN ('default_low_stock_threshold_grams', 'default_diameter_mm', 'filament_cross_section_area_mm2');
|
||||||
|
DELETE FROM material_modifiers WHERE id IN (1, 2, 3, 4);
|
||||||
|
DELETE FROM material_finishes WHERE id IN (1, 2, 3, 4, 5);
|
||||||
|
DELETE FROM material_bases WHERE id IN (1, 2, 3, 4, 5, 6, 7);
|
||||||
|
DELETE FROM job_statuses WHERE id IN (1, 2, 3, 4, 5, 6);
|
||||||
|
DELETE FROM printer_types WHERE id IN (1, 2);
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
95
backend/migrations/000002_seed_data.up.sql
Normal file
95
backend/migrations/000002_seed_data.up.sql
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
-- Seed Data: Extrudex common reference data
|
||||||
|
-- Author: Hex
|
||||||
|
-- Date: 2026-05-06
|
||||||
|
--
|
||||||
|
-- IMPORTANT: IDs are explicitly assigned to satisfy the DEFAULT constraints:
|
||||||
|
-- - filament_spools.material_finish_id DEFAULT 1 ("Basic")
|
||||||
|
-- - print_jobs.job_status_id DEFAULT 1 ("pending")
|
||||||
|
--
|
||||||
|
-- Density values sourced from common manufacturer specifications.
|
||||||
|
-- Temperature ranges are conservative/typical; users can override per-spool.
|
||||||
|
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
-- ============================================================================
|
||||||
|
-- Printer Types
|
||||||
|
-- ============================================================================
|
||||||
|
|
||||||
|
INSERT INTO printer_types (id, name) VALUES
|
||||||
|
(1, 'fdm'),
|
||||||
|
(2, 'resin')
|
||||||
|
ON CONFLICT (id) DO NOTHING;
|
||||||
|
|
||||||
|
-- Reset the sequence so future inserts start after our explicit IDs
|
||||||
|
SELECT setval('printer_types_id_seq', GREATEST(2, (SELECT MAX(id) FROM printer_types)));
|
||||||
|
|
||||||
|
-- ============================================================================
|
||||||
|
-- Job Statuses
|
||||||
|
-- ============================================================================
|
||||||
|
|
||||||
|
INSERT INTO job_statuses (id, name) VALUES
|
||||||
|
(1, 'pending'),
|
||||||
|
(2, 'printing'),
|
||||||
|
(3, 'paused'),
|
||||||
|
(4, 'completed'),
|
||||||
|
(5, 'failed'),
|
||||||
|
(6, 'cancelled')
|
||||||
|
ON CONFLICT (id) DO NOTHING;
|
||||||
|
|
||||||
|
SELECT setval('job_statuses_id_seq', GREATEST(6, (SELECT MAX(id) FROM job_statuses)));
|
||||||
|
|
||||||
|
-- ============================================================================
|
||||||
|
-- Material Bases (common filament types)
|
||||||
|
-- ============================================================================
|
||||||
|
|
||||||
|
INSERT INTO material_bases (id, name, density_g_cm3, extrusion_temp_min, extrusion_temp_max, bed_temp_min, bed_temp_max) VALUES
|
||||||
|
(1, 'PLA', 1.24, 190, 220, 0, 60),
|
||||||
|
(2, 'PETG', 1.27, 230, 250, 70, 90),
|
||||||
|
(3, 'ABS', 1.04, 230, 260, 90, 110),
|
||||||
|
(4, 'TPU', 1.21, 220, 250, 0, 60),
|
||||||
|
(5, 'ASA', 1.07, 240, 260, 90, 110),
|
||||||
|
(6, 'Nylon', 1.14, 240, 280, 70, 100),
|
||||||
|
(7, 'PC', 1.20, 260, 310, 90, 120)
|
||||||
|
ON CONFLICT (id) DO NOTHING;
|
||||||
|
|
||||||
|
SELECT setval('material_bases_id_seq', GREATEST(7, (SELECT MAX(id) FROM material_bases)));
|
||||||
|
|
||||||
|
-- ============================================================================
|
||||||
|
-- Material Finishes
|
||||||
|
-- ============================================================================
|
||||||
|
-- ID 1 = "Basic" is the default for new spools (DEFAULT 1 constraint)
|
||||||
|
|
||||||
|
INSERT INTO material_finishes (id, name, description) VALUES
|
||||||
|
(1, 'Basic', 'Standard solid-color filament with no special finish'),
|
||||||
|
(2, 'Silk', 'Glossy silk-like sheen, often used for decorative prints'),
|
||||||
|
(3, 'Matte', 'Flat non-reflective surface finish'),
|
||||||
|
(4, 'Glossy', 'High-shine reflective surface'),
|
||||||
|
(5, 'Satin', 'Semi-gloss between matte and glossy')
|
||||||
|
ON CONFLICT (id) DO NOTHING;
|
||||||
|
|
||||||
|
SELECT setval('material_finishes_id_seq', GREATEST(5, (SELECT MAX(id) FROM material_finishes)));
|
||||||
|
|
||||||
|
-- ============================================================================
|
||||||
|
-- Material Modifiers
|
||||||
|
-- ============================================================================
|
||||||
|
|
||||||
|
INSERT INTO material_modifiers (id, name, description) VALUES
|
||||||
|
(1, 'Wood-Filled', 'Contains wood fibers for natural wood-like appearance and texture'),
|
||||||
|
(2, 'Carbon Fiber', 'Reinforced with carbon fibers for increased stiffness and strength'),
|
||||||
|
(3, 'Glow-in-Dark', 'Phosphorescent additive that glows after exposure to light'),
|
||||||
|
(4, 'Marble', 'Contains specks for a stone-like marble appearance')
|
||||||
|
ON CONFLICT (id) DO NOTHING;
|
||||||
|
|
||||||
|
SELECT setval('material_modifiers_id_seq', GREATEST(4, (SELECT MAX(id) FROM material_modifiers)));
|
||||||
|
|
||||||
|
-- ============================================================================
|
||||||
|
-- Default Application Settings
|
||||||
|
-- ============================================================================
|
||||||
|
|
||||||
|
INSERT INTO settings (key, value, description) VALUES
|
||||||
|
('default_low_stock_threshold_grams', '50', 'Default grams threshold for low-stock alerts on new spools'),
|
||||||
|
('default_diameter_mm', '1.75', 'Default filament diameter for new spools (1.75mm is the modern standard)'),
|
||||||
|
('filament_cross_section_area_mm2', '2.405', 'Cross-sectional area for 1.75mm filament: π × (1.75/2)²')
|
||||||
|
ON CONFLICT (key) DO NOTHING;
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
@@ -1,11 +1,13 @@
|
|||||||
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
|
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
|
||||||
import { provideRouter } from '@angular/router';
|
import { provideRouter } from '@angular/router';
|
||||||
|
import { provideHttpClient } from '@angular/common/http';
|
||||||
|
|
||||||
import { routes } from './app.routes';
|
import { routes } from './app.routes';
|
||||||
|
|
||||||
export const appConfig: ApplicationConfig = {
|
export const appConfig: ApplicationConfig = {
|
||||||
providers: [
|
providers: [
|
||||||
provideBrowserGlobalErrorListeners(),
|
provideBrowserGlobalErrorListeners(),
|
||||||
provideRouter(routes)
|
provideRouter(routes),
|
||||||
|
provideHttpClient(),
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -5,6 +5,9 @@
|
|||||||
<!-- Status Summary Bar — fleet-wide health at a glance -->
|
<!-- Status Summary Bar — fleet-wide health at a glance -->
|
||||||
<app-dashboard-summary></app-dashboard-summary>
|
<app-dashboard-summary></app-dashboard-summary>
|
||||||
|
|
||||||
|
<!-- Inventory Summary — filament metrics at a glance -->
|
||||||
|
<app-inventory-summary></app-inventory-summary>
|
||||||
|
|
||||||
<!-- Filament Inventory — routed view -->
|
<!-- Filament Inventory — routed view -->
|
||||||
<router-outlet />
|
<router-outlet />
|
||||||
</main>
|
</main>
|
||||||
@@ -1,11 +1,12 @@
|
|||||||
import { Component, ViewChild } from '@angular/core';
|
import { Component, ViewChild } from '@angular/core';
|
||||||
import { RouterOutlet } from '@angular/router';
|
import { RouterOutlet } from '@angular/router';
|
||||||
import { DashboardSummaryComponent } from './components/dashboard-summary/dashboard-summary.component';
|
import { DashboardSummaryComponent } from './components/dashboard-summary/dashboard-summary.component';
|
||||||
|
import { InventorySummaryComponent } from './components/inventory-summary/inventory-summary.component';
|
||||||
import { AgentSummary, SystemHealth } from './models/agent.model';
|
import { AgentSummary, SystemHealth } from './models/agent.model';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-root',
|
selector: 'app-root',
|
||||||
imports: [RouterOutlet, DashboardSummaryComponent],
|
imports: [RouterOutlet, DashboardSummaryComponent, InventorySummaryComponent],
|
||||||
templateUrl: './app.html',
|
templateUrl: './app.html',
|
||||||
styleUrl: './app.scss'
|
styleUrl: './app.scss'
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -0,0 +1,225 @@
|
|||||||
|
<!-- Filament Add/Edit Dialog — Angular Material Dialog -->
|
||||||
|
<mat-dialog-content class="filament-dialog-content">
|
||||||
|
|
||||||
|
<!-- Dialog Title -->
|
||||||
|
<h2 mat-dialog-title>{{ dialogTitle() }}</h2>
|
||||||
|
|
||||||
|
<!-- Loading state for lookup data -->
|
||||||
|
@if (lookupsLoading()) {
|
||||||
|
<div class="dialog-loading" role="status" aria-label="Loading material options">
|
||||||
|
<mat-spinner diameter="32"></mat-spinner>
|
||||||
|
<p>Loading material options…</p>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
<!-- Form -->
|
||||||
|
@if (!lookupsLoading()) {
|
||||||
|
<form [formGroup]="form" class="filament-form" (ngSubmit)="save()">
|
||||||
|
|
||||||
|
<!-- Server Error Banner -->
|
||||||
|
@if (serverError()) {
|
||||||
|
<div class="error-banner" role="alert">
|
||||||
|
<mat-icon aria-hidden="true">error</mat-icon>
|
||||||
|
<span>{{ serverError() }}</span>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
<!-- ── Material Section ──────────────────────────────── -->
|
||||||
|
<div class="form-section">
|
||||||
|
<h3 class="section-title">Material</h3>
|
||||||
|
|
||||||
|
<!-- Base Material -->
|
||||||
|
<mat-form-field appearance="outline" class="form-field full-width">
|
||||||
|
<mat-label>Base Material</mat-label>
|
||||||
|
<mat-select formControlName="materialBaseId" required aria-label="Base material">
|
||||||
|
@for (base of materialBases(); track base.id) {
|
||||||
|
<mat-option [value]="base.id">{{ base.name }}</mat-option>
|
||||||
|
}
|
||||||
|
</mat-select>
|
||||||
|
@if (form.get('materialBaseId')!.hasError('required') && form.get('materialBaseId')!.touched) {
|
||||||
|
<mat-error>Base material is required</mat-error>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
|
||||||
|
<!-- Finish -->
|
||||||
|
<mat-form-field appearance="outline" class="form-field full-width">
|
||||||
|
<mat-label>Finish</mat-label>
|
||||||
|
<mat-select formControlName="materialFinishId" required aria-label="Material finish">
|
||||||
|
<mat-option [value]="''" disabled>Select a base material first</mat-option>
|
||||||
|
@for (finish of filteredFinishes(); track finish.id) {
|
||||||
|
<mat-option [value]="finish.id">{{ finish.name }}</mat-option>
|
||||||
|
}
|
||||||
|
</mat-select>
|
||||||
|
@if (form.get('materialFinishId')!.hasError('required') && form.get('materialFinishId')!.touched) {
|
||||||
|
<mat-error>Finish is required</mat-error>
|
||||||
|
}
|
||||||
|
@if (filteredFinishes().length === 0 && form.get('materialBaseId')!.value) {
|
||||||
|
<mat-hint>No finishes available for this material</mat-hint>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
|
||||||
|
<!-- Modifier (optional) -->
|
||||||
|
<mat-form-field appearance="outline" class="form-field full-width">
|
||||||
|
<mat-label>Modifier (optional)</mat-label>
|
||||||
|
<mat-select formControlName="materialModifierId" aria-label="Material modifier">
|
||||||
|
<mat-option [value]="null">None</mat-option>
|
||||||
|
@for (modifier of filteredModifiers(); track modifier.id) {
|
||||||
|
<mat-option [value]="modifier.id">{{ modifier.name }}</mat-option>
|
||||||
|
}
|
||||||
|
</mat-select>
|
||||||
|
@if (filteredModifiers().length === 0 && form.get('materialBaseId')!.value) {
|
||||||
|
<mat-hint>No modifiers available for this material</mat-hint>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ── Spool Details Section ──────────────────────────── -->
|
||||||
|
<div class="form-section">
|
||||||
|
<h3 class="section-title">Spool Details</h3>
|
||||||
|
|
||||||
|
<!-- Brand -->
|
||||||
|
<mat-form-field appearance="outline" class="form-field full-width">
|
||||||
|
<mat-label>Brand</mat-label>
|
||||||
|
<input matInput formControlName="brand" required maxlength="200"
|
||||||
|
placeholder="e.g., Bambu Lab, Polymaker" aria-label="Brand" />
|
||||||
|
@if (form.get('brand')!.hasError('required') && form.get('brand')!.touched) {
|
||||||
|
<mat-error>Brand is required</mat-error>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
|
||||||
|
<!-- Serial -->
|
||||||
|
<mat-form-field appearance="outline" class="form-field full-width">
|
||||||
|
<mat-label>Serial Number</mat-label>
|
||||||
|
<input matInput formControlName="spoolSerial" required maxlength="200"
|
||||||
|
placeholder="e.g., SN-001" aria-label="Serial number" />
|
||||||
|
@if (form.get('spoolSerial')!.hasError('required') && form.get('spoolSerial')!.touched) {
|
||||||
|
<mat-error>Serial number is required</mat-error>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
|
||||||
|
<!-- Color Name + Color Hex (side by side) -->
|
||||||
|
<div class="form-row">
|
||||||
|
<mat-form-field appearance="outline" class="form-field">
|
||||||
|
<mat-label>Color Name</mat-label>
|
||||||
|
<input matInput formControlName="colorName" required maxlength="200"
|
||||||
|
placeholder="e.g., Fire Engine Red" aria-label="Color name" />
|
||||||
|
@if (form.get('colorName')!.hasError('required') && form.get('colorName')!.touched) {
|
||||||
|
<mat-error>Color name is required</mat-error>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
|
||||||
|
<mat-form-field appearance="outline" class="form-field color-hex-field">
|
||||||
|
<mat-label>Color Hex</mat-label>
|
||||||
|
<input matInput formControlName="colorHex" required
|
||||||
|
placeholder="#FF0000" maxlength="7" aria-label="Color hex code" />
|
||||||
|
<span matTextSuffix class="color-preview">
|
||||||
|
<span class="color-swatch-mini" [style.background-color]="form.get('colorHex')!.value"></span>
|
||||||
|
</span>
|
||||||
|
@if (form.get('colorHex')!.hasError('required') && form.get('colorHex')!.touched) {
|
||||||
|
<mat-error>Color hex is required</mat-error>
|
||||||
|
}
|
||||||
|
@if (form.get('colorHex')!.hasError('pattern') && form.get('colorHex')!.touched) {
|
||||||
|
<mat-error>Must be #RRGGBB format</mat-error>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ── Weight & Dimensions Section ────────────────────── -->
|
||||||
|
<div class="form-section">
|
||||||
|
<h3 class="section-title">Weight & Dimensions</h3>
|
||||||
|
|
||||||
|
<div class="form-row">
|
||||||
|
<!-- Diameter -->
|
||||||
|
<mat-form-field appearance="outline" class="form-field">
|
||||||
|
<mat-label>Diameter (mm)</mat-label>
|
||||||
|
<input matInput type="number" formControlName="filamentDiameterMm" required
|
||||||
|
min="0.1" max="10" step="0.01" aria-label="Filament diameter in mm" />
|
||||||
|
@if (form.get('filamentDiameterMm')!.hasError('required') && form.get('filamentDiameterMm')!.touched) {
|
||||||
|
<mat-error>Diameter is required</mat-error>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-row">
|
||||||
|
<!-- Total Weight -->
|
||||||
|
<mat-form-field appearance="outline" class="form-field">
|
||||||
|
<mat-label>Total Weight (g)</mat-label>
|
||||||
|
<input matInput type="number" formControlName="weightTotalGrams" required
|
||||||
|
min="0.01" max="100000" step="1" aria-label="Total spool weight in grams" />
|
||||||
|
<mat-hint>Full spool weight</mat-hint>
|
||||||
|
@if (form.get('weightTotalGrams')!.hasError('required') && form.get('weightTotalGrams')!.touched) {
|
||||||
|
<mat-error>Total weight is required</mat-error>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
|
||||||
|
<!-- Remaining Weight -->
|
||||||
|
<mat-form-field appearance="outline" class="form-field">
|
||||||
|
<mat-label>Remaining Weight (g)</mat-label>
|
||||||
|
<input matInput type="number" formControlName="weightRemainingGrams" required
|
||||||
|
min="0" max="100000" step="1" aria-label="Remaining weight in grams" />
|
||||||
|
<mat-hint>Current remaining</mat-hint>
|
||||||
|
@if (form.get('weightRemainingGrams')!.hasError('required') && form.get('weightRemainingGrams')!.touched) {
|
||||||
|
<mat-error>Remaining weight is required</mat-error>
|
||||||
|
}
|
||||||
|
@if (form.get('weightRemainingGrams')!.hasError('exceedsTotal')) {
|
||||||
|
<mat-error>Cannot exceed total weight</mat-error>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ── Purchase & Status Section ──────────────────────── -->
|
||||||
|
<div class="form-section">
|
||||||
|
<h3 class="section-title">Purchase & Status</h3>
|
||||||
|
|
||||||
|
<div class="form-row">
|
||||||
|
<!-- Purchase Price -->
|
||||||
|
<mat-form-field appearance="outline" class="form-field">
|
||||||
|
<mat-label>Price</mat-label>
|
||||||
|
<input matInput type="number" formControlName="purchasePrice"
|
||||||
|
min="0" max="1000000" step="0.01"
|
||||||
|
placeholder="e.g., 25.00" aria-label="Purchase price" />
|
||||||
|
<span matTextSuffix>$</span>
|
||||||
|
@if (form.get('purchasePrice')!.hasError('min') && form.get('purchasePrice')!.touched) {
|
||||||
|
<mat-error>Price must be non-negative</mat-error>
|
||||||
|
}
|
||||||
|
</mat-form-field>
|
||||||
|
|
||||||
|
<!-- Purchase Date -->
|
||||||
|
<mat-form-field appearance="outline" class="form-field">
|
||||||
|
<mat-label>Purchase Date</mat-label>
|
||||||
|
<input matInput [matDatepicker]="picker" formControlName="purchaseDate"
|
||||||
|
aria-label="Purchase date" />
|
||||||
|
<mat-datepicker-toggle matIconSuffix [for]="picker"></mat-datepicker-toggle>
|
||||||
|
<mat-datepicker #picker></mat-datepicker>
|
||||||
|
</mat-form-field>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Active Status -->
|
||||||
|
<div class="checkbox-row">
|
||||||
|
<mat-checkbox formControlName="isActive" aria-label="Active status">
|
||||||
|
Spool is active and available for use
|
||||||
|
</mat-checkbox>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
}
|
||||||
|
|
||||||
|
</mat-dialog-content>
|
||||||
|
|
||||||
|
<!-- Dialog Actions -->
|
||||||
|
<mat-dialog-actions align="end">
|
||||||
|
<button mat-button type="button" (click)="cancel()" [disabled]="saving()"
|
||||||
|
aria-label="Cancel">
|
||||||
|
Cancel
|
||||||
|
</button>
|
||||||
|
<button mat-raised-button color="primary" type="button" (click)="save()"
|
||||||
|
[disabled]="saving() || form.invalid" aria-label="Save filament">
|
||||||
|
@if (saving()) {
|
||||||
|
<mat-spinner diameter="20" class="btn-spinner"></mat-spinner>
|
||||||
|
}
|
||||||
|
{{ isEditMode() ? 'Save Changes' : 'Add Filament' }}
|
||||||
|
</button>
|
||||||
|
</mat-dialog-actions>
|
||||||
@@ -0,0 +1,175 @@
|
|||||||
|
/**
|
||||||
|
* Filament Dialog Styles
|
||||||
|
* Touch-optimized for kiosk (Raspberry Pi 5) and mobile PWA
|
||||||
|
*/
|
||||||
|
|
||||||
|
$touch-target-min: 48px;
|
||||||
|
$spacing-unit: 8px;
|
||||||
|
$color-error: #ef4444;
|
||||||
|
|
||||||
|
// ── Dialog Layout ──────────────────────────────────────────
|
||||||
|
|
||||||
|
.filament-dialog-content {
|
||||||
|
overflow-y: auto;
|
||||||
|
max-height: 70vh;
|
||||||
|
padding: 0 $spacing-unit * 2;
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
padding: 0 $spacing-unit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[mat-dialog-title] {
|
||||||
|
margin: 0 0 $spacing-unit * 2 0;
|
||||||
|
padding: $spacing-unit * 2 0 0 0;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Loading State ──────────────────────────────────────────
|
||||||
|
|
||||||
|
.dialog-loading {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 48px $spacing-unit * 2;
|
||||||
|
color: var(--mat-sys-on-surface-variant);
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-top: $spacing-unit * 2;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Error Banner ───────────────────────────────────────────
|
||||||
|
|
||||||
|
.error-banner {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: $spacing-unit;
|
||||||
|
padding: $spacing-unit * 1.5 $spacing-unit * 2;
|
||||||
|
border-radius: 8px;
|
||||||
|
margin-bottom: $spacing-unit * 2;
|
||||||
|
background-color: rgba($color-error, 0.12);
|
||||||
|
color: $color-error;
|
||||||
|
border: 1px solid rgba($color-error, 0.3);
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
|
|
||||||
|
mat-icon {
|
||||||
|
font-size: 20px !important;
|
||||||
|
width: 20px !important;
|
||||||
|
height: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Form Sections ──────────────────────────────────────────
|
||||||
|
|
||||||
|
.form-section {
|
||||||
|
margin-bottom: $spacing-unit * 3;
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 600;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.04em;
|
||||||
|
color: var(--mat-sys-on-surface-variant);
|
||||||
|
margin: 0 0 $spacing-unit * 1.5 0;
|
||||||
|
padding-bottom: $spacing-unit * 0.5;
|
||||||
|
border-bottom: 1px solid var(--mat-sys-outline-variant);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.filament-form {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: $spacing-unit;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Form Fields ────────────────────────────────────────────
|
||||||
|
|
||||||
|
.form-field {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
// Touch target sizing
|
||||||
|
.mat-mdc-form-field-subscript-wrapper {
|
||||||
|
min-height: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-row {
|
||||||
|
display: flex;
|
||||||
|
gap: $spacing-unit * 2;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.form-field {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Color Hex Preview ──────────────────────────────────────
|
||||||
|
|
||||||
|
.color-hex-field {
|
||||||
|
max-width: 180px;
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.color-preview {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.color-swatch-mini {
|
||||||
|
display: inline-block;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
border-radius: 4px;
|
||||||
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Checkbox Row ───────────────────────────────────────────
|
||||||
|
|
||||||
|
.checkbox-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: $spacing-unit 0;
|
||||||
|
|
||||||
|
mat-checkbox {
|
||||||
|
min-height: $touch-target-min;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Save Button Spinner ────────────────────────────────────
|
||||||
|
|
||||||
|
mat-dialog-actions {
|
||||||
|
padding: $spacing-unit $spacing-unit * 2 $spacing-unit * 2;
|
||||||
|
gap: $spacing-unit;
|
||||||
|
|
||||||
|
button {
|
||||||
|
min-height: $touch-target-min;
|
||||||
|
min-width: 100px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-spinner {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: $spacing-unit;
|
||||||
|
vertical-align: middle;
|
||||||
|
|
||||||
|
circle {
|
||||||
|
stroke: currentColor;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,277 @@
|
|||||||
|
import {
|
||||||
|
ChangeDetectionStrategy,
|
||||||
|
Component,
|
||||||
|
inject,
|
||||||
|
signal,
|
||||||
|
computed,
|
||||||
|
} from '@angular/core';
|
||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { FormsModule, ReactiveFormsModule, FormBuilder, FormGroup, Validators } from '@angular/forms';
|
||||||
|
import { MatDialogRef, MAT_DIALOG_DATA, MatDialogModule } from '@angular/material/dialog';
|
||||||
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
||||||
|
import { MatInputModule } from '@angular/material/input';
|
||||||
|
import { MatSelectModule } from '@angular/material/select';
|
||||||
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
||||||
|
import { MatNativeDateModule } from '@angular/material/core';
|
||||||
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
||||||
|
import { MatButtonModule } from '@angular/material/button';
|
||||||
|
import { MatIconModule } from '@angular/material/icon';
|
||||||
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
||||||
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||||
|
|
||||||
|
import { Filament } from '../../models/filament.model';
|
||||||
|
import {
|
||||||
|
MaterialBase,
|
||||||
|
MaterialFinish,
|
||||||
|
MaterialModifier,
|
||||||
|
} from '../../models/material.model';
|
||||||
|
import {
|
||||||
|
FilamentService,
|
||||||
|
CreateFilamentRequest,
|
||||||
|
UpdateFilamentRequest,
|
||||||
|
} from '../../services/filament.service';
|
||||||
|
|
||||||
|
/** Data passed into the dialog from the opener. */
|
||||||
|
export interface FilamentDialogData {
|
||||||
|
/** If provided, the dialog opens in edit mode with pre-populated fields. */
|
||||||
|
filament?: Filament;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-filament-dialog',
|
||||||
|
standalone: true,
|
||||||
|
imports: [
|
||||||
|
CommonModule,
|
||||||
|
FormsModule,
|
||||||
|
ReactiveFormsModule,
|
||||||
|
MatDialogModule,
|
||||||
|
MatFormFieldModule,
|
||||||
|
MatInputModule,
|
||||||
|
MatSelectModule,
|
||||||
|
MatDatepickerModule,
|
||||||
|
MatNativeDateModule,
|
||||||
|
MatCheckboxModule,
|
||||||
|
MatButtonModule,
|
||||||
|
MatIconModule,
|
||||||
|
MatProgressSpinnerModule,
|
||||||
|
MatTooltipModule,
|
||||||
|
],
|
||||||
|
templateUrl: './filament-dialog.component.html',
|
||||||
|
styleUrl: './filament-dialog.component.scss',
|
||||||
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
|
})
|
||||||
|
export class FilamentDialogComponent {
|
||||||
|
private readonly dialogRef = inject(MatDialogRef<FilamentDialogComponent>);
|
||||||
|
private readonly data = inject<FilamentDialogData>(MAT_DIALOG_DATA);
|
||||||
|
private readonly fb = inject(FormBuilder);
|
||||||
|
private readonly filamentService = inject(FilamentService);
|
||||||
|
|
||||||
|
/** Whether this dialog is in edit mode (has existing filament data). */
|
||||||
|
readonly isEditMode = computed(() => !!this.data.filament);
|
||||||
|
|
||||||
|
/** Dialog title based on mode. */
|
||||||
|
readonly dialogTitle = computed(() =>
|
||||||
|
this.isEditMode() ? 'Edit Filament' : 'Add Filament'
|
||||||
|
);
|
||||||
|
|
||||||
|
// ── Lookup data signals ──────────────────────────────────
|
||||||
|
|
||||||
|
/** All material bases for the base material dropdown. */
|
||||||
|
readonly materialBases = signal<MaterialBase[]>([]);
|
||||||
|
|
||||||
|
/** Material finishes filtered by selected base material. */
|
||||||
|
readonly filteredFinishes = signal<MaterialFinish[]>([]);
|
||||||
|
|
||||||
|
/** Material modifiers filtered by selected base material. */
|
||||||
|
readonly filteredModifiers = signal<MaterialModifier[]>([]);
|
||||||
|
|
||||||
|
/** Whether material lookups are loading. */
|
||||||
|
readonly lookupsLoading = signal(true);
|
||||||
|
|
||||||
|
/** Whether the save operation is in progress. */
|
||||||
|
readonly saving = signal(false);
|
||||||
|
|
||||||
|
/** Server error message, if any. */
|
||||||
|
readonly serverError = signal<string | null>(null);
|
||||||
|
|
||||||
|
// ── Form ─────────────────────────────────────────────────
|
||||||
|
|
||||||
|
readonly form: FormGroup = this.fb.group({
|
||||||
|
materialBaseId: ['', Validators.required],
|
||||||
|
materialFinishId: ['', Validators.required],
|
||||||
|
materialModifierId: [null],
|
||||||
|
brand: ['', [Validators.required, Validators.maxLength(200)]],
|
||||||
|
colorName: ['', [Validators.required, Validators.maxLength(200)]],
|
||||||
|
colorHex: ['#000000', [Validators.required, Validators.pattern(/^#[0-9A-Fa-f]{6}$/)]],
|
||||||
|
weightTotalGrams: [1000, [Validators.required, Validators.min(0.01), Validators.max(100000)]],
|
||||||
|
weightRemainingGrams: [1000, [Validators.required, Validators.min(0), Validators.max(100000)]],
|
||||||
|
filamentDiameterMm: [1.75, [Validators.required, Validators.min(0.1), Validators.max(10)]],
|
||||||
|
spoolSerial: ['', [Validators.required, Validators.maxLength(200)]],
|
||||||
|
purchasePrice: [null, [Validators.min(0), Validators.max(1000000)]],
|
||||||
|
purchaseDate: [null],
|
||||||
|
isActive: [true],
|
||||||
|
});
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
this.loadLookups();
|
||||||
|
this.patchFormIfEditing();
|
||||||
|
this.setupCascadingFilters();
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Data loading ─────────────────────────────────────────
|
||||||
|
|
||||||
|
/** Load material bases, finishes, and modifiers for dropdowns. */
|
||||||
|
private loadLookups(): void {
|
||||||
|
this.lookupsLoading.set(true);
|
||||||
|
this.filamentService.getMaterialBases().subscribe({
|
||||||
|
next: (bases) => {
|
||||||
|
this.materialBases.set(bases);
|
||||||
|
this.lookupsLoading.set(false);
|
||||||
|
},
|
||||||
|
error: () => {
|
||||||
|
this.lookupsLoading.set(false);
|
||||||
|
this.serverError.set('Failed to load material options. Please try again.');
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Pre-populate form fields when editing an existing filament. */
|
||||||
|
private patchFormIfEditing(): void {
|
||||||
|
if (this.data.filament) {
|
||||||
|
const f = this.data.filament;
|
||||||
|
this.form.patchValue({
|
||||||
|
materialBaseId: f.materialBaseId,
|
||||||
|
materialFinishId: f.materialFinishId,
|
||||||
|
materialModifierId: f.materialModifierId,
|
||||||
|
brand: f.brand,
|
||||||
|
colorName: f.colorName,
|
||||||
|
colorHex: f.colorHex,
|
||||||
|
weightTotalGrams: f.weightTotalGrams,
|
||||||
|
weightRemainingGrams: f.weightRemainingGrams,
|
||||||
|
filamentDiameterMm: f.filamentDiameterMm,
|
||||||
|
spoolSerial: f.spoolSerial,
|
||||||
|
purchasePrice: f.purchasePrice,
|
||||||
|
purchaseDate: f.purchaseDate ? new Date(f.purchaseDate) : null,
|
||||||
|
isActive: f.isActive,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Set up cascading filter: when base material changes, reload finishes & modifiers. */
|
||||||
|
private setupCascadingFilters(): void {
|
||||||
|
this.form.get('materialBaseId')!.valueChanges.subscribe((baseId: string | null) => {
|
||||||
|
// Clear dependent selections when base changes
|
||||||
|
this.form.get('materialFinishId')!.setValue('');
|
||||||
|
this.form.get('materialModifierId')!.setValue(null);
|
||||||
|
this.filteredFinishes.set([]);
|
||||||
|
this.filteredModifiers.set([]);
|
||||||
|
|
||||||
|
if (!baseId) return;
|
||||||
|
|
||||||
|
this.filamentService.getMaterialFinishes(baseId).subscribe({
|
||||||
|
next: (finishes) => this.filteredFinishes.set(finishes),
|
||||||
|
error: () => this.filteredFinishes.set([]),
|
||||||
|
});
|
||||||
|
|
||||||
|
this.filamentService.getMaterialModifiers(baseId).subscribe({
|
||||||
|
next: (modifiers) => this.filteredModifiers.set(modifiers),
|
||||||
|
error: () => this.filteredModifiers.set([]),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// If editing, trigger the cascading load for the pre-selected base
|
||||||
|
if (this.data.filament) {
|
||||||
|
const baseId = this.data.filament.materialBaseId;
|
||||||
|
// We need to load finishes and modifiers for the pre-selected base
|
||||||
|
// but also re-select the original finish and modifier after loading
|
||||||
|
this.filamentService.getMaterialFinishes(baseId).subscribe({
|
||||||
|
next: (finishes) => {
|
||||||
|
this.filteredFinishes.set(finishes);
|
||||||
|
// Re-patch finish after load
|
||||||
|
this.form.get('materialFinishId')!.setValue(this.data.filament!.materialFinishId);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
this.filamentService.getMaterialModifiers(baseId).subscribe({
|
||||||
|
next: (modifiers) => {
|
||||||
|
this.filteredModifiers.set(modifiers);
|
||||||
|
// Re-patch modifier after load
|
||||||
|
this.form.get('materialModifierId')!.setValue(this.data.filament!.materialModifierId);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Actions ──────────────────────────────────────────────
|
||||||
|
|
||||||
|
/** Cancel and close the dialog without saving. */
|
||||||
|
cancel(): void {
|
||||||
|
this.dialogRef.close(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Submit the form — creates or updates the filament. */
|
||||||
|
save(): void {
|
||||||
|
if (this.form.invalid) {
|
||||||
|
this.form.markAllAsTouched();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cross-field validation: remaining weight must not exceed total weight
|
||||||
|
const total = this.form.value.weightTotalGrams;
|
||||||
|
const remaining = this.form.value.weightRemainingGrams;
|
||||||
|
if (remaining > total) {
|
||||||
|
this.form.get('weightRemainingGrams')!.setErrors({ exceedsTotal: true });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.saving.set(true);
|
||||||
|
this.serverError.set(null);
|
||||||
|
|
||||||
|
const formValue = this.form.value;
|
||||||
|
const request: CreateFilamentRequest | UpdateFilamentRequest = {
|
||||||
|
materialBaseId: formValue.materialBaseId,
|
||||||
|
materialFinishId: formValue.materialFinishId,
|
||||||
|
materialModifierId: formValue.materialModifierId || null,
|
||||||
|
brand: formValue.brand.trim(),
|
||||||
|
colorName: formValue.colorName.trim(),
|
||||||
|
colorHex: formValue.colorHex,
|
||||||
|
weightTotalGrams: formValue.weightTotalGrams,
|
||||||
|
weightRemainingGrams: formValue.weightRemainingGrams,
|
||||||
|
filamentDiameterMm: formValue.filamentDiameterMm,
|
||||||
|
spoolSerial: formValue.spoolSerial.trim(),
|
||||||
|
purchasePrice: formValue.purchasePrice ?? null,
|
||||||
|
purchaseDate: formValue.purchaseDate
|
||||||
|
? new Date(formValue.purchaseDate).toISOString()
|
||||||
|
: null,
|
||||||
|
isActive: formValue.isActive,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (this.isEditMode()) {
|
||||||
|
const id = this.data.filament!.id;
|
||||||
|
this.filamentService.updateFilament(id, request).subscribe({
|
||||||
|
next: (updated) => {
|
||||||
|
this.saving.set(false);
|
||||||
|
this.dialogRef.close(true);
|
||||||
|
},
|
||||||
|
error: (err) => {
|
||||||
|
this.saving.set(false);
|
||||||
|
this.serverError.set(
|
||||||
|
err?.error?.error || err?.message || 'Failed to update filament. Please try again.'
|
||||||
|
);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.filamentService.createFilament(request).subscribe({
|
||||||
|
next: (created) => {
|
||||||
|
this.saving.set(false);
|
||||||
|
this.dialogRef.close(true);
|
||||||
|
},
|
||||||
|
error: (err) => {
|
||||||
|
this.saving.set(false);
|
||||||
|
this.serverError.set(
|
||||||
|
err?.error?.error || err?.message || 'Failed to create filament. Please try again.'
|
||||||
|
);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -83,6 +83,35 @@
|
|||||||
</td>
|
</td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
|
<!-- Cost Column -->
|
||||||
|
<ng-container matColumnDef="cost">
|
||||||
|
<th mat-header-cell *matHeaderCellDef mat-sort-header="cost">Cost</th>
|
||||||
|
<td mat-cell *matCellDef="let filament">
|
||||||
|
<div class="cost-cell">
|
||||||
|
@if (filament.purchasePrice !== null) {
|
||||||
|
<span class="cost-price">{{ formatCurrency(filament.purchasePrice) }}</span>
|
||||||
|
@let cpg = getCostPerGram(filament);
|
||||||
|
@if (cpg !== null) {
|
||||||
|
<span class="cost-per-gram">${{ cpg.toFixed(2) }}/g</span>
|
||||||
|
}
|
||||||
|
} @else {
|
||||||
|
<span class="cost-unknown">—</span>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<!-- Usage Column -->
|
||||||
|
<ng-container matColumnDef="usage">
|
||||||
|
<th mat-header-cell *matHeaderCellDef mat-sort-header="usage">Usage</th>
|
||||||
|
<td mat-cell *matCellDef="let filament">
|
||||||
|
<div class="usage-cell">
|
||||||
|
<span class="usage-grams">{{ formatWeight(getGramsUsed(filament)) }} used</span>
|
||||||
|
<span class="usage-remaining">{{ formatWeight(filament.weightRemainingGrams) }} left</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
<!-- Stock Level Indicator Column -->
|
<!-- Stock Level Indicator Column -->
|
||||||
<ng-container matColumnDef="stockLevel">
|
<ng-container matColumnDef="stockLevel">
|
||||||
<th mat-header-cell *matHeaderCellDef mat-sort-header="stockLevel">Stock</th>
|
<th mat-header-cell *matHeaderCellDef mat-sort-header="stockLevel">Stock</th>
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ $color-inactive: #94a3b8; // Gray — inactive spool
|
|||||||
// Table styling
|
// Table styling
|
||||||
.filament-table {
|
.filament-table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-width: 700px;
|
min-width: 900px;
|
||||||
|
|
||||||
th {
|
th {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
@@ -132,6 +132,48 @@ $color-inactive: #94a3b8; // Gray — inactive spool
|
|||||||
letter-spacing: 0.02em;
|
letter-spacing: 0.02em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Cost cell
|
||||||
|
.cost-cell {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 2px;
|
||||||
|
min-width: 80px;
|
||||||
|
|
||||||
|
.cost-price {
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--mat-sys-on-surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cost-per-gram {
|
||||||
|
font-size: 11px;
|
||||||
|
color: var(--mat-sys-on-surface-variant);
|
||||||
|
letter-spacing: 0.02em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cost-unknown {
|
||||||
|
color: var(--mat-sys-on-surface-variant);
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Usage cell
|
||||||
|
.usage-cell {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 2px;
|
||||||
|
min-width: 100px;
|
||||||
|
|
||||||
|
.usage-grams {
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--mat-sys-on-surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
.usage-remaining {
|
||||||
|
font-size: 12px;
|
||||||
|
color: var(--mat-sys-on-surface-variant);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Remaining weight cell
|
// Remaining weight cell
|
||||||
.remaining-cell {
|
.remaining-cell {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
@@ -2,9 +2,12 @@ import {
|
|||||||
ChangeDetectionStrategy,
|
ChangeDetectionStrategy,
|
||||||
Component,
|
Component,
|
||||||
Input,
|
Input,
|
||||||
|
OnInit,
|
||||||
computed,
|
computed,
|
||||||
|
inject,
|
||||||
signal,
|
signal,
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
|
import { FilamentService } from '../../services/filament.service';
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { MatTableModule } from '@angular/material/table';
|
import { MatTableModule } from '@angular/material/table';
|
||||||
import { MatChipsModule } from '@angular/material/chips';
|
import { MatChipsModule } from '@angular/material/chips';
|
||||||
@@ -27,6 +30,8 @@ export type FilamentColumn =
|
|||||||
| 'brand'
|
| 'brand'
|
||||||
| 'serial'
|
| 'serial'
|
||||||
| 'remaining'
|
| 'remaining'
|
||||||
|
| 'cost'
|
||||||
|
| 'usage'
|
||||||
| 'stockLevel'
|
| 'stockLevel'
|
||||||
| 'status';
|
| 'status';
|
||||||
|
|
||||||
@@ -47,9 +52,11 @@ export type FilamentColumn =
|
|||||||
styleUrl: './filament-table.component.scss',
|
styleUrl: './filament-table.component.scss',
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
})
|
})
|
||||||
export class FilamentTableComponent {
|
export class FilamentTableComponent implements OnInit {
|
||||||
/** Filament data input — reactive signal for live updates */
|
private readonly filamentService = inject(FilamentService);
|
||||||
readonly filaments = signal<Filament[]>([]);
|
|
||||||
|
/** Filament data — reactive signal driven by FilamentService */
|
||||||
|
readonly filaments = this.filamentService.filaments;
|
||||||
|
|
||||||
/** Columns to display — defaults to all columns */
|
/** Columns to display — defaults to all columns */
|
||||||
@Input()
|
@Input()
|
||||||
@@ -65,6 +72,8 @@ export class FilamentTableComponent {
|
|||||||
'brand',
|
'brand',
|
||||||
'serial',
|
'serial',
|
||||||
'remaining',
|
'remaining',
|
||||||
|
'cost',
|
||||||
|
'usage',
|
||||||
'stockLevel',
|
'stockLevel',
|
||||||
'status',
|
'status',
|
||||||
]);
|
]);
|
||||||
@@ -102,129 +111,14 @@ export class FilamentTableComponent {
|
|||||||
this.filaments().filter((f) => classifyStockLevel(f) === 'critical').length
|
this.filaments().filter((f) => classifyStockLevel(f) === 'critical').length
|
||||||
);
|
);
|
||||||
|
|
||||||
constructor() {
|
ngOnInit(): void {
|
||||||
// Initialize sorted data from filaments
|
// Initialize sorted data from FilamentService
|
||||||
// (MatSort handles sorting via sortChange; we start unsorted)
|
this.sortedFilaments.set([...this.filaments()]);
|
||||||
|
|
||||||
// Development: seed with sample data for visual testing
|
|
||||||
// TODO: Replace with service data from FilamentService / SignalR
|
|
||||||
this.updateFilaments([
|
|
||||||
{
|
|
||||||
id: '1',
|
|
||||||
materialBaseId: 'm1',
|
|
||||||
materialBaseName: 'PLA',
|
|
||||||
materialFinishId: 'f1',
|
|
||||||
materialFinishName: 'Basic',
|
|
||||||
materialModifierId: null,
|
|
||||||
materialModifierName: null,
|
|
||||||
brand: 'Bambu Lab',
|
|
||||||
colorName: 'White',
|
|
||||||
colorHex: '#F5F5F5',
|
|
||||||
weightTotalGrams: 1000,
|
|
||||||
weightRemainingGrams: 850,
|
|
||||||
filamentDiameterMm: 1.75,
|
|
||||||
spoolSerial: 'SN-001',
|
|
||||||
purchasePrice: 25.00,
|
|
||||||
purchaseDate: '2026-01-15T00:00:00Z',
|
|
||||||
isActive: true,
|
|
||||||
createdAt: '2026-01-15T00:00:00Z',
|
|
||||||
updatedAt: '2026-04-20T00:00:00Z',
|
|
||||||
qrCodeUrl: '',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: '2',
|
|
||||||
materialBaseId: 'm2',
|
|
||||||
materialBaseName: 'PETG',
|
|
||||||
materialFinishId: 'f2',
|
|
||||||
materialFinishName: 'Matte',
|
|
||||||
materialModifierId: 'mod1',
|
|
||||||
materialModifierName: 'Carbon Fiber',
|
|
||||||
brand: 'Polymaker',
|
|
||||||
colorName: 'Fire Engine Red',
|
|
||||||
colorHex: '#FF0000',
|
|
||||||
weightTotalGrams: 1000,
|
|
||||||
weightRemainingGrams: 80,
|
|
||||||
filamentDiameterMm: 1.75,
|
|
||||||
spoolSerial: 'SN-002',
|
|
||||||
purchasePrice: 35.00,
|
|
||||||
purchaseDate: '2026-02-01T00:00:00Z',
|
|
||||||
isActive: true,
|
|
||||||
createdAt: '2026-02-01T00:00:00Z',
|
|
||||||
updatedAt: '2026-04-25T00:00:00Z',
|
|
||||||
qrCodeUrl: '',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: '3',
|
|
||||||
materialBaseId: 'm1',
|
|
||||||
materialBaseName: 'PLA',
|
|
||||||
materialFinishId: 'f1',
|
|
||||||
materialFinishName: 'Basic',
|
|
||||||
materialModifierId: null,
|
|
||||||
materialModifierName: null,
|
|
||||||
brand: 'eSun',
|
|
||||||
colorName: 'Sky Blue',
|
|
||||||
colorHex: '#87CEEB',
|
|
||||||
weightTotalGrams: 1000,
|
|
||||||
weightRemainingGrams: 200,
|
|
||||||
filamentDiameterMm: 1.75,
|
|
||||||
spoolSerial: 'SN-003',
|
|
||||||
purchasePrice: 20.00,
|
|
||||||
purchaseDate: '2026-03-10T00:00:00Z',
|
|
||||||
isActive: true,
|
|
||||||
createdAt: '2026-03-10T00:00:00Z',
|
|
||||||
updatedAt: '2026-04-26T00:00:00Z',
|
|
||||||
qrCodeUrl: '',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: '4',
|
|
||||||
materialBaseId: 'm3',
|
|
||||||
materialBaseName: 'ABS',
|
|
||||||
materialFinishId: 'f1',
|
|
||||||
materialFinishName: 'Basic',
|
|
||||||
materialModifierId: null,
|
|
||||||
materialModifierName: null,
|
|
||||||
brand: 'Hatchbox',
|
|
||||||
colorName: 'Black',
|
|
||||||
colorHex: '#1A1A1A',
|
|
||||||
weightTotalGrams: 1000,
|
|
||||||
weightRemainingGrams: 450,
|
|
||||||
filamentDiameterMm: 1.75,
|
|
||||||
spoolSerial: 'SN-004',
|
|
||||||
purchasePrice: 22.00,
|
|
||||||
purchaseDate: null,
|
|
||||||
isActive: true,
|
|
||||||
createdAt: '2026-01-20T00:00:00Z',
|
|
||||||
updatedAt: '2026-04-18T00:00:00Z',
|
|
||||||
qrCodeUrl: '',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: '5',
|
|
||||||
materialBaseId: 'm1',
|
|
||||||
materialBaseName: 'PLA',
|
|
||||||
materialFinishId: 'f3',
|
|
||||||
materialFinishName: 'Silk',
|
|
||||||
materialModifierId: null,
|
|
||||||
materialModifierName: null,
|
|
||||||
brand: 'Overturn',
|
|
||||||
colorName: 'Gold',
|
|
||||||
colorHex: '#FFD700',
|
|
||||||
weightTotalGrams: 500,
|
|
||||||
weightRemainingGrams: 15,
|
|
||||||
filamentDiameterMm: 1.75,
|
|
||||||
spoolSerial: 'SN-005',
|
|
||||||
purchasePrice: 28.00,
|
|
||||||
purchaseDate: null,
|
|
||||||
isActive: false,
|
|
||||||
createdAt: '2025-12-01T00:00:00Z',
|
|
||||||
updatedAt: '2026-04-01T00:00:00Z',
|
|
||||||
qrCodeUrl: '',
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Update filament data — called by parent or service */
|
/** Update filament data — called externally or from a SignalR handler */
|
||||||
updateFilaments(data: Filament[]): void {
|
updateFilaments(data: Filament[]): void {
|
||||||
this.filaments.set(data);
|
this.filamentService.setFilaments(data);
|
||||||
this.sortedFilaments.set([...data]);
|
this.sortedFilaments.set([...data]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -253,6 +147,18 @@ export class FilamentTableComponent {
|
|||||||
getRemainingPercent(b),
|
getRemainingPercent(b),
|
||||||
isAsc
|
isAsc
|
||||||
);
|
);
|
||||||
|
case 'cost':
|
||||||
|
return compare(
|
||||||
|
a.purchasePrice ?? 0,
|
||||||
|
b.purchasePrice ?? 0,
|
||||||
|
isAsc
|
||||||
|
);
|
||||||
|
case 'usage':
|
||||||
|
return compare(
|
||||||
|
a.weightTotalGrams - a.weightRemainingGrams,
|
||||||
|
b.weightTotalGrams - b.weightRemainingGrams,
|
||||||
|
isAsc
|
||||||
|
);
|
||||||
case 'stockLevel':
|
case 'stockLevel':
|
||||||
return compare(
|
return compare(
|
||||||
stockLevelOrder(classifyStockLevel(a)),
|
stockLevelOrder(classifyStockLevel(a)),
|
||||||
@@ -353,6 +259,29 @@ export class FilamentTableComponent {
|
|||||||
}
|
}
|
||||||
return `${Math.round(grams)}g`;
|
return `${Math.round(grams)}g`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Template helper: format currency */
|
||||||
|
formatCurrency(value: number): string {
|
||||||
|
return new Intl.NumberFormat('en-US', {
|
||||||
|
style: 'currency',
|
||||||
|
currency: 'USD',
|
||||||
|
minimumFractionDigits: 2,
|
||||||
|
maximumFractionDigits: 2,
|
||||||
|
}).format(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Template helper: compute cost per gram for a filament */
|
||||||
|
getCostPerGram(filament: Filament): number | null {
|
||||||
|
if (filament.purchasePrice === null || filament.purchasePrice === 0 || filament.weightTotalGrams <= 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return filament.purchasePrice / filament.weightTotalGrams;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Template helper: compute grams used for a filament */
|
||||||
|
getGramsUsed(filament: Filament): number {
|
||||||
|
return filament.weightTotalGrams - filament.weightRemainingGrams;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Compare helper for sorting */
|
/** Compare helper for sorting */
|
||||||
|
|||||||
@@ -0,0 +1,145 @@
|
|||||||
|
<!-- Inventory Dashboard Summary — filament metrics at a glance -->
|
||||||
|
<section class="inventory-summary" role="region" aria-label="Inventory summary">
|
||||||
|
|
||||||
|
<!-- Loading State -->
|
||||||
|
@if (loading()) {
|
||||||
|
<div class="summary-loading" role="status" aria-live="polite">
|
||||||
|
<mat-icon aria-hidden="true" class="spin">sync</mat-icon>
|
||||||
|
<span>Loading inventory...</span>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
<!-- Error State -->
|
||||||
|
@else if (error()) {
|
||||||
|
<div class="summary-error" role="alert" aria-live="assertive">
|
||||||
|
<mat-icon aria-hidden="true">error_outline</mat-icon>
|
||||||
|
<span>{{ error() }}</span>
|
||||||
|
<button class="retry-btn" (click)="refresh()" aria-label="Retry loading inventory">
|
||||||
|
<mat-icon aria-hidden="true">refresh</mat-icon>
|
||||||
|
Retry
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
<!-- Loaded State -->
|
||||||
|
@else {
|
||||||
|
<!-- Health Status Indicator -->
|
||||||
|
<div class="summary-item health-status"
|
||||||
|
[class]="healthClass()"
|
||||||
|
[matTooltip]="healthLabel()"
|
||||||
|
matTooltipPosition="below">
|
||||||
|
<mat-icon aria-hidden="true">
|
||||||
|
@switch (healthClass()) {
|
||||||
|
@case ('critical') { error }
|
||||||
|
@case ('low') { warning }
|
||||||
|
@default { check_circle }
|
||||||
|
}
|
||||||
|
</mat-icon>
|
||||||
|
<span class="health-text">{{ healthLabel() }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Total Spool Count -->
|
||||||
|
<div class="summary-item metric-card"
|
||||||
|
matTooltip="Total filament spools in inventory"
|
||||||
|
matTooltipPosition="below">
|
||||||
|
<mat-icon aria-hidden="true" class="metric-icon">inventory_2</mat-icon>
|
||||||
|
<div class="metric-content">
|
||||||
|
<span class="metric-value">{{ totalCount() }}</span>
|
||||||
|
<span class="metric-label">Total Spools</span>
|
||||||
|
</div>
|
||||||
|
@if (activeCount() < totalCount()) {
|
||||||
|
<span class="metric-detail">{{ activeCount() }} active</span>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Low Stock Count -->
|
||||||
|
<div class="summary-item metric-card"
|
||||||
|
[class.has-alert]="hasLowStock()"
|
||||||
|
[class.has-critical]="hasCritical()"
|
||||||
|
[matTooltip]="hasCritical()
|
||||||
|
? criticalCount() + ' critical, ' + (lowStockCount() - criticalCount()) + ' low'
|
||||||
|
: hasLowStock()
|
||||||
|
? lowStockCount() + ' spools at or below 25% remaining'
|
||||||
|
: 'All spools above 25% remaining'"
|
||||||
|
matTooltipPosition="below">
|
||||||
|
<mat-icon aria-hidden="true" class="metric-icon">
|
||||||
|
@if (hasCritical()) { error }
|
||||||
|
@else if (hasLowStock()) { warning }
|
||||||
|
@else { check_circle }
|
||||||
|
</mat-icon>
|
||||||
|
<div class="metric-content">
|
||||||
|
<span class="metric-value">{{ lowStockCount() }}</span>
|
||||||
|
<span class="metric-label">Low Stock</span>
|
||||||
|
</div>
|
||||||
|
@if (hasCritical()) {
|
||||||
|
<span class="metric-detail critical-detail">{{ criticalCount() }} critical</span>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Estimated Total Value -->
|
||||||
|
<div class="summary-item metric-card"
|
||||||
|
matTooltip="Estimated total value of active spools"
|
||||||
|
matTooltipPosition="below">
|
||||||
|
<mat-icon aria-hidden="true" class="metric-icon">payments</mat-icon>
|
||||||
|
<div class="metric-content">
|
||||||
|
<span class="metric-value">{{ formatCurrency(totalValue()) }}</span>
|
||||||
|
<span class="metric-label">Est. Value</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Average Cost per Gram -->
|
||||||
|
@if (avgCostPerGram() !== null) {
|
||||||
|
<div class="summary-item metric-card"
|
||||||
|
matTooltip="Average cost per gram across priced, active spools"
|
||||||
|
matTooltipPosition="below">
|
||||||
|
<mat-icon aria-hidden="true" class="metric-icon">scale</mat-icon>
|
||||||
|
<div class="metric-content">
|
||||||
|
<span class="metric-value">${{ avgCostPerGram()!.toFixed(2) }}/g</span>
|
||||||
|
<span class="metric-label">Avg Cost/g</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
<!-- Total Usage -->
|
||||||
|
<div class="summary-item metric-card"
|
||||||
|
matTooltip="Total filament used across all spools"
|
||||||
|
matTooltipPosition="below">
|
||||||
|
<mat-icon aria-hidden="true" class="metric-icon">trending_down</mat-icon>
|
||||||
|
<div class="metric-content">
|
||||||
|
<span class="metric-value">{{ formatWeight(totalGramsUsed()) }}</span>
|
||||||
|
<span class="metric-label">Total Used</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Estimated Used Value -->
|
||||||
|
@if (estimatedUsedValue() !== null) {
|
||||||
|
<div class="summary-item metric-card"
|
||||||
|
matTooltip="Estimated value of filament consumed"
|
||||||
|
matTooltipPosition="below">
|
||||||
|
<mat-icon aria-hidden="true" class="metric-icon">receipt_long</mat-icon>
|
||||||
|
<div class="metric-content">
|
||||||
|
<span class="metric-value">{{ formatCurrency(estimatedUsedValue()!) }}</span>
|
||||||
|
<span class="metric-label">Used Value</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
<!-- Overall Remaining Stock Bar -->
|
||||||
|
<div class="summary-item metric-card stock-bar-card"
|
||||||
|
matTooltip="{{ formatWeight(totalRemainingGrams()) }} of {{ formatWeight(totalCapacityGrams()) }} remaining"
|
||||||
|
matTooltipPosition="below">
|
||||||
|
<mat-icon aria-hidden="true" class="metric-icon">line_weight</mat-icon>
|
||||||
|
<div class="metric-content stock-bar-content">
|
||||||
|
<div class="stock-bar-header">
|
||||||
|
<span class="metric-value">{{ overallRemainingPercent() }}%</span>
|
||||||
|
<span class="metric-label">Remaining</span>
|
||||||
|
</div>
|
||||||
|
<mat-progress-bar
|
||||||
|
mode="determinate"
|
||||||
|
[value]="overallRemainingPercent()"
|
||||||
|
[ngClass]="healthClass()">
|
||||||
|
</mat-progress-bar>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
</section>
|
||||||
@@ -0,0 +1,257 @@
|
|||||||
|
/**
|
||||||
|
* Inventory Summary Component Styles
|
||||||
|
* Touch-optimized for kiosk (Raspberry Pi 5) and mobile PWA
|
||||||
|
* Matches the existing dark theme from app.scss
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Touch-optimized sizing
|
||||||
|
$touch-target-min: 48px;
|
||||||
|
$kiosk-font-primary: 24px;
|
||||||
|
$mobile-font-primary: 18px;
|
||||||
|
$spacing-unit: 8px;
|
||||||
|
|
||||||
|
// Status colors — high contrast for workshop/bright environments
|
||||||
|
$color-healthy: #4ade70; // Green
|
||||||
|
$color-low: #fbbf24; // Amber/Yellow
|
||||||
|
$color-critical: #f87171; // Red
|
||||||
|
$color-bg: #1a1a2e; // Matches app.scss
|
||||||
|
$color-text: #e0e0e0;
|
||||||
|
$color-text-muted: rgba(255, 255, 255, 0.7);
|
||||||
|
$color-card-bg: rgba(255, 255, 255, 0.05);
|
||||||
|
$color-card-border: rgba(255, 255, 255, 0.1);
|
||||||
|
|
||||||
|
.inventory-summary {
|
||||||
|
display: flex;
|
||||||
|
align-items: stretch;
|
||||||
|
gap: $spacing-unit * 2;
|
||||||
|
padding: $spacing-unit * 2;
|
||||||
|
overflow-x: auto;
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
scrollbar-width: thin;
|
||||||
|
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
padding: $spacing-unit;
|
||||||
|
gap: $spacing-unit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Health status indicator
|
||||||
|
.health-status {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: $spacing-unit;
|
||||||
|
padding: $spacing-unit $spacing-unit * 2;
|
||||||
|
border-radius: 24px;
|
||||||
|
min-height: $touch-target-min;
|
||||||
|
white-space: nowrap;
|
||||||
|
transition: background-color 0.3s ease;
|
||||||
|
|
||||||
|
&.healthy {
|
||||||
|
background-color: rgba($color-healthy, 0.15);
|
||||||
|
color: $color-healthy;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.low {
|
||||||
|
background-color: rgba($color-low, 0.15);
|
||||||
|
color: $color-low;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.critical {
|
||||||
|
background-color: rgba($color-critical, 0.15);
|
||||||
|
color: $color-critical;
|
||||||
|
}
|
||||||
|
|
||||||
|
.health-text {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 600;
|
||||||
|
letter-spacing: 0.02em;
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
mat-icon {
|
||||||
|
font-size: 20px !important;
|
||||||
|
width: 20px !important;
|
||||||
|
height: 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Metric card
|
||||||
|
.metric-card {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: $spacing-unit;
|
||||||
|
padding: $spacing-unit $spacing-unit * 2;
|
||||||
|
background-color: $color-card-bg;
|
||||||
|
border: 1px solid $color-card-border;
|
||||||
|
border-radius: 12px;
|
||||||
|
min-height: $touch-target-min;
|
||||||
|
white-space: nowrap;
|
||||||
|
transition: border-color 0.2s ease, background-color 0.2s ease;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
border-color: rgba(255, 255, 255, 0.2);
|
||||||
|
background-color: rgba(255, 255, 255, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
padding: $spacing-unit;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-alert {
|
||||||
|
border-color: rgba($color-low, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-critical {
|
||||||
|
border-color: rgba($color-critical, 0.5);
|
||||||
|
background-color: rgba($color-critical, 0.08);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.metric-icon {
|
||||||
|
color: $color-text-muted;
|
||||||
|
font-size: 22px !important;
|
||||||
|
width: 22px !important;
|
||||||
|
height: 22px !important;
|
||||||
|
|
||||||
|
.has-alert & {
|
||||||
|
color: $color-low;
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-critical & {
|
||||||
|
color: $color-critical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.metric-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.metric-value {
|
||||||
|
font-size: $kiosk-font-primary;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 1.2;
|
||||||
|
color: $color-text;
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
font-size: $mobile-font-primary;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.metric-label {
|
||||||
|
font-size: 11px;
|
||||||
|
color: $color-text-muted;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.08em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.metric-detail {
|
||||||
|
font-size: 11px;
|
||||||
|
color: $color-text-muted;
|
||||||
|
margin-left: $spacing-unit;
|
||||||
|
|
||||||
|
&.critical-detail {
|
||||||
|
color: $color-critical;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Stock bar card
|
||||||
|
.stock-bar-card {
|
||||||
|
flex: 1 1 200px;
|
||||||
|
min-width: 180px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-bar-content {
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-bar-header {
|
||||||
|
display: flex;
|
||||||
|
align-items: baseline;
|
||||||
|
gap: $spacing-unit;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Progress bar color classes
|
||||||
|
::ng-deep .mat-mdc-progress-bar {
|
||||||
|
&.healthy .mdc-linear-progress__bar-inner {
|
||||||
|
background-color: $color-healthy !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.low .mdc-linear-progress__bar-inner {
|
||||||
|
background-color: $color-low !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.critical .mdc-linear-progress__bar-inner {
|
||||||
|
background-color: $color-critical !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Loading state
|
||||||
|
.summary-loading {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: $spacing-unit;
|
||||||
|
padding: $spacing-unit * 2;
|
||||||
|
color: $color-text-muted;
|
||||||
|
font-size: 14px;
|
||||||
|
|
||||||
|
.spin {
|
||||||
|
animation: spin 1s linear infinite;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
0% { transform: rotate(0deg); }
|
||||||
|
100% { transform: rotate(360deg); }
|
||||||
|
}
|
||||||
|
|
||||||
|
// Error state
|
||||||
|
.summary-error {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: $spacing-unit;
|
||||||
|
padding: $spacing-unit * 2;
|
||||||
|
background-color: rgba($color-critical, 0.1);
|
||||||
|
border: 1px solid rgba($color-critical, 0.3);
|
||||||
|
border-radius: 12px;
|
||||||
|
color: $color-critical;
|
||||||
|
font-size: 14px;
|
||||||
|
|
||||||
|
.retry-btn {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 4px;
|
||||||
|
background: transparent;
|
||||||
|
border: 1px solid rgba($color-critical, 0.4);
|
||||||
|
color: $color-critical;
|
||||||
|
padding: 4px 12px;
|
||||||
|
border-radius: 8px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 13px;
|
||||||
|
min-height: $touch-target-min - 8px;
|
||||||
|
transition: background-color 0.2s ease;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: rgba($color-critical, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
mat-icon {
|
||||||
|
font-size: 16px !important;
|
||||||
|
width: 16px !important;
|
||||||
|
height: 16px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Summary item base
|
||||||
|
.summary-item {
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
@@ -0,0 +1,207 @@
|
|||||||
|
import {
|
||||||
|
ChangeDetectionStrategy,
|
||||||
|
Component,
|
||||||
|
OnDestroy,
|
||||||
|
OnInit,
|
||||||
|
computed,
|
||||||
|
inject,
|
||||||
|
signal,
|
||||||
|
} from '@angular/core';
|
||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { MatIconModule } from '@angular/material/icon';
|
||||||
|
import { MatChipsModule } from '@angular/material/chips';
|
||||||
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
||||||
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
||||||
|
import { FilamentService } from '../../services/filament.service';
|
||||||
|
import {
|
||||||
|
classifyStockLevel,
|
||||||
|
} from '../../models/filament.model';
|
||||||
|
import { Subscription } from 'rxjs';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inventory Dashboard Summary — shows filament inventory at a glance.
|
||||||
|
*
|
||||||
|
* Displays:
|
||||||
|
* - Total filament spool count
|
||||||
|
* - Low stock count (spools ≤25% remaining, i.e. "low" or "critical")
|
||||||
|
* - Estimated total filament value (sum of purchase prices for active spools)
|
||||||
|
*
|
||||||
|
* Data is sourced from the shared FilamentService signal,
|
||||||
|
* which is loaded on init and can be refreshed via refresh().
|
||||||
|
*/
|
||||||
|
@Component({
|
||||||
|
selector: 'app-inventory-summary',
|
||||||
|
standalone: true,
|
||||||
|
imports: [
|
||||||
|
CommonModule,
|
||||||
|
MatIconModule,
|
||||||
|
MatChipsModule,
|
||||||
|
MatTooltipModule,
|
||||||
|
MatProgressBarModule,
|
||||||
|
],
|
||||||
|
templateUrl: './inventory-summary.component.html',
|
||||||
|
styleUrls: ['./inventory-summary.component.scss'],
|
||||||
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
|
})
|
||||||
|
export class InventorySummaryComponent implements OnInit, OnDestroy {
|
||||||
|
private readonly filamentService = inject(FilamentService);
|
||||||
|
private subscription: Subscription | null = null;
|
||||||
|
|
||||||
|
/** All filament data — reactive signal from shared service */
|
||||||
|
readonly filaments = this.filamentService.filaments;
|
||||||
|
|
||||||
|
/** Loading state */
|
||||||
|
readonly loading = signal<boolean>(true);
|
||||||
|
|
||||||
|
/** Error state */
|
||||||
|
readonly error = signal<string | null>(null);
|
||||||
|
|
||||||
|
/** Computed: total number of filament spools */
|
||||||
|
readonly totalCount = computed(() => this.filaments().length);
|
||||||
|
|
||||||
|
/** Computed: count of active spools */
|
||||||
|
readonly activeCount = computed(
|
||||||
|
() => this.filaments().filter((f) => f.isActive).length
|
||||||
|
);
|
||||||
|
|
||||||
|
/** Computed: count of low/critical stock spools (≤25% remaining) */
|
||||||
|
readonly lowStockCount = computed(
|
||||||
|
() =>
|
||||||
|
this.filaments().filter(
|
||||||
|
(f) =>
|
||||||
|
classifyStockLevel(f) === 'low' ||
|
||||||
|
classifyStockLevel(f) === 'critical'
|
||||||
|
).length
|
||||||
|
);
|
||||||
|
|
||||||
|
/** Computed: count of critically low spools (≤10% remaining) */
|
||||||
|
readonly criticalCount = computed(
|
||||||
|
() =>
|
||||||
|
this.filaments().filter((f) => classifyStockLevel(f) === 'critical')
|
||||||
|
.length
|
||||||
|
);
|
||||||
|
|
||||||
|
/** Computed: estimated total value of active spools */
|
||||||
|
readonly totalValue = computed(() =>
|
||||||
|
this.filaments()
|
||||||
|
.filter((f) => f.isActive && f.purchasePrice !== null)
|
||||||
|
.reduce((sum, f) => sum + (f.purchasePrice ?? 0), 0)
|
||||||
|
);
|
||||||
|
|
||||||
|
/** Computed: average cost per gram across active spools with a price */
|
||||||
|
readonly avgCostPerGram = computed(() => {
|
||||||
|
const priced = this.filaments().filter(
|
||||||
|
(f) => f.isActive && f.purchasePrice !== null && f.purchasePrice! > 0 && f.weightTotalGrams > 0
|
||||||
|
);
|
||||||
|
if (priced.length === 0) return null;
|
||||||
|
const totalCost = priced.reduce((sum, f) => sum + f.purchasePrice!, 0);
|
||||||
|
const totalWeight = priced.reduce((sum, f) => sum + f.weightTotalGrams, 0);
|
||||||
|
return totalWeight > 0 ? totalCost / totalWeight : null;
|
||||||
|
});
|
||||||
|
|
||||||
|
/** Computed: total grams used across all spools */
|
||||||
|
readonly totalGramsUsed = computed(() =>
|
||||||
|
this.filaments().reduce(
|
||||||
|
(sum, f) => sum + (f.weightTotalGrams - f.weightRemainingGrams),
|
||||||
|
0
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
/** Computed: total estimated value of used filament */
|
||||||
|
readonly estimatedUsedValue = computed(() => {
|
||||||
|
const priced = this.filaments().filter(
|
||||||
|
(f) => f.isActive && f.purchasePrice !== null && f.purchasePrice! > 0 && f.weightTotalGrams > 0
|
||||||
|
);
|
||||||
|
if (priced.length === 0) return null;
|
||||||
|
return priced.reduce((sum, f) => {
|
||||||
|
const usedFraction = (f.weightTotalGrams - f.weightRemainingGrams) / f.weightTotalGrams;
|
||||||
|
return sum + f.purchasePrice! * usedFraction;
|
||||||
|
}, 0);
|
||||||
|
});
|
||||||
|
|
||||||
|
/** Computed: total remaining weight across all spools in grams */
|
||||||
|
readonly totalRemainingGrams = computed(() =>
|
||||||
|
this.filaments().reduce((sum, f) => sum + f.weightRemainingGrams, 0)
|
||||||
|
);
|
||||||
|
|
||||||
|
/** Computed: total capacity weight across all spools in grams */
|
||||||
|
readonly totalCapacityGrams = computed(() =>
|
||||||
|
this.filaments().reduce((sum, f) => sum + f.weightTotalGrams, 0)
|
||||||
|
);
|
||||||
|
|
||||||
|
/** Computed: overall remaining percentage */
|
||||||
|
readonly overallRemainingPercent = computed(() => {
|
||||||
|
const capacity = this.totalCapacityGrams();
|
||||||
|
if (capacity <= 0) return 0;
|
||||||
|
return Math.round(
|
||||||
|
(this.totalRemainingGrams() / capacity) * 100
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
/** Computed: whether to show a low-stock alert */
|
||||||
|
readonly hasLowStock = computed(() => this.lowStockCount() > 0);
|
||||||
|
|
||||||
|
/** Computed: whether to show a critical-stock alert */
|
||||||
|
readonly hasCritical = computed(() => this.criticalCount() > 0);
|
||||||
|
|
||||||
|
/** Computed: status label for the inventory health */
|
||||||
|
readonly healthLabel = computed(() => {
|
||||||
|
if (this.hasCritical()) return 'Critical Stock';
|
||||||
|
if (this.hasLowStock()) return 'Low Stock Alert';
|
||||||
|
return 'Stock Healthy';
|
||||||
|
});
|
||||||
|
|
||||||
|
/** Computed: health status color class */
|
||||||
|
readonly healthClass = computed(() => {
|
||||||
|
if (this.hasCritical()) return 'critical';
|
||||||
|
if (this.hasLowStock()) return 'low';
|
||||||
|
return 'healthy';
|
||||||
|
});
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
this.loadFilaments();
|
||||||
|
}
|
||||||
|
|
||||||
|
ngOnDestroy(): void {
|
||||||
|
this.subscription?.unsubscribe();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Load filament data from the API via FilamentService */
|
||||||
|
loadFilaments(): void {
|
||||||
|
this.loading.set(true);
|
||||||
|
this.error.set(null);
|
||||||
|
this.subscription = this.filamentService.getFilaments().subscribe({
|
||||||
|
next: () => {
|
||||||
|
this.loading.set(false);
|
||||||
|
},
|
||||||
|
error: (err) => {
|
||||||
|
console.error('Failed to load filaments:', err);
|
||||||
|
this.error.set('Failed to load inventory data');
|
||||||
|
this.loading.set(false);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Refresh data — called externally when data changes (e.g., SignalR notification) */
|
||||||
|
refresh(): void {
|
||||||
|
this.loadFilaments();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Format weight for display */
|
||||||
|
formatWeight(grams: number): string {
|
||||||
|
if (grams >= 1000) {
|
||||||
|
return `${(grams / 1000).toFixed(1)}kg`;
|
||||||
|
}
|
||||||
|
return `${Math.round(grams)}g`;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Format currency for display */
|
||||||
|
formatCurrency(value: number): string {
|
||||||
|
return new Intl.NumberFormat('en-US', {
|
||||||
|
style: 'currency',
|
||||||
|
currency: 'USD',
|
||||||
|
minimumFractionDigits: 2,
|
||||||
|
maximumFractionDigits: 2,
|
||||||
|
}).format(value);
|
||||||
|
}
|
||||||
|
}
|
||||||
50
frontend/src/app/models/material.model.ts
Normal file
50
frontend/src/app/models/material.model.ts
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
/**
|
||||||
|
* Material lookup models matching the Extrudex backend Material DTOs.
|
||||||
|
* Used for populating dropdowns in the filament add/edit form.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** Material base (e.g., PLA, PETG, ABS). */
|
||||||
|
export interface MaterialBase {
|
||||||
|
/** Unique identifier. */
|
||||||
|
id: string;
|
||||||
|
/** Human-readable name (e.g., "PLA", "PETG"). */
|
||||||
|
name: string;
|
||||||
|
/** Density in g/cm³. */
|
||||||
|
densityGperCm3: number;
|
||||||
|
/** Created timestamp (UTC). */
|
||||||
|
createdAt: string;
|
||||||
|
/** Updated timestamp (UTC). */
|
||||||
|
updatedAt: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Material finish (e.g., Basic, Matte, Silk). */
|
||||||
|
export interface MaterialFinish {
|
||||||
|
/** Unique identifier. */
|
||||||
|
id: string;
|
||||||
|
/** Human-readable name (e.g., "Basic", "Matte"). */
|
||||||
|
name: string;
|
||||||
|
/** Foreign key to the parent material base. */
|
||||||
|
materialBaseId: string;
|
||||||
|
/** Name of the parent material base (for display). */
|
||||||
|
materialBaseName: string;
|
||||||
|
/** Created timestamp (UTC). */
|
||||||
|
createdAt: string;
|
||||||
|
/** Updated timestamp (UTC). */
|
||||||
|
updatedAt: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Material modifier (e.g., Carbon Fiber, Wood Fill). Optional. */
|
||||||
|
export interface MaterialModifier {
|
||||||
|
/** Unique identifier. */
|
||||||
|
id: string;
|
||||||
|
/** Human-readable name (e.g., "Carbon Fiber"). */
|
||||||
|
name: string;
|
||||||
|
/** Foreign key to the parent material base. */
|
||||||
|
materialBaseId: string;
|
||||||
|
/** Name of the parent material base (for display). */
|
||||||
|
materialBaseName: string;
|
||||||
|
/** Created timestamp (UTC). */
|
||||||
|
createdAt: string;
|
||||||
|
/** Updated timestamp (UTC). */
|
||||||
|
updatedAt: string;
|
||||||
|
}
|
||||||
13
frontend/src/app/models/paged-response.model.ts
Normal file
13
frontend/src/app/models/paged-response.model.ts
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
/**
|
||||||
|
* Generic paged response wrapper matching the Extrudex backend PagedResponse<T>.
|
||||||
|
*/
|
||||||
|
export interface PagedResponse<T> {
|
||||||
|
/** The items in this page. */
|
||||||
|
items: T[];
|
||||||
|
/** Total number of items across all pages. */
|
||||||
|
totalCount: number;
|
||||||
|
/** The current page number (1-based). */
|
||||||
|
pageNumber: number;
|
||||||
|
/** The number of items per page. */
|
||||||
|
pageSize: number;
|
||||||
|
}
|
||||||
52
frontend/src/app/services/filament.service.ts
Normal file
52
frontend/src/app/services/filament.service.ts
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
import { Injectable, inject } from '@angular/core';
|
||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import { Observable, Subscription } from 'rxjs';
|
||||||
|
import { signal } from '@angular/core';
|
||||||
|
import { Filament } from '../models/filament.model';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* API base URL — matches the Extrudex backend.
|
||||||
|
* TODO: Move to environment config when environments are set up.
|
||||||
|
*/
|
||||||
|
const API_BASE_URL = '/api/filaments';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Service for managing filament inventory data.
|
||||||
|
*
|
||||||
|
* Provides:
|
||||||
|
* - A reactive `filaments` signal for components to bind to
|
||||||
|
* - REST methods for GET, POST, DELETE endpoints
|
||||||
|
* - Real-time updates via SignalR should be layered on top when the hub is ready
|
||||||
|
*/
|
||||||
|
@Injectable({ providedIn: 'root' })
|
||||||
|
export class FilamentService {
|
||||||
|
private readonly http = inject(HttpClient);
|
||||||
|
|
||||||
|
/** Reactive filament data — components read from this signal */
|
||||||
|
readonly filaments = signal<Filament[]>([]);
|
||||||
|
|
||||||
|
/** Fetch all filament spools and update the signal */
|
||||||
|
getFilaments(): Observable<Filament[]> {
|
||||||
|
const req = this.http.get<Filament[]>(API_BASE_URL);
|
||||||
|
req.subscribe({
|
||||||
|
next: (data) => this.filaments.set(data),
|
||||||
|
error: (err) => console.error('Failed to load filaments:', err),
|
||||||
|
});
|
||||||
|
return req;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Fetch a single filament by ID */
|
||||||
|
getFilament(id: string): Observable<Filament> {
|
||||||
|
return this.http.get<Filament>(`${API_BASE_URL}/${id}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Set filament data directly — used by components or SignalR handlers */
|
||||||
|
setFilaments(data: Filament[]): void {
|
||||||
|
this.filaments.set(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Delete a filament spool by ID */
|
||||||
|
deleteFilament(id: string): Observable<void> {
|
||||||
|
return this.http.delete<void>(`${API_BASE_URL}/${id}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
8
frontend/src/environments/environment.prod.ts
Normal file
8
frontend/src/environments/environment.prod.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* Environment configuration for the Extrudex frontend (production).
|
||||||
|
* Override API URL for deployed environments.
|
||||||
|
*/
|
||||||
|
export const environment = {
|
||||||
|
production: true,
|
||||||
|
apiBaseUrl: '/api',
|
||||||
|
};
|
||||||
8
frontend/src/environments/environment.ts
Normal file
8
frontend/src/environments/environment.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* Environment configuration for the Extrudex frontend.
|
||||||
|
* Replace API URL with the actual backend endpoint in production.
|
||||||
|
*/
|
||||||
|
export const environment = {
|
||||||
|
production: false,
|
||||||
|
apiBaseUrl: 'http://localhost:5000',
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user