2023-10-03 13:00:59 -04:00
|
|
|
import 'package:recon/models/records/asset_diff.dart';
|
2023-05-16 09:59:31 -04:00
|
|
|
|
|
|
|
enum RecordPreprocessState
|
|
|
|
{
|
|
|
|
preprocessing,
|
|
|
|
success,
|
|
|
|
failed;
|
|
|
|
|
|
|
|
factory RecordPreprocessState.fromString(String? text) {
|
|
|
|
return RecordPreprocessState.values.firstWhere((element) => element.name.toLowerCase() == text?.toLowerCase(),
|
|
|
|
orElse: () => RecordPreprocessState.failed,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class PreprocessStatus {
|
|
|
|
final String id;
|
|
|
|
final String ownerId;
|
|
|
|
final String recordId;
|
|
|
|
final RecordPreprocessState state;
|
|
|
|
final num progress;
|
|
|
|
final String failReason;
|
|
|
|
final List<AssetDiff> resultDiffs;
|
|
|
|
|
|
|
|
const PreprocessStatus({required this.id, required this.ownerId, required this.recordId, required this.state,
|
|
|
|
required this.progress, required this.failReason, required this.resultDiffs,
|
|
|
|
});
|
|
|
|
|
|
|
|
factory PreprocessStatus.fromMap(Map map) {
|
|
|
|
return PreprocessStatus(
|
|
|
|
id: map["id"],
|
|
|
|
ownerId: map["ownerId"],
|
|
|
|
recordId: map["recordId"],
|
|
|
|
state: RecordPreprocessState.fromString(map["state"]),
|
|
|
|
progress: map["progress"],
|
|
|
|
failReason: map["failReason"] ?? "",
|
|
|
|
resultDiffs: (map["resultDiffs"] as List? ?? []).map((e) => AssetDiff.fromMap(e)).toList(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|