Chatwoot/app/javascript/shared/mixins/campaignMixin.js

17 lines
404 B
JavaScript
Raw Normal View History

2021-07-15 08:01:43 +00:00
import { CAMPAIGN_TYPES } from '../constants/campaign';
2021-07-15 08:01:43 +00:00
export default {
computed: {
campaignType() {
const pageURL = window.location.href;
return pageURL.substring(pageURL.lastIndexOf('/') + 1);
2021-07-15 08:01:43 +00:00
},
isOngoingType() {
return this.campaignType === CAMPAIGN_TYPES.ONGOING;
},
isOnOffType() {
return this.campaignType === CAMPAIGN_TYPES.ONE_OFF;
},
},
};