codeburst

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

Follow publication

Marvel API + Vuepack (Vue + Vuex)

Phong Huynh
codeburst
Published in
7 min readNov 12, 2017

What is Vue?

What is Vuex?

https://vuex.vuejs.org/en/images/vuex.png

What is VuePack?

Getting Started

What we will Build

Marvel API

VuePack

$ npm install -g vue-cli
$ vue init egoist/vuepack new-project
$ cd new-project
$ npm install
? Do you want to use ESLint? Yes
? Generate components in JSX format? No
? Support Electron? No
? Add testcafe to run integration tests? No

Axios for API calls

$ npm install axios --save

Semantic UI

build/index.html

Start Developing

$ npm run dev
Default VuePack Counter Application
store/index.js

State

const state = {
data: []
}

Mutations

const mutations = {
RECEIVE_CHARACTERS (state, { characters }) {
state.data = characters
}
}

Actions

const actions = {
async FETCH_CHARACTERS ({ commit }, name) {
const url = `http://localhost:8080/api/characters?limit=12&name=${name}`
const { data } = await axios.get(url)
commit('RECEIVE_CHARACTERS', { characters: data.results })
}
}

Getters

const getters = {
characters: state => {
return state.data.map(data => {
return {
name: data.name,
url: data.urls[1] ? data.urls[1].url : data.urls[0].url,
image: `${data.thumbnail.path}.${data.thumbnail.extension}`,
description: data.description === '' ? 'No description listed for this character.' : data.description
}
})
}
}

Special Mention: Modules

Creating Components

SearchCharacterForm Component

Search Character Form Component
client/components/SearchCharacterForm.vue

CharactersList Component

Characters List Component

Displaying the Components

Conclusion

Final Result

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 Phong Huynh

Software Developer from Toronto, Canada. Passionate about clean code, minimal design, and learning new things.

Responses (3)

Write a response