Giter Site home page Giter Site logo

vuex-shortly's Introduction

Vuex Shortly

Shortly Vuex's store methods.

vuex-shortly's People

Contributors

vitorluizc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

vuex-shortly's Issues

Add immutable object getter

I'd like to get a new object from any state.

shortlyGetters({
  user: '{ ...user }',
  types: '[ ...types ]'
}) === {
  user: (state) => isObject(state.user) ? ({ ...state.user }) : {},
  types: (state) => isIterable(state.types) ? Array.from(state.types) : []
}

Add deep getters + mutations

I constantly create getters and mutations handling deep state properties.

Something like example below would be much nice!

shortlyGetters({
  name: 'user.name',
  latestFriend: 'user.friends[0]'
}) === {
  name: (state) => state.user.name,
  latestFriend: (state) => state.friends[0]
}


shortlyMutations({
  name: 'user.name'
}) === {
  name: (state, payload) => {
    state.user.name = payload
  }
}

Add merge state mutation

I'd like to merge some states in a shorter way.

shortlyMutations({
  user: '...user'
}) === {
  user: (state, payload) => {
    state.user = { ...state.user, ...payload }
  }
}

Distribute transpiled sources

I had the error below trying to build a Vue application that uses vue-shortly.

$ yarn build
yarn run v1.2.0
$ node -r dotenv/config --experimental-modules build/build
(node:108) ExperimentalWarning: The ESM module loader is experimental.
static/js/vendor.6104c9e96365eb2dac93.js from UglifyJs
Unexpected token: operator (>) [./node_modules/vuex-shortly/index.js:1,0][static/js/vendor.6104c9e96365eb2dac93.js:58476,28]
  Build failed with errors.

error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
ERROR: Job failed: exit code 1

So I need to transpile it before publish, and would be nice if we also distribute CommonJS & UMD sources

  • Choose a bundle strategy;
  • Transpile to ES5;
  • Distribute CommonJS & UMD module strategies too

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.