mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
72 lines
1.5 KiB
JavaScript
72 lines
1.5 KiB
JavaScript
var thumbnailProperty = {
|
|
fieldName: 'thumbnailUrl',
|
|
fieldSchema: {
|
|
type: String,
|
|
optional: true,
|
|
editableBy: ["member", "admin"],
|
|
autoform: {
|
|
type: 'bootstrap-postthumbnail'
|
|
}
|
|
}
|
|
};
|
|
Posts.registerField(thumbnailProperty);
|
|
|
|
var mediaProperty = {
|
|
fieldName: 'media',
|
|
fieldSchema: {
|
|
type: Object,
|
|
optional: true,
|
|
blackbox: true
|
|
}
|
|
};
|
|
Posts.registerField(mediaProperty);
|
|
|
|
Telescope.modules.register("postThumbnail", {
|
|
template: 'postThumbnail',
|
|
order: 15
|
|
});
|
|
|
|
var embedlyKeyProperty = {
|
|
fieldName: 'embedlyKey',
|
|
fieldSchema: {
|
|
type: String,
|
|
optional: true,
|
|
private: true,
|
|
autoform: {
|
|
group: 'embedly',
|
|
class: 'private-field'
|
|
}
|
|
}
|
|
};
|
|
Settings.registerField(embedlyKeyProperty);
|
|
|
|
var thumbnailWidthProperty = {
|
|
fieldName: 'thumbnailWidth',
|
|
fieldSchema: {
|
|
type: Number,
|
|
optional: true,
|
|
autoform: {
|
|
group: 'embedly'
|
|
}
|
|
}
|
|
};
|
|
Settings.registerField(thumbnailWidthProperty);
|
|
|
|
var thumbnailHeightProperty = {
|
|
fieldName: 'thumbnailHeight',
|
|
fieldSchema: {
|
|
type: Number,
|
|
optional: true,
|
|
autoform: {
|
|
group: 'embedly'
|
|
}
|
|
}
|
|
};
|
|
Settings.registerField(thumbnailHeightProperty);
|
|
|
|
function addThumbnailClass (post, postClass) {
|
|
var thumbnailClass = !!post.thumbnailUrl ? "has-thumbnail" : "no-thumbnail";
|
|
return postClass + " " + thumbnailClass;
|
|
}
|
|
// add callback that adds "has-thumbnail" or "no-thumbnail" CSS classes
|
|
Telescope.callbacks.register("postClass", addThumbnailClass);
|