当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript ITimeoutService.default方法代码示例

本文整理汇总了TypeScript中angular.ITimeoutService.default方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ITimeoutService.default方法的具体用法?TypeScript ITimeoutService.default怎么用?TypeScript ITimeoutService.default使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在angular.ITimeoutService的用法示例。


在下文中一共展示了ITimeoutService.default方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: function

      let displayTooltip = function (newValue, showDelayed?) {
        if (showTooltipPromise) {
          $timeout.cancel(showTooltipPromise)
        }

        let taskTooltips = $scope.task.model.tooltips
        let rowTooltips = $scope.task.row.model.tooltips

        if (typeof(taskTooltips) === 'boolean') {
          taskTooltips = {enabled: taskTooltips}
        }

        if (typeof(rowTooltips) === 'boolean') {
          rowTooltips = {enabled: rowTooltips}
        }

        let enabled = ganttUtils.firstProperty([taskTooltips, rowTooltips], 'enabled', $scope.pluginScope.enabled)
        if (enabled && !visible && mouseEnterX !== undefined && newValue) {
          let content = ganttUtils.firstProperty([taskTooltips, rowTooltips], 'content', $scope.pluginScope.content)
          $scope.content = content

          if (showDelayed) {
            showTooltipPromise = $timeout(function () {
              showTooltip(mouseEnterX)
            }, $scope.pluginScope.delay, false)
          } else {
            showTooltip(mouseEnterX)
          }
        } else if (!newValue) {
          if (!$scope.task.active) {
            hideTooltip()
          }
        }
      }
开发者ID:angular-gantt,项目名称:angular-gantt,代码行数:34,代码来源:tooltip.directive.ts

示例2: function

          onOpen: function ($event) {
            if (scope.config.disabled) {
              $event.prevent();
              return;
            }

            if (hasBeenOpened === false) {
              hasBeenOpened = true;
            }
            filterOptions();

            $document.on('keyup', onEscPressed);

            domDropDownMenu.style.visibility = 'hidden';
            $timeout(function () {
              adjustHeight();
              domDropDownMenu.style.visibility = 'visible';

              if (scope.config.filter.active) {
                // use timeout to open dropdown first and then set the focus,
                // otherwise focus won't be set because iElement is not visible
                $timeout(function () {
                  iElement[0].querySelector('.dropdown-menu input').focus();
                });
              }
            });
            jqWindow.on('resize', adjustHeight);

            if (angular.isFunction(scope.config.dropdown.onOpen)) {
              (scope.config.dropdown.onOpen as any)();
            }
          },
开发者ID:w11k,项目名称:w11k-select,代码行数:32,代码来源:w11k-select.directive.ts

示例3: ganttDebounce

    $element.bind('scroll', ganttDebounce(function () {
      let el = $element[0]
      let currentScrollLeft = el.scrollLeft
      let direction
      let date

      $scope.gantt.scroll.cachedScrollLeft = currentScrollLeft
      $scope.gantt.columnsManager.updateVisibleColumns()
      $scope.gantt.rowsManager.updateVisibleObjects()

      if (currentScrollLeft < lastScrollLeft && currentScrollLeft === 0) {
        direction = 'left'
        date = $scope.gantt.columnsManager.from
      } else if (currentScrollLeft > lastScrollLeft && el.offsetWidth + currentScrollLeft >= el.scrollWidth - 1) {
        direction = 'right'
        date = $scope.gantt.columnsManager.to
      }

      lastScrollLeft = currentScrollLeft

      if (date !== undefined) {
        if (autoExpandTimer) {
          $timeout.cancel(autoExpandTimer)
        }

        autoExpandTimer = $timeout(function () {
          autoExpandColumns(el, date, direction)
        }, 300)
      } else {
        $scope.gantt.api.scroll.raise.scroll(currentScrollLeft)
      }
    }, 5))
开发者ID:angular-gantt,项目名称:angular-gantt,代码行数:32,代码来源:scrollable.directive.ts

示例4:

 const handler = (event) => {
   if (!element[0].contains(event.target)) {
     // This fixes an event ordering bug in Safari that can cause closed dialogs to reopen
     $timeout(() => {
       scope.$apply(attr.dimClickAnywhereButHere);
     }, 150);
   }
 };
