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


TypeScript manage_dashboards.ManageDashboardsCtrl类代码示例

本文整理汇总了TypeScript中app/core/components/manage_dashboards/manage_dashboards.ManageDashboardsCtrl的典型用法代码示例。如果您正苦于以下问题:TypeScript ManageDashboardsCtrl类的具体用法?TypeScript ManageDashboardsCtrl怎么用?TypeScript ManageDashboardsCtrl使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: describe

describe('ManageDashboards', () => {
  let ctrl: ManageDashboardsCtrl;

  describe('when browsing dashboards', () => {
    beforeEach(() => {
      const tags: any[] = [];
      const response = [
        {
          id: 410,
          title: 'afolder',
          type: 'dash-folder',
          items: [
            {
              id: 399,
              title: 'Dashboard Test',
              url: 'dashboard/db/dashboard-test',
              icon: 'fa fa-folder',
              tags,
              isStarred: false,
            },
          ],
          tags,
          isStarred: false,
        },
        {
          id: 0,
          title: 'General',
          icon: 'fa fa-folder-open',
          uri: 'db/something-else',
          type: 'dash-db',
          items: [
            {
              id: 500,
              title: 'Dashboard Test',
              url: 'dashboard/db/dashboard-test',
              icon: 'fa fa-folder',
              tags,
              isStarred: false,
            },
          ],
          tags,
          isStarred: false,
        },
      ];
      ctrl = createCtrlWithStubs(response);
      return ctrl.refreshList();
    });

    it('should set checked to false on all sections and children', () => {
      expect(ctrl.sections.length).toEqual(2);
      expect(ctrl.sections[0].checked).toEqual(false);
      expect(ctrl.sections[0].items[0].checked).toEqual(false);
      expect(ctrl.sections[1].checked).toEqual(false);
      expect(ctrl.sections[1].items[0].checked).toEqual(false);
      expect(ctrl.sections[0].hideHeader).toBeFalsy();
    });
  });

  describe('when browsing dashboards for a folder', () => {
    beforeEach(() => {
      const tags: any[] = [];
      const response = [
        {
          id: 410,
          title: 'afolder',
          type: 'dash-folder',
          items: [
            {
              id: 399,
              title: 'Dashboard Test',
              url: 'dashboard/db/dashboard-test',
              icon: 'fa fa-folder',
              tags,
              isStarred: false,
            },
          ],
          tags,
          isStarred: false,
        },
      ];
      ctrl = createCtrlWithStubs(response);
      ctrl.folderId = 410;
      return ctrl.refreshList();
    });

    it('should set hide header to true on section', () => {
      expect(ctrl.sections[0].hideHeader).toBeTruthy();
    });
  });

  describe('when searching dashboards', () => {
    beforeEach(() => {
      const tags: any[] = [];
      const response = [
        {
          checked: false,
          expanded: true,
          hideHeader: true,
          items: [
            {
//.........这里部分代码省略.........
开发者ID:grafana,项目名称:grafana,代码行数:101,代码来源:manage_dashboards.test.ts

示例2: beforeEach

 beforeEach(() => {
   ctrl.query.query = 'd';
   ctrl.canMove = true;
   ctrl.canDelete = true;
   ctrl.selectAllChecked = true;
   return ctrl.refreshList();
 });
开发者ID:grafana,项目名称:grafana,代码行数:7,代码来源:manage_dashboards.test.ts

示例3: it

 it('should get selected dashboards', () => {
   const toBeMove = ctrl.getDashboardsToMove();
   expect(toBeMove.length).toEqual(2);
   expect(toBeMove[0]).toEqual('dash');
   expect(toBeMove[1]).toEqual('dash-2');
 });
开发者ID:grafana,项目名称:grafana,代码行数:6,代码来源:manage_dashboards.test.ts


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