| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708 |
- let currentGuide = '';
- let currentTask = '';
- let currentStep = null;
- let popover = null;
- let inited = false;
- function showLog(name, step, moreTitles, moreInfos)
- {
- if(!config.debug) return;
- const titles = ['%c TUTORIAL '];
- const titleColors = ['color:#fff;font-weight:bold;background:#9c27b0'];
- if(step)
- {
- if(step.guide)
- {
- titles.push(`%c ${step.guide.title || step.guide.name} `);
- titleColors.push('background:rgba(156, 39, 176, 0.2);color:#9c27b0;');
- }
- if(step.task)
- {
- titles.push(`%c> ${step.task.title || step.task.name} `);
- titleColors.push('background:rgba(156, 39, 176, 0.2);color:#9c27b0;');
- }
- titles.push(`%c> ${step.index + 1}: ${step.title || step.name} `);
- titleColors.push('background:rgba(156, 39, 176, 0.2);color:#9c27b0;');
- }
- if(name)
- {
- titles.push(`%c ${name} `);
- titleColors.push('color:#9c27b0;font-weight:bold;');
- }
- if(!Array.isArray(moreTitles) && moreTitles) moreTitles = [moreTitles];
- if(Array.isArray(moreTitles) && typeof moreTitles[0] === 'string' && (moreTitles[0].startsWith('success:') || moreTitles[0].startsWith('error:')))
- {
- const message = moreTitles.shift();
- const [type, content] = message.split(':', 2);
- titles.push(`%c ${content} `);
- titleColors.push(`color:${type === 'error' ? '#f56c6c' : '#67c23a'};`);
- }
- console.groupCollapsed(titles.join(''), ...titleColors, ...(moreTitles || []));
- if(step) console.trace('step', step);
- if(moreInfos)
- {
- if($.isPlainObject(moreInfos)) Object.keys(moreInfos).forEach((infoName) => console.log(infoName, moreInfos[infoName]));
- else console.log(moreInfos);
- }
- console.groupEnd();
- }
- if(config.debug) showLog('Guides data', null, null, {guides});
- const stepPresenters =
- {
- openApp: function(step)
- {
- const scope = getStepScope(step);
- const $menuNav = scope.$('#menuNav');
- if(!$menuNav.data('tutorial.checkOpenAppStep'))
- {
- const checkOpenAppStep = (event, info) =>
- {
- if(!currentStep || currentStep.type !== 'openApp') return;
- if((event.type === 'shown' || event.type === 'hidden') && info[0].options.target !== '#menuMoreList') return;
- stepPresenters.openApp(currentStep);
- };
- scope.$(scope).on('resize', checkOpenAppStep);
- scope.$('#menuMoreBtn').on('shown hidden', checkOpenAppStep);
- $menuNav.append([
- '<style>',
- '.tutorial-not-open-app #menuNav .nav > li > a {pointer-events:none!important;}',
- '.tutorial-not-open-app #menuNav .nav > li > a.active, .tutorial-not-open-app #menuNav .nav > li > a#menuMoreBtn {pointer-events:auto!important;}',
- '</style>'
- ].join('\n'));
- $menuNav.data('tutorial.checkOpenAppStep', true);
- }
- const $menuMainNav = $menuNav.find('#menuMainNav');
- const $appNav = $menuMainNav.children(`li[data-app="${step.app}"]`);
- let $targetNav = $appNav;
- if($appNav.hasClass('hidden'))
- {
- const $menuMoreList = $menuNav.find('#menuMoreList.in');
- if($menuMoreList.length) $targetNav = $menuMoreList.children(`li[data-app="${step.app}"]`);
- else $targetNav = $menuNav.find('#menuMoreBtn');
- }
- const popoverOptions = {placement: 'right'};
- if($targetNav.is('#menuMoreBtn'))
- {
- $.extend(popoverOptions, {title: null, footer: undefined, content: lang.clickAndOpenIt.replace('%s', $targetNav.text().trim()).replace('%s', $appNav.text().trim()), notFinalTarget: true});
- }
- else
- {
- $targetNav = $targetNav.find('a');
- }
- if (!step.closedApp)
- {
- scope.$.apps.closeApp(step.app);
- step.closedApp = true;
- }
- return highlightStepTarget($targetNav, step, popoverOptions);
- },
- click: function(step)
- {
- return highlightStepTarget((scope) => scope.$(step.target), step, {placement: 'bottom'});
- },
- clickNavbar: function(step)
- {
- return highlightStepTarget((scope) => scope.$('.#'.includes(step.target) ? step.target : `#navbar>.nav>.item>a[data-id="${step.target}"]`), step);
- },
- clickMainNavbar: function(step)
- {
- return highlightStepTarget((scope) => scope.$('.#'.includes(step.target) ? step.target : `#mainNavbar .nav>.item>a[data-id="${step.target}"]`), step);
- },
- form: function(step)
- {
- return highlightStepTarget((scope) => {
- const $target = scope.$(step.target || 'form');
- /* Check form. */
- const $form = getStepForm(scope, $target);
- if(!$form || !$form.length) console.error(`[TUTORIAL] Cannot find form for step "${step.guide.name} > ${step.task.name} > ${step.title}"`, step);
- $form.attr('zui-tutorial-step', step.id);
- $form.find('.open-url,[data-back],[data-load],.ajax-submit').addClass('pointer-events-none');
- step.$form = $form;
- const $panel = $target.closest('.panel');
- return $panel.length ? $panel : $target;
- }, step, (!step.popover || !step.popover.placement) ? {placement: 'right'} : null);
- },
- saveForm: function(step)
- {
- return highlightStepTarget((scope) => {
- const $target = scope.$(step.target);
- /* Check form. */
- const $form = getStepForm(scope, $target);
- if(!$form || !$form.length) console.error(`[TUTORIAL] Cannot find form for step "${step.guide.name} > ${step.task.name} > ${step.title}"`, step);
- $form.attr('zui-tutorial-step', step.id);
- step.$form = $form;
- const $saveBtn = $form.find('[type="submit"]');
- return $saveBtn.length ? $saveBtn : $target;
- }, step);
- },
- selectRow: function(step)
- {
- return highlightStepTarget((scope) => {
- const $target = scope.$(step.target || '.dtable');
- let $table = $target.closest('[z-use-dtable]');
- if(!$table.length) $table = $target.find('[z-use-dtable]');
- if(!$table.length) $table = scope.$('[z-use-dtable]');
- if(!$table.length) console.error(`[TUTORIAL] Cannot find table for step "${step.guide.name} > ${step.task.name} > ${step.title}"`, step);
- step.$table = $table;
- if(!$table.data('tutorial.selectRowBinding'))
- {
- $table.data('tutorial.selectRowBinding', true);
- const dtable = $table.zui('dtable');
- dtable.setOptions({onCheckChange: function()
- {
- if(!this.getChecks().length) return;
- activeNextStep(step);
- }});
- }
- return $target;
- }, step);
- }
- };
- function toggleIframeMask(toggle)
- {
- $('body').toggleClass('tutorial-has-mask', toggle);
- }
- function getStepForm(scope, $target)
- {
- let $form = $target.closest('form');
- if(!$form.length) $form = $target.find('form');
- if(!$form.length) $form = scope.$('form');
- if(!$form.data('tutorial.formBinding'))
- {
- $form.data('tutorial.formBinding', true);
- const ajaxForm = $form.zui('ajaxForm');
- if(!ajaxForm) return console.error(`[TUTORIAL] Cannot find ajaxForm for step "${currentStep.guide.name} > ${currentStep.task.name} > ${currentStep.title}"`, currentStep);
- ajaxForm.setOptions({beforeSubmit: () =>
- {
- if(currentStep.type === 'form')
- {
- const nextStep = currentStep.task.steps[currentStep.index + 1];
- activeNextStep((nextStep && nextStep.type === 'saveForm') ? nextStep : currentStep);
- }
- return false;
- }});
- }
- return $form;
- }
- function destroyPopover(callback, scope)
- {
- if(config.debug) showLog('Destroy popover', currentStep, popover ? `${popover.gid}/${popover.options.key}` : 'no popover', {popover, callback, scope});
- if(!popover)
- {
- if(scope && scope.$)
- {
- scope.$('.tutorial-hl').removeClass('tutorial-hl');
- scope.$('.tutorial-light-box').addClass('opacity-0');
- }
- if(callback) callback();
- return;
- };
- const $trigger = $(popover.trigger);
- if($trigger.length)
- {
- $trigger.removeClass('tutorial-hl');
- $trigger.closest('body').find('.tutorial-light-box').addClass('opacity-0');
- }
- if(callback) setTimeout(callback, popover.shown ? 300 : 200);
- popover.hide(true);
- popover = null;
- }
- function highlightStepTarget($target, step, popoverOptions)
- {
- if(config.debug) showLog('Highlight', step, popover ? `${popover.gid}/${popover.options.key}` : 'no popover', {$target, popover, popoverOptions});
- if(popover)
- {
- if(popover.options.key === step.id)
- {
- const target = (typeof $target === 'function' ? $target(getStepScope(step)) : $target)[0];
- if(target === popover.trigger) return;
- }
- return destroyPopover(() => highlightStepTarget($target, step, popoverOptions));
- }
- ensureStepScope(step, (scope) =>
- {
- if(step !== currentStep) return;
- const $originTarget = $target;
- if(typeof $target === 'function') $target = $target(scope);
- $target = $target.first();
- if(!$target.length)
- {
- if(!step.waitedTarget || step.waitedTarget < 10)
- {
- step.waitedTarget = (step.waitedTarget || 0) + 1;
- return setTimeout(() => highlightStepTarget($originTarget, step, popoverOptions), 500);
- }
- return console.error(`[TUTORIAL] Cannot find target for step "${step.guide.title || step.guide.name} > ${step.task.title || step.task.name} > ${step.title}"`, step);
- }
- if($target.is('[data-toggle="dropdown"]'))
- {
- if($target.is('[data-trigger="hover"]')) $target.attr('data-trigger', 'click');
- const dropdown = $target.zui('dropdown');
- if(dropdown && dropdown.options.trigger === 'hover') dropdown.destroy();
- }
- const isLastStep = step.index === step.task.steps.length - 1;
- popoverOptions = $.extend(
- {
- $optionsFromDataset: false,
- key : step.id,
- title : step.title,
- strategy : 'fixed',
- show : true,
- limitInScreen : true,
- mask : false,
- trigger : 'manual',
- destroyOnHide : true,
- closeBtn : false,
- content : step.desc,
- contentClass : 'popover-content px-4 whitespace-pre-line',
- className : 'tutorial-popover rounded-md',
- titleClass : 'popover-title text-lg pl-1',
- minWidth : 280,
- maxWidth : 400,
- headingClass : 'popover-heading bg-transparent',
- elementShowClass: 'with-popover-show tutorial-hl',
- destroyOnHide : true,
- shift : true,
- hideOthers : false,
- hideNewOnHide : false,
- offset : 32,
- footer:
- {
- component: 'toolbar',
- props:
- {
- className: 'py-3 px-4 gap-3',
- items:
- [
- {component: 'span', children: `${step.index + 1}/${step.task.steps.length}`, className: 'flex-auto'},
- isLastStep ? null : {type: 'default', text: lang.exitStep, onClick: () => unactiveTask()},
- {type: 'primary', text: isLastStep ? lang.finish : lang.nextStep, onClick: () => goToNextStep(step)},
- ].filter(Boolean)
- }
- },
- onHide: function()
- {
- if(this.options.key !== step.id) return;
- $(this.trigger).closest('body').find('.tutorial-light-box').addClass('opacity-0');
- },
- onLayout: function(info)
- {
- const $trigger = $(info.trigger);
- const $body = $trigger.closest('body');
- const rect = info.trigger.getBoundingClientRect();
- let $lightElement = $body.find('.tutorial-light-box');
- if(!$lightElement.length) $lightElement = $('<div class="tutorial-light-box fixed pointer-events-none rounded" style="box-shadow: 0 0 10px rgba(0, 0, 0, 0.4), 0 0 0 9999px rgba(0, 0, 0, 0.4); z-index: 1690; transition: opacity .5s;"><div class="is-left pointer-events-auto absolute top-0 bottom-0"></div><div class="is-top pointer-events-auto absolute"></div><div class="is-right pointer-events-auto absolute top-0 bottom-0 left-full"></div><div class="is-bottom pointer-events-auto absolute top-full"></div><style>.tutorial-light-box.opacity-0>div{pointer-events:none!important}</style></div>').appendTo($body);
- $lightElement.removeClass('opacity-0').css(
- {
- top : rect.top,
- left : rect.left,
- width : rect.width,
- height : rect.height,
- borderRadius: $trigger.css('borderRadius'),
- zIndex : this._zIndex - 1
- }).appendTo($body);
- $lightElement.find('.is-left').css({left: -rect.left, width: Math.round(rect.left)});
- $lightElement.find('.is-right').css({width: Math.round(window.innerWidth - rect.right)});
- $lightElement.find('.is-top').css({top: -rect.top, height: Math.round(rect.top), left: -rect.left, right: rect.right - window.innerWidth});
- $lightElement.find('.is-bottom').css({height: Math.round(window.innerHeight - rect.bottom), left: -rect.left, right: rect.right - window.innerWidth});
- }
- }, step.popover, popoverOptions);
- if(popoverOptions.title === null)
- {
- const text = $target.text().trim();
- if(['openApp'].includes(step.type)) popoverOptions.title = lang.clickTipFormat.replace('%s', text);
- }
- step.$target = $target;
- popover = new scope.zui.Popover($target, popoverOptions);
- if(!popoverOptions.notFinalTarget) $target.attr('zui-tutorial-step', step.id);
- $target.scrollIntoView();
- if(config.debug) showLog('Show popover', step, `${popover.gid}/${popover.options.key}`, {$target, popover, popoverOptions});
- const $doc = scope.$(scope.document);
- if($doc.data('tutorial.checkBinding')) return;
- $doc.data('tutorial.checkBinding', true).on('click', '[zui-tutorial-step]', function(event, info)
- {
- if(!currentStep || currentStep.checkType !== event.type) return;
- const stepID = this.getAttribute('zui-tutorial-step');
- if(stepID !== currentStep.id) return;
- if(config.debug) showLog(`Step target ${event.type}`, currentStep, null, {stepID, event});
- activeNextStep();
- });
- $doc.on('pageload.app', function()
- {
- presentStep();
- });
- if(scope.zui.Ajax.globalBeforeSends)
- {
- scope.zui.Ajax.globalBeforeSends.push(function(options)
- {
- options.headers['X-ZIN-Tutorial'] = getCurrentStepID();
- });
- }
- });
- }
- function updateTaskUI(task, change)
- {
- if(change) $.extend(task, change);
- const guideName = task.guide.name;
- const taskName = task.name;
- const $guide = $('#tutorialTabs').find(`.tutorial-guide[data-name="${guideName}"]`);
- if(!$guide.length) return;
- const $task = $guide.find(`.tutorial-task[data-name="${taskName}"]`);
- if(!$task.length) return;
- $task.attr('data-status', task.status).toggleClass('active', !!task.active);
- const $steps = $task.find('.tutorial-step').removeClass('active');
- if(task.currentStepIndex !== undefined) $steps.filter(`[data-step="${task.currentStepIndex}"]`).addClass('active');
- if(task.active)
- {
- const $tabToggle = $(`#tutorialTabs .tabs-nav>.nav-item[data-key="${task.guide.type}"]>a`);
- if($tabToggle.length && !$tabToggle.hasClass('active')) setTimeout(() => $tabToggle[0].click(), 200);
- $task.scrollIntoView();
- }
- const url = $.createLink('tutorial', 'index', `referer=&guide=${guideName}&task=${taskName}`);
- const prevState = window.history.state;
- if(prevState.url !== url) window.history.replaceState({url}, '', url);
- return true;
- }
- function getNextTask(task)
- {
- const guideTaskNames = Object.keys(task.guide.tasks);
- if(guideTaskNames.length === task.index + 1) return;
- for(let i = 0; i < guideTaskNames.length; ++i)
- {
- const name = guideTaskNames[i];
- const thisTask = task.guide.tasks[name];
- if(thisTask.index === task.index + 1) return thisTask;
- }
- }
- function getNextGuide(guide)
- {
- const guideNames = Object.keys(guides);
- if(guideNames.length === guide.index + 1) return;
- for(let i = 0; i < guideNames.length; ++i)
- {
- const name = guideNames[i];
- const thisGuide = guides[name];
- if(thisGuide.index === guide.index + 1) return thisGuide;
- }
- }
- function activeNextStep(step)
- {
- step = step || currentStep;
- if(!step) return;
- formatStep(step);
- if(config.debug) showLog('Active next step', step);
- if(step.type === 'saveForm' && step.$form) step.$form.find('.open-url,[data-back],[data-load],.ajax-submit').addClass('pointer-events-none');
- if(step.endUrl) openApp(step.endUrl, step.app);
- destroyPopover(() =>
- {
- if(step.task.steps.length - 1 === step.index)
- {
- updateTaskUI(step.task, {status: 'done', active: false});
- const nextTask = getNextTask(step.task);
- const nextGuide = nextTask ? null : getNextGuide(step.guide);
- const nextGuideTask = (nextGuide && nextGuide.taskList.length) ? nextGuide.tasks[nextGuide.taskList[0]] : null;
- const actions = [];
- if(nextTask) actions.push({type: 'confirm', btnType: 'primary', text: `${lang.nextTask}${lang.colon}${nextTask.title}`, onClick: () => activeTask(step.guide.name, nextTask.name)}, {key: 'cancel', onClick: () => unactiveTask()});
- else if(nextGuideTask) actions.push({type: 'confirm', btnType: 'primary', text: `${lang.nextGuide}${lang.colon}${nextGuide.title}`, onClick: () => activeTask(nextGuide.name, nextGuideTask.name)}, {key: 'cancel', onClick: () => unactiveTask()});
- else actions.push({type: 'confirm', btnType: 'primary', text: lang.finish, onClick: () => unactiveTask()});
- zui.Modal.alert(
- {
- content: lang.congratulateTask.replace('<span class="task-name-current"></span>', step.task.title),
- actions: actions
- });
- return;
- }
- activeTaskStep(step.guide.name, step.task.name, step.index + 1);
- });
- }
- function goToNextStep(step)
- {
- step = step || currentStep;
- if(!step) return;
- if(step.checkType === 'click')
- {
- const $target = getStepScope(step).$(`[zui-tutorial-step="${step.id}"]`);
- if($target.length) return $target.trigger('click', 'skipCheckStep');
- }
- else if(step.type === 'saveForm' && step.$form)
- {
- step.$form[0].submit();
- } else if(step.type === 'openApp')
- {
- step.closedApp = false;
- }
- setTimeout(() => activeNextStep(step), 200);
- }
- function toggleActiveTarget(type, name, toggle)
- {
- if(!name) return false;
- const $target = $('#tutorialTabs').find(`.tutorial-${type}[data-name="${name}"]`);
- if(!$target.length) return;
- $target.toggleClass('active', toggle);
- $target.closest(`.tutorial-${type}-list`).toggleClass(`has-active-${type}`, toggle);
- return true;
- }
- function unactiveTask()
- {
- if(currentStep) destroyPopover(null, getStepScope(currentStep));
- toggleActiveTarget('task', currentTask, false);
- currentTask = '';
- currentStep = null;
- toggleIframeMask(true);
- }
- function getHomeScope()
- {
- return $('#iframePage')[0].contentWindow;
- }
- function getStepScope(step)
- {
- if(step.scope && step.scope.name) return step.scope;
- step.scope = null;
- const homeScope = getHomeScope();
- if(step.type === 'openApp')
- {
- step.scope = homeScope;
- }
- else if(homeScope.$ && homeScope.$.apps)
- {
- const openedApp = step.app ? homeScope.$.apps.openedApps[step.app] : homeScope.$.apps.getLastApp();
- if(openedApp) step.scope = openedApp.iframe.contentWindow;
- }
- return step.scope;
- }
- function ensureStepScope(step, callback)
- {
- const scope = getStepScope(step);
- const waitStepScope = (reason) =>
- {
- if(config.debug) showLog(`Wait step scope: ${reason}`, step, null, {scope});
- if(step.waitScopeTimer) clearTimeout(step.waitScopeTimer);
- step.waitScopeTimer = setTimeout(() =>
- {
- delete step.waitScopeTimer;
- ensureStepScope(step, callback);
- }, 500);
- };
- if(!scope || !scope.$) return waitStepScope('no scope');
- if(scope.name !== 'iframePage')
- {
- const $body = scope.$('body');
- if($body.hasClass('loading-page')) return waitStepScope('page is loading');
- const scopePage = ($body.attr('data-page') || '').toLowerCase();
- if(!scopePage) return waitStepScope('page is not ready');
- const scopePageRaw = ($body.attr('data-page-raw') || '').toLowerCase();
- const stepPage = (step.page || '').toLowerCase();
- if(stepPage && stepPage !== scopePage && stepPage !== scopePageRaw)
- {
- destroyPopover(null, scope);
- if(config.debug) showLog(`Page scope not match: ${stepPage}, current page is ${scopePage}`, step, null, {scope});
- return;
- }
- }
- if(step.waitScopeTimer) clearTimeout(step.waitScopeTimer);
- step.waitScopeTimer = setTimeout(() =>
- {
- delete step.waitScopeTimer;
- callback(scope);
- }, 200);
- }
- function openApp(url, app)
- {
- if(url.includes('#app='))
- {
- const [urlPart, appPart] = url.split('#app=', 2);
- url = urlPart;
- app = appPart;
- }
- const homeScope = getHomeScope();
- if(!homeScope.$ || !homeScope.$.apps)
- {
- setTimeout(() => openApp(url, app), 200);
- return;
- }
- if(Array.isArray(url)) url = $.createLink.apply(null, url);
- const openedApp = homeScope.$.apps.open(url, app, {forceReload: true});
- if(openedApp && openedApp.iframe.contentWindow.$)
- {
- openedApp.iframe.contentWindow.$('body').addClass('loading-page');
- }
- }
- function formatStep(step, guideName, taskName, stepIndex)
- {
- if(step.id) return step;
- guideName = guideName || step.guideName;
- taskName = taskName || step.taskName;
- stepIndex = typeof stepIndex !== 'number' ? step.index : stepIndex;
- const guide = guides[guideName];
- const task = guide.tasks[taskName];
- step.id = `${guideName}-${taskName}-${stepIndex}`;
- step.guide = guide;
- step.task = task;
- step.index = stepIndex;
- step.isLast = stepIndex === task.steps.length - 1;
- step.checkType = step.type === 'form' ? 'change' : 'click';
- if(step.type === 'openApp' && !task.app) task.app = step.app;
- if(!step.app && stepIndex) step.app = task.steps[stepIndex - 1].app;
- if(!step.app) step.app = task.app || guide.app;
- if(!step.app)
- {
- const taskNames = Object.keys(guide.tasks);
- for(let i = 0; i < taskNames.length; i++)
- {
- const thisTask = guide.tasks[taskNames[i]];
- if(thisTask.app && thisTask.index < task.index)
- {
- step.app = thisTask.app;
- break;
- }
- }
- }
- return step;
- }
- function presentStep(step)
- {
- step = step || currentStep;
- if(!step) return;
- const presenter = stepPresenters[step.type];
- if(config.debug) showLog('Present step', step, null, {presenter});
- step.waitedTarget = false;
- if(presenter) presenter(step);
- const homeScope = getHomeScope();
- homeScope.$('body').toggleClass('tutorial-not-open-app', step.type !== 'openApp');
- if(inited) return;
- homeScope.$('#appsBar').css('pointer-events', 'none');
- inited = true;
- }
- function activeTaskStep(guideName, taskName, stepIndex)
- {
- const guide = guides[guideName];
- const task = guide.tasks[taskName];
- const step = task.steps[stepIndex];
- if(currentStep === step) return;
- task.guide = guide;
- if(!updateTaskUI(task, {active: true, status: 'doing', currentStepIndex: stepIndex})) return;
- formatStep(step, guideName, taskName);
- if(step.url) openApp(step.url, step.app);
- else if(stepIndex === 0 && task.startUrl) openApp(step.task.startUrl, step.task.app);
- currentStep = step;
- if(config.debug) showLog('Active step', step);
- ensureStepScope(step, () => presentStep(step));
- }
- function activeTask(guideName, taskName, stepIndex)
- {
- if(stepIndex === undefined) stepIndex = 0;
- if(currentGuide !== guideName) activeGuide(guideName);
- if(currentTask && currentTask !== taskName) unactiveTask();
- if(currentTask !== taskName)
- {
- currentTask = taskName;
- toggleActiveTarget('task', currentTask, true);
- }
- toggleIframeMask(false);
- activeTaskStep(guideName, taskName, stepIndex);
- }
- function unactiveGuide()
- {
- if(!toggleActiveTarget('guide', currentGuide, false)) return;
- if(currentTask)
- {
- const guide = guides[currentGuide];
- if(guide && guide.tasks[currentTask]) unactiveTask();
- }
- currentGuide = '';
- }
- function activeGuide(guideName)
- {
- if(currentGuide && currentGuide !== guideName) unactiveGuide();
- if(currentGuide !== guideName)
- {
- currentGuide = guideName;
- toggleActiveTarget('guide', currentGuide, true);
- }
- }
- window.activeTask = activeTask;
- window.getCurrentStepID = function()
- {
- return currentStep ? currentStep.id : '';
- };
- window.handleClickGuide = function(event)
- {
- const guideName = $(event.target).closest('.tutorial-guide').data('name');
- if(guideName === currentGuide) unactiveGuide();
- else activeGuide(guideName);
- };
- window.handleClickTask = function(event)
- {
- const $task = $(event.target).closest('.tutorial-task');
- const taskName = $task.data('name');
- const guideName = $task.closest('.tutorial-guide').data('name');
- activeTask(guideName, taskName);
- };
- toggleIframeMask(true);
|