Closed
Conversation
Member
|
Redirecting the user to another page for the help might not be ideal as it takes them away from what they're doing. A couple of folks have requested to have the quickstart content available in a Lumino tab so they can have it open whilst working. There's an issue for this here - #1184 (see #1884 (comment) for clarification), it was also requested recentlyish by our operators to facilitate acclimatation. Trivial to implement: diff --git a/src/views/views.js b/src/views/views.js
index 8b32cf18..0845abc5 100644
--- a/src/views/views.js
+++ b/src/views/views.js
@@ -26,6 +26,7 @@ import {
mdiTree,
mdiChartGantt,
mdiInformationOutline,
+ mdiHelp,
} from '@mdi/js'
// Use dynamic async components for lazy loading:
@@ -37,6 +38,7 @@ const AnalysisView = defineAsyncComponent(() => import('@/views/Analysis.vue'))
const GanttView = defineAsyncComponent(() => import('@/views/Gantt.vue'))
const SimpleTreeView = defineAsyncComponent(() => import('@/views/SimpleTree.vue'))
const InfoView = defineAsyncComponent(() => import('@/views/Info.vue'))
+const GuideView = defineAsyncComponent(() => import('@/views/Guide.vue'))
/**
* @typedef {Object} CylcView
@@ -60,6 +62,7 @@ export const workflowViews = new Map([
['Log', { component: LogView, icon: mdiFileDocumentMultipleOutline }],
['Analysis', { component: AnalysisView, icon: mdiChartLine }],
['Gantt', { component: GanttView, icon: mdiChartGantt }],
+ ['Guide', { component: GuideView, icon: mdiHelp }],
])
// Development views that we don't want in production: |
8 tasks
Member
|
We've had another request for documentation (n-window) and a request to advertise the tab layout feature, so opened #2392 (built on this). |
Member
Author
|
Superseded by #2392 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add link to quickstart guide in the workflow toolbar avatar menu
Check List
CONTRIBUTING.mdand added my name as a Code Contributor.