Skip to content

Enable finding all documents that have been published by a given publication

Notifications You must be signed in to change notification settings

versolearning/find-from-publication

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Find From Publication

Find from publication works around a limitation in Meteor core- there's no way to determine which records, client side, have resulted from a given subscription.

This package works around this issue by tracking the subscription's published document in a special, hidden metadata collection.

API

Server Side

To publish a tracked set of documents, simply call:

import { FindFromPublication } from 'meteor/percolate:find-from-publication';

FindFromPublication.publish(name, publisherFn)

This behaves just as Meteor.publish, in that you can call added/removed/changed/ready or simply return (a set of) cursor(s).

Client Side

To get the documents published by a given named publication in a given collection, simply call:

Collection.findFromPublication(name, query, options);

or

Collection.findOneFromPublication(name, query, options);

Example

import { Meteor } from 'meteor/meteor';
import { Mongo } from 'meteor/mongo';
import { FindFromPublication } from 'meteor/percolate:find-from-publication';

const Posts = new Mongo.Collection('posts');

if (Meteor.isServer) {
  FindFromPublication.publish('allPosts', function() {
    return Posts.find();
  });
} 

if (Meteor.isClient) {
  Meteor.subscribe('allPosts');
  
  // in a helper, etc
  const postsCursor = Posts.findFromPublication('allPosts');
  const randomPost = Posts.findOneFromPublication('allPosts', { _id: 'x45ebOafda' });  
}

Sorting

By default, the documents client-side will be sorted by the order they were added.

How it works

When you call added, we simply add a record to the subscriptionMetadata client-only collection. It has the form:

{
  _id: 'a-unique-id-for-this-record',
  collectionName: 'posts',
  documentId: 'the-real-document-id',
  publicationName: 'allPosts',
  rank: 7 // a globally increasing rank over all publications.
}

License

MIT. (c) Percolate Studio, maintained by Tom Coleman (@tmeasday).

Find From Publication was developed as part of the Verso project.

About

Enable finding all documents that have been published by a given publication

Resources

Stars

Watchers

Forks

Packages

No packages published