discourse-adplugin/assets/javascripts/discourse/components/carbonads-ad.js.es6

37 lines
1022 B
Plaintext
Raw Normal View History

import AdComponent from "discourse/plugins/discourse-adplugin/discourse/components/ad-component";
import discourseComputed from "discourse-common/utils/decorators";
2019-04-06 21:14:27 -04:00
2019-06-14 12:10:11 -04:00
const serve_id = Discourse.SiteSettings.carbonads_serve_id,
2019-04-06 21:14:27 -04:00
placement = Discourse.SiteSettings.carbonads_placement;
export default AdComponent.extend({
init() {
2019-04-06 21:14:27 -04:00
this.set("serve_id", serve_id);
this._super();
},
@discourseComputed("serve_id")
2019-06-14 12:10:11 -04:00
url(serveId) {
return `//cdn.carbonads.com/carbon.js?serve=${serveId}&placement=${placement}`.htmlSafe();
2019-04-12 08:10:55 -04:00
},
@discourseComputed("currentUser.trust_level")
showToTrustLevel(trustLevel) {
2019-04-06 21:14:27 -04:00
return !(
trustLevel &&
trustLevel > Discourse.SiteSettings.carbonads_through_trust_level
2019-04-06 21:14:27 -04:00
);
2019-04-12 08:10:55 -04:00
},
2019-04-06 21:14:27 -04:00
@discourseComputed("showToTrustLevel", "showToGroups", "showOnCurrentPage")
showAd(showToTrustLevel, showToGroups, showOnCurrentPage) {
return (
placement &&
serve_id &&
showToTrustLevel &&
showToGroups &&
showOnCurrentPage
);
2020-09-04 07:24:14 -04:00
},
2019-04-06 21:14:27 -04:00
});