Skip to content

Commit 395b6d2

Browse files
authored
Implement history mode on vue-router (#355)
* Use history mode for router * Redirect on 404 * Add .htaccess configuration * Set base path on all builds
1 parent 2898776 commit 395b6d2

File tree

6 files changed

+22
-14
lines changed

6 files changed

+22
-14
lines changed

build/webpack.config.dev.js

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ module.exports = (env) => {
1111
'./src/app.js'
1212
],
1313
devServer: {
14+
historyApiFallback: true,
1415
hot: true,
1516
watchOptions: {
1617
poll: true
@@ -54,6 +55,9 @@ module.exports = (env) => {
5455
}
5556
]
5657
},
58+
output: {
59+
publicPath: env.APP_URL.indexOf('dev') !== -1 ? '/dev/' : '/'
60+
},
5761
plugins: [
5862
new webpack.HotModuleReplacementPlugin(),
5963
new VueLoaderPlugin(),

deploy.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ if [ "$1" = "prod" ]; then
1010
echo -n "You are about to deploy to the production site, are you sure? (y/n)? "
1111
read answer
1212
if [ "$answer" != "${answer#[Yy]}" ] ;then
13-
scp -r dist/* $2@athena.dialup.mit.edu:/mit/courseroad/web_scripts/courseroad/
13+
scp -r deploy/production/.htaccess dist/* $2@athena.dialup.mit.edu:/mit/courseroad/web_scripts/courseroad/
1414
else
1515
echo cancelled
1616
fi
1717
elif [ "$1" = "dev" ]; then
18-
scp -r dist/* $2@athena.dialup.mit.edu:/mit/courseroad/web_scripts/courseroad/dev/
18+
scp -r deploy/development/.htaccess dist/* $2@athena.dialup.mit.edu:/mit/courseroad/web_scripts/courseroad/dev/
1919
else
2020
echo "Invalid build location"
2121
fi

deploy/development/.htaccess

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ErrorDocument 404 /dev/index.html

deploy/production/.htaccess

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ErrorDocument 404 /index.html

src/app.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,15 @@ Vue.use(VueRouter);
2525
Vue.use(BrowserSupportPlugin);
2626

2727
var routes = [
28-
{ path: '/', component: MainPage },
29-
{ path: '/about', component: About }
28+
{ path: '/', redirect: '/road' },
29+
{ path: '/about', component: About },
30+
{ path: '/road/:road?', component: MainPage },
31+
{ path: '*', redirect: '/road' }
3032
];
3133

3234
var router = new VueRouter({
35+
base: process.env.APP_URL.indexOf('dev') !== -1 ? '/dev/' : '/',
36+
mode: 'history',
3337
routes
3438
});
3539

src/pages/MainPage.vue

+8-10
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ export default {
298298
this.updateFulfillment(this.$store.state.fulfillmentNeeded);
299299
}
300300
if (newRoad !== '') {
301-
window.history.pushState({}, this.roads[newRoad].name, './#/#road' + newRoad);
301+
this.$router.push({ path: `/road/${newRoad}` });
302302
}
303303
},
304304
cookiesAllowed: function (newCA) {
@@ -324,6 +324,9 @@ export default {
324324
}
325325
},
326326
deep: true
327+
},
328+
$route () {
329+
this.setActiveRoad();
327330
}
328331
},
329332
created () {
@@ -352,10 +355,6 @@ export default {
352355
borders.css({ top: 0, left: scrollWidth - 1 + scrollPosition });
353356
});
354357

355-
$(window).on('hashchange', function () {
356-
this.setActiveRoad();
357-
}.bind(this));
358-
359358
this.setActiveRoad();
360359

361360
axios.get(process.env.FIREROAD_URL + `/requirements/list_reqs/`)
@@ -424,15 +423,14 @@ export default {
424423
}
425424
},
426425
setActiveRoad: function () {
427-
const roadHash = window.location.hash;
428-
if (roadHash.length && roadHash.substring(0, 7) === '#/#road') {
429-
const roadRequested = roadHash.substring(7);
426+
if (this.roads.hasOwnProperty(this.$route.params.road)) {
427+
const roadRequested = this.$route.params.road;
430428
if (roadRequested in this.roads) {
431-
this.$store.commit('setActiveRoad', roadHash.substring(7));
429+
this.$store.commit('setActiveRoad', roadRequested);
432430
return true;
433431
}
434432
}
435-
window.location.hash = '#/#road' + this.activeRoad;
433+
this.$router.push({ path: `/road/${this.activeRoad}` });
436434
return false;
437435
},
438436
addRoad: function (roadName, cos = ['girs'], ss = Array.from(Array(16), () => []), overrides = {}) {

0 commit comments

Comments
 (0)