codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Client-side routing done right

Hajime Yamasaki Vukelic
codeburst
Published in
8 min readSep 25, 2018

--

Photo by Jack Anstey on Unsplash

What the heck is routing?

router.route('/book/:id', BookComponent)

But what about bookmarked URLs?

What if the user presses the back button?

Now, the good stuff

{
module: 'company',
moduleArgs: ['some-id-123'],
section: 'profile',
sectionArgs: {},
}
/company/some-id-123?view=profile
// We are on '/company/some-id-123?view=profile'> loc.toLocation(window.location)
{module: 'Company', moduleArgs: ['some-id-123'],
section: 'profile', sectionArgs: {}}
> loc.toURL({ module: 'lists', moduleArgs: ['id-456'],
... section: undefined, sectionArgs: {} })
'/lists/id-456'
> loc.toURL(loc.toLocation({
... pathname: '/lists/id-456',
... search: ''
... }))
'/lists/id-456'
@Component
class ModuleSelector extends Vue {
data() {
return {
location: loc.toLocation(window.location)
}
}

// ...
}
sevrices.goToLocation({ section: 'anotherSection' })
@Component
class ModuleSelector extends Vue {

// ...
@Listen('locationChange')
setLocation(newLocation) {
this.location = newLocation
}
}
@Component
class ModuleSelector extends Vue {
render() {
// some JSX magic here
const ModuleComponent = VIEWS[this.location.module]
return <ModuleComponent section={this.location.section} ... />
}
// ...}
const VIEWS = {
company: Company,
lists: Lists,
}

Wait a second, a router can do those!

Show me the code!

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Hajime Yamasaki Vukelic

Helping build an inclusive and accessible web. Web developer and writer. Sometimes annoying, but mostly just looking to share knowledge.

No responses yet

Write a response