hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 1 | /** |
| 2 | * Guided Tour to explain the UI |
| 3 | * |
| 4 | * @author Helge Stallkamp |
| 5 | */ |
Akron | e51eaa3 | 2020-11-10 09:35:53 +0100 | [diff] [blame] | 6 | "use strict"; |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 7 | |
Akron | e51eaa3 | 2020-11-10 09:35:53 +0100 | [diff] [blame] | 8 | define(['lib/intro', 'vc', 'hint', 'menu', 'vc/doc', 'vc/docgroup'], |
| 9 | function(introClass, vcClass, hintClass, menuClass, docClass, docGroup) { |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 10 | |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 11 | //needed for localization of labels and contents of the tour |
| 12 | const loc = KorAP.Locale; |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 13 | |
hebasta | a84c7a9 | 2021-10-26 21:12:40 +0200 | [diff] [blame] | 14 | //labels for nextStep, previousStep and done |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 15 | loc.TOUR_lprev = loc.TOUR_lprev || "Back"; |
| 16 | loc.TOUR_lnext = loc.TOUR_lnext || "Next"; |
| 17 | loc.TOUR_ldone = loc.TOUR_ldone || "Done"; |
hebasta | ca61f81 | 2019-11-11 22:25:27 +0100 | [diff] [blame] | 18 | loc.TOUR_ldoneSearch = loc.TOUR_ldoneSearch || "Search"; |
| 19 | |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 20 | //localization guided tour gTstartSearch |
hebasta | a84c7a9 | 2021-10-26 21:12:40 +0200 | [diff] [blame] | 21 | loc.TOUR_welcti = loc.TOUR_welcti || "<span class='tgreeting'> Welcome to our guided tour! </span>"; |
| 22 | loc.TOUR_welc = loc.TOUR_welc || "This tour should give you a quick introduction to KorAP. " + |
hebasta | 84a7e0e | 2021-11-03 19:11:33 +0100 | [diff] [blame] | 23 | "We lead you step by step through an example."; |
hebasta | f898d7b | 2021-12-06 14:32:06 +0100 | [diff] [blame] | 24 | loc.TOUR_sear1ti = loc.TOUR_sear1ti || "Query"; |
| 25 | loc.TOUR_sear1 = loc.TOUR_sear1 || "Enter your query here, for example the search for '" + loc.TOUR_Qexample + "'."; |
| 26 | loc.TOUR_searAnnotti = loc.TOUR_searAnnotti || "Annotation Assistant (1)"; |
| 27 | loc.TOUR_searAnnot = loc.TOUR_searAnnot || "<p> For querying annotations you can use the annotation assistant. </p> " + |
| 28 | "<p> Click the orange bar " + |
| 29 | "or press the down arrow key ↓ for display. </p>"; |
| 30 | loc.TOUR_annotAssti = loc.TOUR_annotAssti || "Annotation Assistant (2)"; |
| 31 | loc.TOUR_annotAss = loc.TOUR_annotAss || "The annotation assistant helps in formulating queries by listing various annotation foundries and layers."; |
| 32 | loc.TOUR_vccho1ti = loc.TOUR_vccho1ti || "Corpora Selection", |
| 33 | loc.TOUR_vccho1 = loc.TOUR_vccho1 || "Click here to show the corpus assistant."; |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 34 | loc.TOUR_vccho2ti = loc.TOUR_vccho2ti || "Corpus Assistant (1)"; |
hebasta | f898d7b | 2021-12-06 14:32:06 +0100 | [diff] [blame] | 35 | loc.TOUR_vccho2 = loc.TOUR_vccho2 || "With the help of the assistant you can define virtual corpora on the basis of metadata."; |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 36 | loc.TOUR_vccho3ti = loc.TOUR_vccho3ti || "Corpus Assistant (2)"; |
hebasta | f898d7b | 2021-12-06 14:32:06 +0100 | [diff] [blame] | 37 | loc.TOUR_vccho3 = loc.TOUR_vccho3 || "A drop down box lists some of the available metadata fields."; |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 38 | loc.TOUR_vccho4ti = loc.TOUR_vccho4ti || "Corpus Assistant (3)"; |
Marc Kupietz | be90c94 | 2024-10-01 17:25:30 +0200 | [diff] [blame] | 39 | loc.TOUR_vccho4 = loc.TOUR_vccho4 || "This example defines a virtual corpus consisting of all texts published in " + loc.TOUR_pubDate + "."; |
hebasta | f898d7b | 2021-12-06 14:32:06 +0100 | [diff] [blame] | 40 | loc.TOUR_vcStat1ti = loc.TOUR_vcStat1ti || "Corpus Statistics (1)"; |
| 41 | loc.TOUR_vcStat1 = loc.TOUR_vcStat1 || "Click here to display the corpus statistics."; |
| 42 | loc.TOUR_vcStat2ti = loc.TOUR_vcStat2ti || "Corpus Statistics (2)"; |
| 43 | loc.TOUR_vcStat2 = loc.TOUR_vcStat2 || "Here you can see the corpus statistics."; |
| 44 | loc.TOUR_qlfieldti = loc.TOUR_qlfieldti ||"Query Languages"; |
| 45 | loc.TOUR_qlfield = loc.TOUR_qlfield|| "You can use KorAP with different query languages. Choose your preferred query language here. "; |
| 46 | loc.TOUR_helpti = loc.TOUR_helpti || "Help"; |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 47 | loc.TOUR_help = loc.TOUR_help || "Here you can find help and information about KorAP."; |
hebasta | f898d7b | 2021-12-06 14:32:06 +0100 | [diff] [blame] | 48 | loc.TOUR_glimpseti = loc.TOUR_glimpseti || "Glimpse"; |
hebasta | ca61f81 | 2019-11-11 22:25:27 +0100 | [diff] [blame] | 49 | loc.TOUR_glimpse = loc.TOUR_glimpse || "Select this to show only the first hits in undefined order."; |
hebasta | f898d7b | 2021-12-06 14:32:06 +0100 | [diff] [blame] | 50 | loc.TOUR_seargoti = loc.TOUR_seargoti || "Query"; |
| 51 | loc.TOUR_seargo = loc.TOUR_seargo || "Start the search by clicking the magnifying glass."; |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 52 | |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 53 | //localization guided Tour gTshowResults |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 54 | loc.TOUR_kwicti = loc.TOUR_kwicti || "Results"; |
hebasta | f898d7b | 2021-12-06 14:32:06 +0100 | [diff] [blame] | 55 | loc.TOUR_kwic = loc.TOUR_kwic || "The results of the query are displayed as KWIC (keyword in context). On the left side, you can see the according text sigle."; |
| 56 | loc.TOUR_snippetti = loc.TOUR_snippetti || "KWIC (2)"; |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 57 | loc.TOUR_snippet = loc.TOUR_snippet || "Click on a match to show a larger snippet."; |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 58 | loc.TOUR_snippetbti = loc.TOUR_snippetbti || "Snippet"; |
hebasta | f898d7b | 2021-12-06 14:32:06 +0100 | [diff] [blame] | 59 | loc.TOUR_snippetb = loc.TOUR_snippetb || "At the bottom of the snippet, there is a group of buttons to show more result views."; |
| 60 | loc.TOUR_metadatabti = loc.TOUR_metadatabti || "Metadata (1)"; |
| 61 | loc.TOUR_metadatab = loc.TOUR_metadatab || "Click here to display the metadata."; |
| 62 | loc.TOUR_metadatati = loc.TOUR_metadatati || "Metadata (2)"; |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 63 | loc.TOUR_metadata = loc.TOUR_metadata || "Display of metadata"; |
| 64 | loc.TOUR_tokenbti = loc.TOUR_tokenbti || "Token Annotations"; |
hebasta | f898d7b | 2021-12-06 14:32:06 +0100 | [diff] [blame] | 65 | loc.TOUR_tokenb = loc.TOUR_tokenb || "Click here to show the token annotations."; |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 66 | loc.TOUR_tokenti = loc.TOUR_tokenti || "Annotations"; |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 67 | loc.TOUR_token = loc.TOUR_token || "KorAP supports multiple annotations."; |
hebasta | f898d7b | 2021-12-06 14:32:06 +0100 | [diff] [blame] | 68 | loc.TOUR_treebti = loc.TOUR_treebti || "Relational Annotations (1)"; |
| 69 | loc.TOUR_treeb = loc.TOUR_treeb || "Click here to display relational annotations."; |
| 70 | loc.TOUR_treeti = loc.TOUR_treeti || "Relational Annotations (2)" |
| 71 | loc.TOUR_tree = loc.TOUR_tree || "Relational annotations can be displayed as tree and arch views." |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 72 | loc.TOUR_tourdone = loc.TOUR_tourdone || "Have fun with KorAP!"; |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 73 | |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 74 | |
| 75 | //localization of button labels |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 76 | let labelOpts= { |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 77 | 'prevLabel': loc.TOUR_lprev, |
| 78 | 'nextLabel': loc.TOUR_lnext, |
| 79 | 'doneLabel': loc.TOUR_ldone, |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 80 | 'showStepNumbers': false |
| 81 | }; |
| 82 | |
| 83 | //usability options of tours |
| 84 | let usabilityOpts ={ |
| 85 | 'showBullets': false, |
hebasta | a84c7a9 | 2021-10-26 21:12:40 +0200 | [diff] [blame] | 86 | 'overlayOpacity': 0.5, |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 87 | 'exitOnOverlayClick': false, |
hebasta | a84c7a9 | 2021-10-26 21:12:40 +0200 | [diff] [blame] | 88 | 'disableInteraction': true, |
| 89 | 'tooltipClass': 'customTooltip', |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 90 | 'hidePrev': true |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 91 | }; |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 92 | |
| 93 | var doe = document; |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 94 | |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 95 | return{ |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 96 | |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 97 | /** |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 98 | * Guided Tour gTstartSearch: Explains the search functionality |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 99 | */ |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 100 | gTstartSearch:function(elparam){ |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 101 | let intro = introClass(); |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 102 | intro.setOptions(labelOpts); |
hebasta | ca61f81 | 2019-11-11 22:25:27 +0100 | [diff] [blame] | 103 | /* |
| 104 | * Sets button labels for the last step of the tour |
| 105 | * Because Kalamar is a multipage webapplication, this tours starts by |
| 106 | * completion the gTshowResults Tour. Therefore the label of the done button changed. |
| 107 | */ |
| 108 | intro.setOption('doneLabel', loc.TOUR_ldoneSearch ); |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 109 | intro.setOptions(usabilityOpts); |
hebasta | ca61f81 | 2019-11-11 22:25:27 +0100 | [diff] [blame] | 110 | |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 111 | //for testing purposes |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 112 | if(elparam){ |
| 113 | doe = elparam; |
| 114 | } |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 115 | |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 116 | let input = doe.querySelector("#q-field"); |
| 117 | input.value=""; |
| 118 | |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 119 | |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 120 | //steps of the example tour |
| 121 | let Steps =[ |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 122 | //Step 1, intro_item 0 |
hebasta | 2f7e540 | 2021-11-02 20:09:38 +0100 | [diff] [blame] | 123 | { |
hebasta | a84c7a9 | 2021-10-26 21:12:40 +0200 | [diff] [blame] | 124 | title: loc.TOUR_welcti, |
hebasta | 1e2d98e | 2019-10-30 15:58:17 +0100 | [diff] [blame] | 125 | intro: loc.TOUR_welc, |
| 126 | }, |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 127 | //Step 2, intro_item 1 |
hebasta | 1e2d98e | 2019-10-30 15:58:17 +0100 | [diff] [blame] | 128 | { |
hebasta | 84a7e0e | 2021-11-03 19:11:33 +0100 | [diff] [blame] | 129 | title: loc.TOUR_sear1ti, |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 130 | element: '#q-field', |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 131 | intro: loc.TOUR_sear1, |
| 132 | position: 'bottom' |
| 133 | }, |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 134 | //Step 3, intro_item 2 |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 135 | { |
hebasta | 84a7e0e | 2021-11-03 19:11:33 +0100 | [diff] [blame] | 136 | title: loc.TOUR_searAnnotti, |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 137 | element: '#hint', |
| 138 | intro: loc.TOUR_searAnnot, |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 139 | position: 'auto' |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 140 | }, |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 141 | //Step 4, intro_item 3 |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 142 | { |
hebasta | 84a7e0e | 2021-11-03 19:11:33 +0100 | [diff] [blame] | 143 | title: loc.TOUR_annotAssti, |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 144 | element: doe.querySelector("#hint > .menu.hint"), |
| 145 | intro: loc.TOUR_annotAss, |
| 146 | position: 'bottom', |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 147 | }, |
| 148 | //Step 5, intro_item 4 |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 149 | { |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 150 | title: loc.TOUR_vccho1ti, |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 151 | element:'#vc-choose', |
| 152 | intro: loc.TOUR_vccho1, |
| 153 | position: "bottom", |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 154 | }, |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 155 | //Step 6, intro_item 5 |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 156 | { |
hebasta | 84a7e0e | 2021-11-03 19:11:33 +0100 | [diff] [blame] | 157 | title: loc.TOUR_vccho2ti, |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 158 | element:'#vc-view', |
| 159 | intro: loc.TOUR_vccho2, |
| 160 | position: "bottom", |
| 161 | }, |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 162 | //Step 7, intro_item 6 |
| 163 | { |
| 164 | title: loc.TOUR_vccho3ti, |
| 165 | element: doe.querySelector('#vc-view * .doc > menu'), |
| 166 | intro: loc.TOUR_vccho3, |
| 167 | position: "left", |
| 168 | }, |
| 169 | //Step 8, intro_item 7 |
| 170 | { |
| 171 | title: loc.TOUR_vccho4ti, |
| 172 | element: doe.querySelector('#vc-view * .doc'), |
| 173 | intro: loc.TOUR_vccho4, |
| 174 | position: "left", |
| 175 | }, |
| 176 | //Step 9, intro_item 8 |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 177 | { |
hebasta | 84a7e0e | 2021-11-03 19:11:33 +0100 | [diff] [blame] | 178 | title: loc.TOUR_vcStat1ti, |
hebasta | d090a51 | 2019-07-10 16:36:01 +0200 | [diff] [blame] | 179 | element: doe.querySelector('.statistic'), |
hebasta | 94e47cb | 2019-07-24 22:24:27 +0200 | [diff] [blame] | 180 | intro: loc.TOUR_vcStat1, |
hebasta | d090a51 | 2019-07-10 16:36:01 +0200 | [diff] [blame] | 181 | position: "left", |
| 182 | }, |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 183 | //Step 10, intro_item 9 |
hebasta | d090a51 | 2019-07-10 16:36:01 +0200 | [diff] [blame] | 184 | { |
hebasta | 84a7e0e | 2021-11-03 19:11:33 +0100 | [diff] [blame] | 185 | title: loc.TOUR_vcStat2ti, |
hebasta | 94e47cb | 2019-07-24 22:24:27 +0200 | [diff] [blame] | 186 | element: doe.querySelector('.stattable'), |
| 187 | intro: loc.TOUR_vcStat2, |
| 188 | position: "bottom", |
| 189 | }, |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 190 | //Step 11, intro_item 10 |
hebasta | 94e47cb | 2019-07-24 22:24:27 +0200 | [diff] [blame] | 191 | { |
hebasta | 84a7e0e | 2021-11-03 19:11:33 +0100 | [diff] [blame] | 192 | title: loc.TOUR_qlfieldti, |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 193 | element: doe.querySelector('#ql-field').parentNode, |
| 194 | intro: loc.TOUR_qlfield, |
| 195 | position: "bottom", |
| 196 | }, |
| 197 | { |
hebasta | 84a7e0e | 2021-11-03 19:11:33 +0100 | [diff] [blame] | 198 | title: loc.TOUR_glimpseti, |
hebasta | bd53f82 | 2021-10-26 21:50:06 +0200 | [diff] [blame] | 199 | element: doe.querySelector('#glimpse').parentNode, |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 200 | intro: loc.TOUR_glimpse, |
| 201 | position: "bottom", |
| 202 | }, |
| 203 | { |
hebasta | 84a7e0e | 2021-11-03 19:11:33 +0100 | [diff] [blame] | 204 | title: loc.TOUR_helpti, |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 205 | element:'#view-tutorial', |
| 206 | intro: loc.TOUR_help, |
| 207 | position: "bottom", |
| 208 | }, |
| 209 | { |
hebasta | 84a7e0e | 2021-11-03 19:11:33 +0100 | [diff] [blame] | 210 | title: loc.TOUR_seargoti, |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 211 | element: '#qsubmit', |
| 212 | intro: loc.TOUR_seargo, |
| 213 | position: "bottom", |
| 214 | }, |
| 215 | ]; |
| 216 | |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 217 | //pass in the Steps array created earlier |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 218 | intro.setOptions({steps: Steps}); |
| 219 | this.testPrerequ(Steps, intro); |
hebasta | ca61f81 | 2019-11-11 22:25:27 +0100 | [diff] [blame] | 220 | |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 221 | //changes before executing the single steps |
| 222 | intro.onbeforechange(function(targetedElement){ |
| 223 | switch(targetedElement.id){ |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 224 | case "q-field": |
hebasta | d090a51 | 2019-07-10 16:36:01 +0200 | [diff] [blame] | 225 | /* |
| 226 | * TODO: |
| 227 | * #268 is not merged at the time beeing: |
| 228 | * introJs.currentStep() merge requested https://github.com/usablica/intro.js/pull/268/files |
| 229 | */ |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 230 | targetedElement.value = loc.TOUR_Qexample; |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 231 | break; |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 232 | case "vc-view": |
Akron | 0b37f3e | 2021-02-09 10:32:03 +0100 | [diff] [blame] | 233 | let vchoo = doe.querySelector("#vc-choose"); |
| 234 | let vcv = doe.querySelector("#vc-view"); |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 235 | if(!(vcv.querySelector(".active"))){ |
| 236 | vchoo.click(); |
hebasta | d090a51 | 2019-07-10 16:36:01 +0200 | [diff] [blame] | 237 | /* |
| 238 | * Intro.js caches elements at the beginning, so element and position has to be set again. |
| 239 | */ |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 240 | intro._introItems[8].element = doe.querySelector('.statistic'); |
| 241 | intro._introItems[8].position = "left"; |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 242 | } |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 243 | intro._introItems[7].element = doe.querySelector('#vc-view * .doc'); |
| 244 | intro._introItems[7].position = "left"; |
| 245 | break; |
Helge | f4107f1 | 2025-02-27 12:15:18 +0100 | [diff] [blame] | 246 | } |
| 247 | /* |
| 248 | * Hides the tutorial. If it is opened in an iframe the searchbar which is needed for the tour is not visible anymore. |
| 249 | */ |
| 250 | if(this._currentStep == 1){ |
| 251 | let tutel = doe.querySelector('#tutorial'); |
| 252 | tutel.style.display = 'none'; |
| 253 | } |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 254 | if(this._currentStep == 9){ |
hebasta | 94e47cb | 2019-07-24 22:24:27 +0200 | [diff] [blame] | 255 | let statbut = doe.querySelector('.statistic'); |
| 256 | statbut.click(); |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 257 | intro._introItems[9].element = doe.querySelector(".stattable"); |
| 258 | intro._introItems[9].position = "bottom"; |
hebasta | 94e47cb | 2019-07-24 22:24:27 +0200 | [diff] [blame] | 259 | } |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 260 | }); |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 261 | |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 262 | intro.onbeforeexit(function(){ |
| 263 | if(KorAP.Hint.active() && KorAP.Hint.active().dontHide){ |
| 264 | KorAP.Hint.unshow(); |
| 265 | } |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 266 | if (KorAP._vcKeyMenu.dontHide){ |
| 267 | KorAP._vcKeyMenu.dontHide = false; |
| 268 | KorAP._vcKeyMenu.hide(); |
| 269 | } |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 270 | }); |
| 271 | |
| 272 | intro.onchange(function(targetElement) { |
| 273 | var that = this; |
| 274 | switch(this._currentStep){ |
| 275 | //hides Hint if back button is pressed |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 276 | case 2: |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 277 | if(KorAP.Hint.active()){ |
| 278 | KorAP.Hint.unshow(); |
| 279 | } |
| 280 | break; |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 281 | case 3: |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 282 | KorAP.Hint.show(false); |
| 283 | KorAP.Hint.active().dontHide = true; |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 284 | intro._introItems[3].element = doe.querySelector(".menu.roll.hint"); |
| 285 | intro._introItems[3].position = doe.querySelector("bottom"); |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 286 | break; |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 287 | case 4: |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 288 | KorAP.Hint.unshow(); |
| 289 | KorAP._vcKeyMenu.dontHide = false; |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 290 | break; |
hebasta | fa11834 | 2021-11-02 19:56:01 +0100 | [diff] [blame] | 291 | case 6: |
| 292 | let vccbut = doe.querySelector('#vc-view * .doc > span'); |
| 293 | vccbut.click(); |
| 294 | KorAP._vcKeyMenu.dontHide = true; |
| 295 | intro._introItems[6].element = doe.querySelector('#vc-view * .menu.roll'); |
| 296 | intro._introItems[6].position = "left"; |
| 297 | break; |
| 298 | case 7: |
| 299 | KorAP._vcKeyMenu.dontHide = false; |
| 300 | KorAP._vcKeyMenu.hide(); |
| 301 | KorAP.vc.fromJson(loc.TOUR_vcQuery); |
| 302 | intro._introItems[7].element = doe.querySelector('#vc-view * .doc'); |
| 303 | intro._introItems[7].position = "left"; |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 304 | } |
| 305 | }); |
| 306 | |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 307 | // Execute at the end of the tour (By clicking at the done-Button) |
| 308 | intro.oncomplete(function(){ |
| 309 | KorAP.session.set("tour", true); |
hebasta | 94e47cb | 2019-07-24 22:24:27 +0200 | [diff] [blame] | 310 | doe.getElementById("qsubmit").click(); |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 311 | }); |
| 312 | |
| 313 | return intro; |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 314 | }, |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 315 | |
| 316 | |
| 317 | /* Guided Tour to explain the different views of the results */ |
hebasta | ca61f81 | 2019-11-11 22:25:27 +0100 | [diff] [blame] | 318 | gTshowResults: function(elparam){ |
| 319 | |
| 320 | let tourR = introClass(); |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 321 | tourR.setOptions(usabilityOpts); |
hebasta | ca61f81 | 2019-11-11 22:25:27 +0100 | [diff] [blame] | 322 | |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 323 | //for testing purposes |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 324 | if(elparam){ |
| 325 | doe = elparam; |
| 326 | } |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 327 | let StepsSR = [ |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 328 | //Step 1, intro_item 0 |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 329 | { |
| 330 | title: loc.TOUR_kwicti, |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 331 | element: '#search', |
| 332 | intro: loc.TOUR_kwic , |
| 333 | position: "auto", |
| 334 | }, |
| 335 | //Step 2, intro_item 1 |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 336 | { |
| 337 | title: loc.TOUR_snippetti, |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 338 | element: doe.querySelector("#search > ol > li"), |
| 339 | intro: loc.TOUR_snippet, |
| 340 | position: "bottom", |
| 341 | }, |
| 342 | //Step 3, intro_item 2 |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 343 | { |
| 344 | title: loc.TOUR_snippetbti, |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 345 | element: doe.querySelector("#search > ol > li"), |
| 346 | intro: loc.TOUR_snippetb, |
| 347 | position: "bottom", |
| 348 | }, |
| 349 | //Step 4, intro_item 3 |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 350 | { |
| 351 | title: loc.TOUR_metadatabti, |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 352 | element: doe.querySelector(".action > .metatable"), |
| 353 | intro: loc.TOUR_metadatab, |
| 354 | position: "bottom", |
| 355 | }, |
| 356 | //Step 5, intro_item 4 |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 357 | { |
| 358 | title: loc.TOUR_metadatati, |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 359 | element: doe.querySelector(".view.metatable"), |
| 360 | intro: loc.TOUR_metadata, |
| 361 | position: "auto", |
| 362 | }, |
| 363 | //Step 6, intro_item 5 |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 364 | { |
| 365 | title: loc.TOUR_tokenbti, |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 366 | element: doe.querySelector(".action > .info"), |
| 367 | intro: loc.TOUR_tokenb, |
| 368 | position: "bottom", |
| 369 | }, |
| 370 | //Step 7, intro_item 6 |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 371 | { |
| 372 | title: loc.TOUR_tokenti, |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 373 | element: doe.querySelector(".view.tokentable"), |
| 374 | intro: loc.TOUR_token, |
| 375 | position: "auto", |
| 376 | }, |
| 377 | //Step 8, intro_item 7 |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 378 | { |
| 379 | title: loc.TOUR_treebti, |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 380 | element: doe.querySelector(".tree"), |
| 381 | intro: loc.TOUR_treeb, |
| 382 | position: "bottom", |
| 383 | }, |
| 384 | //Step 9, intro_item 8 |
hebasta | 14bb855 | 2021-11-10 16:35:31 +0100 | [diff] [blame] | 385 | { |
| 386 | title: loc.TOUR_treeti, |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 387 | element: doe.querySelector(".view.relations"), |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 388 | intro: loc.TOUR_tree, |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 389 | position: "bottom", |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 390 | }, |
| 391 | //Step 10, intro_item 9 |
| 392 | { |
| 393 | intro: loc.TOUR_tourdone, |
| 394 | } |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 395 | ] |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 396 | |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 397 | tourR.setOptions({steps:StepsSR}); |
hebasta | ee7b8a8 | 2020-01-20 12:45:04 +0100 | [diff] [blame] | 398 | tourR.setOptions(labelOpts); |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 399 | |
| 400 | tourR.onbeforeexit(function(){ |
| 401 | KorAP.session.set("tour", false); |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 402 | }); |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 403 | //See also: https://introjs.com/docs/intro/options/ |
| 404 | tourR.setOption('scrollToElement', true); |
| 405 | tourR.setOption('scrollTo','tooltip'); |
| 406 | this.testPrerequ(StepsSR, tourR); |
| 407 | |
| 408 | //TODO see also: introJS.totalSteps() merge requested: //github.com/usablica/intro.js/pull/268/files |
| 409 | tourR.onbeforechange(function(targetedElement){ |
| 410 | |
| 411 | if(this._currentStep == 1){ |
| 412 | KorAP.session.set("tour", false); |
| 413 | } |
| 414 | |
| 415 | if(this._currentStep == 2){ |
| 416 | doe.querySelector("#search > ol > li").click(); |
| 417 | tourR._introItems[3].element = doe.querySelector('.action > .metatable'); |
| 418 | tourR._introItems[3].position = "bottom"; |
| 419 | } |
| 420 | |
| 421 | if(this._currentStep == 4){ |
| 422 | doe.querySelector(".metatable").click(); |
| 423 | tourR._introItems[4].element = doe.querySelector('.view.metatable'); |
| 424 | tourR._introItems[5].element = doe.querySelector('.action > .info'); |
| 425 | tourR._introItems[5].position = "bottom"; |
| 426 | } |
| 427 | |
| 428 | if(this._currentStep == 6){ |
| 429 | doe.querySelector(".info").click(); |
| 430 | tourR._introItems[6].element = doe.querySelector('.view.tokentable'); |
| 431 | tourR._introItems[7].element = doe.querySelector('.tree'); |
| 432 | tourR._introItems[7].position = "bottom"; |
| 433 | } |
| 434 | |
| 435 | if(this._currentStep == 8){ |
| 436 | doe.querySelector(".tree").click(); |
hebasta | 7fa6f08 | 2019-11-17 19:00:52 +0100 | [diff] [blame] | 437 | let collect = document.querySelectorAll(".button-group-list")[0].querySelectorAll('li'); |
| 438 | for(let i = 0; i < collect.length; i++){ |
| 439 | if (collect[i].innerText == loc.TOUR_Relations) { |
| 440 | collect[i].click(); |
| 441 | break; |
| 442 | } |
| 443 | } |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 444 | tourR._introItems[8].element = doe.querySelector(".view.relations"); |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 445 | } |
| 446 | }); |
hebasta | f95226b | 2019-09-19 11:37:00 +0200 | [diff] [blame] | 447 | |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 448 | return tourR; |
| 449 | }, |
hebasta | 87f1b1f | 2019-07-30 13:03:23 +0200 | [diff] [blame] | 450 | /* |
| 451 | * The total number of steps and the text of the tooltips are needed for jasmine testing. |
| 452 | */ |
| 453 | testPrerequ: function(steps, tour){ |
| 454 | //TODO see also: introJS.totalSteps() merge requested: //github.com/usablica/intro.js/pull/268/files |
| 455 | let StepsT = steps; |
| 456 | let gtour = tour; |
| 457 | gtour.stepCount = StepsT.length; |
| 458 | |
| 459 | //Array of intro content needed for efficient testing |
| 460 | gtour.testIntros = []; |
| 461 | |
| 462 | for(let i = 0; i< StepsT.length; i++){ |
| 463 | gtour.testIntros.push(StepsT[i].intro); |
| 464 | } |
| 465 | }, |
hebasta | 5df796f | 2019-05-21 15:27:12 +0200 | [diff] [blame] | 466 | |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 467 | } |
| 468 | }); |