@model StoryIntelligenceProgressViewModel @{ ViewData["Title"] = "Review assets"; }

Phase 3

Review Story Intelligence

Stage 4 of 5

Review Assets

Approve the important objects PlotDirector should create or link from your imported scenes. Nothing is created unless you approve it.

@if (TempData["OnboardingStoryIntelligenceError"] is string error) {
@error
} @if (TempData["OnboardingStoryIntelligenceMessage"] is string message) {
@message
}
@if (Model.AssetReview.Candidates.Count == 0) {
No asset decisions are waiting.

Assets are already up to date, or there were no story-significant asset suggestions ready to import.

Review RelationshipsNext
@FutureStage("Review Knowledge") @FutureStage("Review Continuity") @FutureStage("Timeline Events")
} else {
@for (var i = 0; i < Model.AssetReview.Candidates.Count; i++) { var candidate = Model.AssetReview.Candidates[i];
@candidate.AssetName @candidate.Category ยท @candidate.AppearsInScenes.ToString("N0") scene@(candidate.AppearsInScenes == 1 ? string.Empty : "s") @candidate.Confidence
First appearance
@Display(candidate.ExampleFirstAppearance)
Possible owner
@Display(candidate.PossibleOwner)
Existing match
@(candidate.ExistingAssetName ?? "None")
@if (candidate.PossibleAliases.Any()) {
Possible aliases

@string.Join(", ", candidate.PossibleAliases)

} @if (!string.IsNullOrWhiteSpace(candidate.ExampleContext)) {
Scene context

@candidate.ExampleContext

} @if (candidate.IsExistingMatch) {
Possible existing asset

@candidate.AssetName may already be @candidate.ExistingAssetName. Choose whether to link them or create a separate asset.

}
Decision
}
Back to locations
}
@section Scripts { } @functions { private static string Display(string? value) => string.IsNullOrWhiteSpace(value) ? "Not detected" : value; private static Microsoft.AspNetCore.Html.IHtmlContent FutureStage(string label) => new Microsoft.AspNetCore.Html.HtmlString($"
{System.Net.WebUtility.HtmlEncode(label)}Coming Soon
"); }