@model OnboardingWizardViewModel
@using PlotLine.Models
@{
ViewData["Title"] = "Set up PlotDirector";
var currentJourneyOrder = CurrentJourneyOrder(Model);
var journeySteps = new[]
{
new { Label = "Welcome", Order = 1 },
new { Label = "Writing Preferences", Order = 2 },
new { Label = "Project", Order = 3 },
new { Label = "Book", Order = 4 },
new { Label = "Connect Word", Order = 5 },
new { Label = "Scan", Order = 6 },
new { Label = "Review", Order = 7 },
new { Label = "Analyse", Order = 8 },
new { Label = "Complete", Order = 9 }
};
}
Answer a few quick questions so PlotDirector can shape the first setup around the way you write.
}
else if (Model.CurrentStep == OnboardingSteps.WritingJourney)
{
Your starting point
Where are you in your writing journey?
}
else if (Model.CurrentStep == OnboardingSteps.WritingSoftware)
{
Writing workflow
What software do you write in?
}
else if (Model.CurrentStep == OnboardingSteps.Project)
{
Story home
Create your first project
Choose the story space PlotDirector should use for this setup.
}
else if (Model.CurrentStep == OnboardingSteps.Book)
{
@Model.SelectedProjectName
Create your first book
Choose the book this onboarding setup should prepare for later manuscript guidance.
}
else
{
Ready for the next phase
@if (Model.IsMicrosoftWordPath)
{
Connect your Word Companion
Open Microsoft Word, open your manuscript, start the PlotDirector Word Companion, and sign in using your PlotDirector account. PlotDirector will stay on this page with you while the scan and build run.
}
else
{
Next: upload a Word export
In a later phase, PlotDirector will let you upload a .docx export from your writing tool and connect it to @Model.SelectedBookTitle.
}
@if (Model.IsMicrosoftWordPath)
{
Word Companion
@(Model.CompanionPresence.IsConnected ? "Word Companion Connected" : "Waiting for Word Companion...")