Skip to content

Commit 063e7a9

Browse files
authored
fix: jump to next section (#73)
1 parent 335b95a commit 063e7a9

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

app/Http/Controllers/ShowDocumentationController.php

+9-1
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,22 @@ protected function getPageProperties($version, $page = null): array
9393
$pageProperties['nextPage'] = null;
9494
$pageProperties['previousPage'] = null;
9595

96-
foreach ($navigation as $section) {
96+
foreach ($navigation as $i => $section) {
9797
foreach ($section['children'] as $key => $child) {
9898
if ($child['path'] === '/'.$pageProperties['pagePath']) {
9999
if (isset($section['children'][$key + 1])) {
100100
$pageProperties['nextPage'] = $section['children'][$key + 1];
101+
} elseif (isset($navigation[$i + 1])) {
102+
$navigation[$i + 1]['children'][0]['title'] = $navigation[$i + 1]['title'].': '.$navigation[$i + 1]['children'][0]['title'];
103+
$pageProperties['nextPage'] = $navigation[$i + 1]['children'][0];
101104
}
105+
102106
if (isset($section['children'][$key - 1])) {
103107
$pageProperties['previousPage'] = $section['children'][$key - 1];
108+
} elseif (isset($navigation[$i - 1])) {
109+
$lastChild = count($navigation[$i - 1]['children']) - 1;
110+
$navigation[$i - 1]['children'][$lastChild]['title'] = $navigation[$i - 1]['title'].': '.$navigation[$i - 1]['children'][$lastChild]['title'];
111+
$pageProperties['previousPage'] = $navigation[$i - 1]['children'][$lastChild];
104112
}
105113
}
106114
}

config/seotools.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
* The default values to be used by the twitter cards generator.
5151
*/
5252
'defaults' => [
53-
//'card' => 'summary',
54-
//'site' => '@laravelphp',
53+
// 'card' => 'summary',
54+
// 'site' => '@laravelphp',
5555
],
5656
],
5757
'json-ld' => [

0 commit comments

Comments
 (0)