Merge "Add Help menu and Update Wizard style"
[ccsdk/cds.git] / cds-ui / designer-client / src / app / modules / feature-modules / packages / packages-dashboard / guideSteps.ts
1
2
3 export const steps = [
4     // {
5     //     anchorId: 'allTab',
6     //     content: 'This Tab contain all packages you created before',
7     //     title: 'All Package',
8     // },
9     // {
10     //     anchorId: 'search',
11     //     content: 'Search for Package by name, version, tags and type',
12     //     title: 'Search',
13     // },
14     // {
15     //     anchorId: 'tagFilter',
16     //     content: 'Filter Packages by tags',
17     //     title: 'Tag Filter',
18     // },
19     // {
20     //     anchorId: 'import',
21     //     content: 'Import a package to CDS',
22     //     title: 'Import',
23     // },
24     {
25         anchorId: 'create',
26         content: 'Create a new Package',
27         title: 'Create',
28     },
29     {
30         anchorId: 'metadataTab',
31         content: 'Set your package basic information',
32         title: 'Metadata Tab',
33         route: 'packages/createPackage',
34         stepId: 'metadataTab'
35     },
36     {
37         anchorId: 'mt-packageName',
38         content: 'Set your package name (required)',
39         title: 'Package name',
40     },
41     {
42         anchorId: 'mt-packageVersion',
43         content: 'Set your package version like 1.0.0 (required)',
44         title: 'Package version',
45     },
46     {
47         anchorId: 'mt-packageDescription',
48         content: 'Set your package description (required)',
49         title: 'Package description',
50     },
51     {
52         anchorId: 'mt-packageTags',
53         content: 'Set your package Tags (Optional)',
54         title: 'Package tag',
55     },
56     // -------
57     // {
58     //     anchorId: 'mt-packageKeys',
59     //     content: 'Set your package custom keys (Optional)',
60     //     title: 'Package keys',
61     // },
62     // Temaplate & Mapping
63     {
64         anchorId: 'tm-templateTab',
65         content: 'Create Your  \'Template & Mapping \' files',
66         title: 'Temaplate & Mapping',
67         stepId: 'tm-templateTab'
68     },
69     {
70         anchorId: 'tm-templateName',
71         content: 'Set your Template & Mapping Name',
72         title: 'Temaplte & Mapping name',
73         stepId: 'tm-templateName'
74     },
75     {
76         anchorId: 'tm-templateType',
77         content: 'Set your Template Type',
78         title: 'Temaplte Type',
79     },
80     {
81         anchorId: 'tm-templateContent',
82         content: 'Click \'Import File\' to get content from a file, or write template content manually',
83         title: 'Template Content',
84     },
85     {
86         anchorId: 'tm-mappingContent',
87         content: 'Set your mapping content from the current template, or from an external file (XML, CSV)',
88         title: 'Mapping Content',
89     },
90     {
91         anchorId: 'tm-templateFinish',
92         content: 'Click your \' Finish \' button when you finish ',
93         title: 'Finish',
94         stepId: 'tm-templateFinish'
95     },
96     {
97         anchorId: 'tm-templateEdit',
98         content: 'Create another new Template or Click on the previous one to edit',
99         title: 'Create & Edit',
100         stepId: 'tm-templateEdit'
101     },
102     // Script
103     {
104         anchorId: 'st-scriptsTab',
105         content: 'Move To Scripts Tab to set your Kotlin and Python scripts',
106         title: 'Scripts',
107         stepId: 'st-scriptsTab'
108     },
109     {
110         anchorId: 'st-scriptsImport',
111         content: 'Click \' Import File\'button kotlin and python files',
112         title: 'Import File'
113     },
114     // DSL
115     {
116         anchorId: 'dslTab',
117         content: 'Write your Authentication Properties in Javascript',
118         title: 'ESAP',
119         stepId: 'dslTab'
120     },
121     // save package
122     {
123         anchorId: 'packageSave',
124         content: 'Click \' Save \' button to create your package',
125         title: 'Save'
126     }
127 ];