
* Wrote my own step tracker and added a prev button. Works up to first conflict flow. * Everything but final import is hooked up in the UI. Polish still needed, but getting there. * Making more progress in the CBL import flow. * Ready for the last step * Cleaned up some logic to prepare for the last step and reset * Users like order to be starting at 1 * Fixed a few bugs around cbl import * CBL import is ready for some basic testing * Added a reading list hook on side nav * Fixed up unit tests * Added icons and color to the import flow * Tweaked some phrasing * Hooked up a loading variable but disabled the component as it didn't look good. * Styling it up * changed an icon to better fit --------- Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
107 lines
2.8 KiB
C#
107 lines
2.8 KiB
C#
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
|
|
namespace API.DTOs.ReadingLists.CBL;
|
|
|
|
public enum CblImportResult {
|
|
/// <summary>
|
|
/// There was an issue which prevented processing
|
|
/// </summary>
|
|
[Description("Fail")]
|
|
Fail = 0,
|
|
/// <summary>
|
|
/// Some items were added, but not all
|
|
/// </summary>
|
|
[Description("Partial")]
|
|
Partial = 1,
|
|
/// <summary>
|
|
/// Everything was imported correctly
|
|
/// </summary>
|
|
[Description("Success")]
|
|
Success = 2
|
|
}
|
|
|
|
public enum CblImportReason
|
|
{
|
|
/// <summary>
|
|
/// The Chapter is not present in Kavita
|
|
/// </summary>
|
|
[Description("Chapter missing")]
|
|
ChapterMissing = 0,
|
|
/// <summary>
|
|
/// The Volume is not present in Kavita or no Volume field present in CBL and there is no chapter matching
|
|
/// </summary>
|
|
[Description("Volume missing")]
|
|
VolumeMissing = 1,
|
|
/// <summary>
|
|
/// The Series is not present in Kavita or the user does not have access to the Series due to some account restrictions
|
|
/// </summary>
|
|
[Description("Series missing")]
|
|
SeriesMissing = 2,
|
|
/// <summary>
|
|
/// The CBL Name conflicts with another Reading List in the system
|
|
/// </summary>
|
|
[Description("Name Conflict")]
|
|
NameConflict = 3,
|
|
/// <summary>
|
|
/// Every Series in the Reading list is missing from within Kavita or user has access restrictions to
|
|
/// </summary>
|
|
[Description("All Series Missing")]
|
|
AllSeriesMissing = 4,
|
|
/// <summary>
|
|
/// There are no Book entries in the CBL
|
|
/// </summary>
|
|
[Description("Empty File")]
|
|
EmptyFile = 5,
|
|
/// <summary>
|
|
/// Series Collides between Libraries
|
|
/// </summary>
|
|
[Description("Series Collision")]
|
|
SeriesCollision = 6,
|
|
/// <summary>
|
|
/// Every book chapter is missing or can't be matched
|
|
/// </summary>
|
|
[Description("All Chapters Missing")]
|
|
AllChapterMissing = 7,
|
|
/// <summary>
|
|
/// The Chapter was imported
|
|
/// </summary>
|
|
[Description("Success")]
|
|
Success = 8,
|
|
}
|
|
|
|
public class CblBookResult
|
|
{
|
|
/// <summary>
|
|
/// Order in the CBL
|
|
/// </summary>
|
|
public int Order { get; set; }
|
|
public string Series { get; set; }
|
|
public string Volume { get; set; }
|
|
public string Number { get; set; }
|
|
public CblImportReason Reason { get; set; }
|
|
|
|
public CblBookResult(CblBook book)
|
|
{
|
|
Series = book.Series;
|
|
Volume = book.Volume;
|
|
Number = book.Number;
|
|
}
|
|
|
|
public CblBookResult()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Represents the summary from the Import of a given CBL
|
|
/// </summary>
|
|
public class CblImportSummaryDto
|
|
{
|
|
public string CblName { get; set; }
|
|
public ICollection<CblBookResult> Results { get; set; }
|
|
public CblImportResult Success { get; set; }
|
|
public ICollection<CblBookResult> SuccessfulInserts { get; set; }
|
|
|
|
}
|