开发者ID:bhollis,项目名称:DIM,代码行数:8,代码来源:click-anywhere-but-here.directive.ts

示例5: clickHandler

    link: function link(scope) {
      function clickHandler() {
        dimActivityTrackerService.track();
      }

      function visibilityHandler() {
        if ($document[0].hidden === false) {
          dimActivityTrackerService.track();
          refreshAccountData();
        }
      }

      $document.on('click', clickHandler);
      $document.on('visibilitychange', visibilityHandler);
      $document.on('online', refreshAccountData);

      const ONE_MINUTE = 60 * 1000;
      const FIVE_MINUTES = 5 * 60 * 1000;
      const ONE_HOUR = 60 * 60 * 1000;

      const refresh = _.throttle(() => {
        // Individual pages should listen to this event and decide what to refresh,
        // and their services should decide how to cache/dedup refreshes.
        // This event should *NOT* be listened to by services!
        // TODO: replace this with an observable?
        $rootScope.$broadcast('dim-refresh');
      }, ONE_MINUTE, { trailing: false });

      const activeWithinLastHour = dimActivityTrackerService.activeWithinTimespan
        .bind(dimActivityTrackerService, ONE_HOUR);

      function refreshAccountData() {
        const dimHasNoActivePromises = !loadingTracker.active();
        const userWasActiveInTheLastHour = activeWithinLastHour();
        const isDimVisible = !$document.hidden;
        const isOnline = navigator.onLine;

        if (dimHasNoActivePromises && userWasActiveInTheLastHour && isDimVisible && isOnline) {
          refresh();
        }
      }

      let refreshAccountDataInterval = $timeout(refreshAccountData, FIVE_MINUTES);

      scope.$on('$destroy', () => {
        $document.off('click', clickHandler);
        $document.off('visibilitychange', visibilityHandler);
        $document.off('online', refreshAccountData);
        $timeout.cancel(refreshAccountDataInterval);
      });

      // Every time we refresh for any reason, reset the timer
      scope.$on('dim-refresh', () => {
        $timeout.cancel(refreshAccountDataInterval);
        refreshAccountDataInterval = $timeout(refreshAccountData, FIVE_MINUTES);
      });
    }
开发者ID:delphiactual,项目名称:DIM,代码行数:57,代码来源:activity-tracker.directive.ts

示例6: showInfoPopup

 const updateMessage = _.once(() => {
   $timeout(() => {
     showInfoPopup('update-available', {
       title: $i18next.t('Help.UpdateAvailable'),
       body: $i18next.t('Help.UpdateAvailableMessage'),
       type: 'warn',
       hideable: false
     }, 0);
   });
 });
开发者ID:delphiactual,项目名称:DIM,代码行数:10,代码来源:app.component.ts

示例7: adjustHeight

            $timeout(function () {
              adjustHeight();
              domDropDownMenu.style.visibility = 'visible';

              if (scope.config.filter.active) {
                // use timeout to open dropdown first and then set the focus,
                // otherwise focus won't be set because iElement is not visible
                $timeout(function () {
                  iElement[0].querySelector('.dropdown-menu input').focus();
                });
              }
            });
开发者ID:w11k,项目名称:w11k-select,代码行数:12,代码来源:w11k-select.directive.ts

示例8: function

 return function () {
   let self = this
   let argz = arguments
   nthCall++
   let later = (function (version) {
     return function () {
       if (version === nthCall) {
         return fn.apply(self, argz)
       }
     }
   })(nthCall)
   return $timeout(later, timeout, invokeApply === undefined ? true : invokeApply)
 }
开发者ID:angular-gantt,项目名称:angular-gantt,代码行数:13,代码来源:debounce.factory.ts

示例9: download

 // Function to download data to a file
 function download(data, filename, type) {
   const a = document.createElement("a");
   const file = new Blob([data], { type });
   const url = URL.createObjectURL(file);
   a.href = url;
   a.download = filename;
   document.body.appendChild(a);
   a.click();
   $timeout(() => {
     document.body.removeChild(a);
     window.URL.revokeObjectURL(url);
   });
 }
开发者ID:delphiactual,项目名称:DIM,代码行数:14,代码来源:storage.component.ts


注:本文中的angular.ITimeoutService.default方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。