fb2f3ff89f
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
24 lines
616 B
JavaScript
24 lines
616 B
JavaScript
import store from '../store';
|
|
class CampaignTimer {
|
|
constructor() {
|
|
this.campaignTimers = [];
|
|
}
|
|
|
|
initTimers = ({ campaigns }) => {
|
|
this.clearTimers();
|
|
campaigns.forEach(campaign => {
|
|
const { timeOnPage, id: campaignId } = campaign;
|
|
this.campaignTimers[campaignId] = setTimeout(() => {
|
|
store.dispatch('campaign/startCampaign', { campaignId });
|
|
}, timeOnPage * 1000);
|
|
});
|
|
};
|
|
|
|
clearTimers = () => {
|
|
this.campaignTimers.forEach(timerId => {
|
|
clearTimeout(timerId);
|
|
this.campaignTimers[timerId] = null;
|
|
});
|
|
};
|
|
}
|
|
export default new CampaignTimer();
|