mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
145 lines
No EOL
2.6 KiB
JavaScript
145 lines
No EOL
2.6 KiB
JavaScript
campaignSchema = new SimpleSchema({
|
|
_id: {
|
|
type: String,
|
|
optional: true
|
|
},
|
|
createdAt: {
|
|
type: Date,
|
|
optional: true
|
|
},
|
|
sentAt: {
|
|
type: String,
|
|
optional: true
|
|
},
|
|
status: {
|
|
type: String,
|
|
optional: true
|
|
},
|
|
posts: {
|
|
type: [String],
|
|
optional: true
|
|
},
|
|
webHits: {
|
|
type: Number,
|
|
optional: true
|
|
},
|
|
});
|
|
|
|
Campaigns = new Meteor.Collection("campaigns", {
|
|
schema: campaignSchema
|
|
});
|
|
|
|
addToPostSchema.push(
|
|
{
|
|
propertyName: 'scheduledAt',
|
|
propertySchema: {
|
|
type: Date,
|
|
optional: true
|
|
}
|
|
}
|
|
);
|
|
|
|
// Settings
|
|
|
|
// note for next two fields: need to add a way to tell app not to publish field to client except for admins
|
|
|
|
var showBanner = {
|
|
propertyName: 'showBanner',
|
|
propertySchema: {
|
|
type: Boolean,
|
|
optional: true,
|
|
label: 'Show newsletter sign-up banner',
|
|
autoform: {
|
|
group: 'newsletter'
|
|
}
|
|
}
|
|
}
|
|
addToSettingsSchema.push(showBanner);
|
|
|
|
var mailChimpAPIKey = {
|
|
propertyName: 'mailChimpAPIKey',
|
|
propertySchema: {
|
|
type: String,
|
|
optional: true,
|
|
autoform: {
|
|
group: 'newsletter'
|
|
}
|
|
}
|
|
}
|
|
addToSettingsSchema.push(mailChimpAPIKey);
|
|
|
|
var mailChimpListId = {
|
|
propertyName: 'mailChimpListId',
|
|
propertySchema: {
|
|
type: String,
|
|
optional: true,
|
|
autoform: {
|
|
group: 'newsletter'
|
|
}
|
|
}
|
|
}
|
|
addToSettingsSchema.push(mailChimpListId);
|
|
|
|
var postsPerNewsletter = {
|
|
propertyName: 'postsPerNewsletter',
|
|
propertySchema: {
|
|
type: Number,
|
|
optional: true,
|
|
autoform: {
|
|
group: 'newsletter'
|
|
}
|
|
}
|
|
}
|
|
addToSettingsSchema.push(postsPerNewsletter);
|
|
|
|
var newsletterFrequency = {
|
|
propertyName: 'newsletterFrequency',
|
|
propertySchema: {
|
|
type: Number,
|
|
optional: true,
|
|
autoform: {
|
|
group: 'newsletter',
|
|
options: [
|
|
{
|
|
value: 1,
|
|
label: 'Every Day'
|
|
},
|
|
{
|
|
value: 2,
|
|
label: 'Mondays, Wednesdays, Fridays'
|
|
},
|
|
{
|
|
value: 3,
|
|
label: 'Mondays & Thursdays'
|
|
},
|
|
{
|
|
value: 7,
|
|
label: 'Once a week (Mondays)'
|
|
},
|
|
{
|
|
value: 0,
|
|
label: "Don't send newsletter"
|
|
}
|
|
]
|
|
},
|
|
label: 'Newsletter Frequency (requires restart)'
|
|
}
|
|
}
|
|
addToSettingsSchema.push(newsletterFrequency);
|
|
|
|
// create new "campaign" lens for all posts from the past X days that haven't been scheduled yet
|
|
viewParameters.campaign = function (terms) {
|
|
return {
|
|
find: {
|
|
scheduledAt: {$exists: false},
|
|
postedAt: {
|
|
$gte: terms.after
|
|
}
|
|
},
|
|
options: {sort: {sticky: -1, score: -1}}
|
|
};
|
|
}
|
|
|
|
heroModules.push({
|
|
template: 'newsletterBanner'
|
|
}); |