Files
DiceCloud/rpg-docs/Routes/Routes.js
Thaum 6a2e7f0832 Gave effects their own collection, they no longer live in arrays attached to skills/attributes
Also improved the display of features and generally iterated on their manipulation.

Characters now fetch the relevant effects directly when making a calculation, simplifying almost everything.

Effects now store a reference to their source if they have one.

Effect names are now optional, they can be fetched from the source's name if the source exists.
2015-01-23 11:04:07 +00:00

59 lines
1.3 KiB
JavaScript

Router.configure({
loadingTemplate: 'loading',
layoutTemplate: 'layout'
});
Router.map( function () {
this.route('home',
{
path: '/',
waitOn: function(){
return Meteor.subscribe("characterList", Meteor.userId());
},
data: {
characters: function(){
return Characters.find({}, {fields: {_id: 1}});
}
}
});
this.route('characterSheet', {
path: '/character/:_id',
waitOn: function(){
return [
Meteor.subscribe("singleCharacter", this.params._id, Meteor.userId()),
Meteor.subscribe("characterContainers", this.params._id, Meteor.userId()),
Meteor.subscribe("characterItems", this.params._id, Meteor.userId()),
Meteor.subscribe("characterFeatures", this.params._id, Meteor.userId()),
Meteor.subscribe("characterEffects", this.params._id, Meteor.userId()),
];
},
data: function() {
var data = Characters.findOne({_id: this.params._id}, {fields: {_id: 1}});
return data;
}
});
this.route('inventory', {
path: '/inventory/:_id',
data: {
containers: function() {
var containers = Containers.find({owner: data._id}, {fields: {_id: 1}});
return containers;
},
}
});
this.route('item', {
path: '/item/:_id',
data: function() {
var data = Items.findOne({_id: this.params._id});
return data;
}
});
this.route('loading', {
path: '/loading'
});
});