Skip to content

Commit ce6d3a1

Browse files
committed
WIP
1 parent 24a972d commit ce6d3a1

File tree

4 files changed

+38
-32
lines changed

4 files changed

+38
-32
lines changed

public/build/assets/app-BMhzFGgZ.js public/build/assets/app-CoQOsKlP.js

+13-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"isEntry": true
1818
},
1919
"resources/js/app.js": {
20-
"file": "assets/app-BMhzFGgZ.js",
20+
"file": "assets/app-CoQOsKlP.js",
2121
"src": "resources/js/app.js",
2222
"isEntry": true,
2323
"css": [
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import {Controller} from '@hotwired/stimulus';
2+
3+
export default class extends Controller {
4+
static values = {
5+
url: {
6+
type: String,
7+
default: '/'
8+
},
9+
}
10+
11+
back() {
12+
if (history.length > 2) {
13+
// if history is not empty, go back:
14+
history.back();
15+
} else {
16+
// go to specified fallback url:
17+
Turbo.visit(this.urlValue);
18+
}
19+
}
20+
}

resources/views/post/show.blade.php

+4-18
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,15 @@
44

55
@section('content')
66

7-
<script>
8-
// TODO:
9-
function back(url) {
10-
if (history.length > 2) {
11-
// if history is not empty, go back:
12-
history.back();
13-
} else if (url) {
14-
// go to specified fallback url:
15-
Turbo.visit(url);
16-
} else {
17-
// go home:
18-
Turbo.visit('/');
19-
}
20-
}
21-
</script>
22-
237
<x-container>
248
<div class="row">
259
<div class="bg-body-tertiary p-4 p-xl-5 rounded z-1 position-relative">
2610

2711
<button type="button"
28-
onclick="back('{{route('feed')}}')"
29-
class="position-absolute top-0 end-0 m-4 btn btn-link link-secondary text-decoration-none fs-3 d-none d-md-inline">
12+
data-controller="history"
13+
data-history-url-value="{{route('feed')}}"
14+
data-action="click->history#back"
15+
class="position-absolute top-0 end-0 m-4 btn btn-link link-secondary text-decoration-none fs-3 d-none d-md-inline">
3016
<x-icon path="bs.x-lg"/>
3117
</button>
3218

0 commit comments

Comments
 (0)