Giter VIP home page Giter VIP logo

vue-joke-generator's Introduction

Notes

Here's the project using vuex to centralize and manage data. It's a tool just like Redux framework used in React library.

檔案職責:

  • index.js

    const state = {
      jokes: []
    }
    export default new Vuex.Store({
      state,
      mutations,
      actions
    })
  • actions.js

    定義行為,commit(constant, data)

    export const initJokes = ({ commit }) => {
      fetch('https://08ad1pao69.execute-api.us-east-1.amazonaws.com/dev/random_ten', {
        method: 'GET'
      })
        .then(res => res.json())
        .then(json => {
          console.log(json);
          commit(types.INIT_JOKES, json)
        })
    }
    
    export const addJoke = ({ commit }) => {
      fetch('https://08ad1pao69.execute-api.us-east-1.amazonaws.com/dev/random_joke', {
        method: 'GET'
      })
        .then(res => res.json())
        .then(json => {
          commit(types.ADD_JOKE, json)
        })
    }
    export const removeJoke = ({ commit }, index) => {
      commit(types.REMOVE_JOKE, index)
    }
  • mutation-types.js

    react使用的reduxconstant.js,用大寫名字定義行為,給action.js以及mutation.js使用

  • mutations.js

    修改到**的state

    export const mutations = {
    [types.INIT_JOKES](state, payload) {
      state.jokes.push(...payload)
    },
    [types.ADD_JOKE](state, payload) {
      state.jokes.push(payload)
    },
    [types.REMOVE_JOKE](state, index) {
      state.jokes.splice(index, 1)
    }
    }

vue-joke-generator's People

Contributors

jialinhuang00 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.