Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
29 lines
497 B
Text
29 lines
497 B
Text
// API
|
|
module.exports = abort;
|
|
|
|
/**
|
|
* Aborts leftover active jobs
|
|
*
|
|
* @param {object} state - current state object
|
|
*/
|
|
function abort(state)
|
|
{
|
|
Object.keys(state.jobs).forEach(clean.bind(state));
|
|
|
|
// reset leftover jobs
|
|
state.jobs = {};
|
|
}
|
|
|
|
/**
|
|
* Cleans up leftover job by invoking abort function for the provided job id
|
|
*
|
|
* @this state
|
|
* @param {string|number} key - job id to abort
|
|
*/
|
|
function clean(key)
|
|
{
|
|
if (typeof this.jobs[key] == 'function')
|
|
{
|
|
this.jobs[key]();
|
|
}
|
|
}
|