Coder Social home page Coder Social logo

meteor-integration's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

meteor-mogul

meteor-integration's Issues

Match is not defined

if (args.length) {
      const lastParam = args[args.length - 1];

      // Match pattern to check if the last arg is an options argument.
      const lastParamOptionsPattern = {
        onReady: Match.Optional(Function),
        onStop: Match.Optional(Function),
        connection: Match.Optional(Match.Any),
      };

      if (typeof lastParam === 'function') {
        options.onReady = args.pop();
      }
      else if (lastParam && !isEmpty(lastParam) && Match.test(lastParam, lastParamOptionsPattern)) {
        options = args.pop();
      }
    }

in your /install.js line 72

Webstorm support

Did anyone manage to get webstorm working with this implementation?

Expose a query as an updating array

Instead of exposing it is a a cursor, we could expose results from an query as an array which gets updated using its native methods (which Vue overrides). This might be better than current approach where we expose it as a cursor and patch Vue to support iteration over it. Not sure though how much does Vue do with patching native methods: do they just trigger reactive invalidation or does it also take into the account what exactly changed in an array and optimize based on that?

Code here is doing such changes.

Better int egration with Vue 3 (Custom Renderer API)

Just read this article: "Plans for the Next Iteration of Vue.js"โ€Šโ€Š https://medium.com/the-vue-point/plans-for-the-next-iteration-of-vue-js-777ffea6fabf#---0-387

This part recalled me this fork:

"Custom Renderer API: a first-class API for creating custom renderers will be available, and no longer requires forking the Vue codebase with custom modifications. This will make it much easier for render-to-native projects like Weex and NativeScript Vue to stay up-to-date with upstream changes. It would also make it trivially easy to create custom renderers for various other purposes."

Can we hope for a first-class-citizen Vue in Meteor in 2019? :)

Can't access document properties within computed tracker

    lastItem(){
      if (this.$subReady.bazaarList){
        var a = this.listings[this.listings.length-1]._id
        var projection = JSON.parse(JSON.stringify(this.search.projection))
        projection.sort.SPtoISK = 1
        projection.limit = 1
        console.log(this.search.query, projection)
        var b = AuctionItems.find(this.search.query, projection).fetch()
        return b.active
      } else {
        return false
      }
    }

returns undefined, as will b._id == a

I imagine the issue is with wtv is in charge of letting tracker interface with minimongo.

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.