當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript notifications.createTemplateFailed函數代碼示例

本文整理匯總了TypeScript中src/shared/copy/notifications.createTemplateFailed函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript createTemplateFailed函數的具體用法?TypeScript createTemplateFailed怎麽用?TypeScript createTemplateFailed使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了createTemplateFailed函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: async

export const convertToTemplate = (dashboardID: string) => async (
  dispatch,
  getState: GetState
): Promise<void> => {
  try {
    dispatch(setExportTemplate(RemoteDataState.Loading))
    const {
      orgs: {org},
    } = getState()
    const dashboard = await getDashboardAJAX(dashboardID)
    const pendingViews = dashboard.cells.map(c =>
      getViewAJAX(dashboardID, c.id)
    )
    const views = await Promise.all(pendingViews)
    const allVariables = await client.variables.getAll(org.id)
    const variables = filterUnusedVars(allVariables, views)
    const exportedVariables = exportVariables(variables, allVariables)
    const dashboardTemplate = dashboardToTemplate(
      dashboard,
      views,
      exportedVariables
    )

    dispatch(setExportTemplate(RemoteDataState.Done, dashboardTemplate))
  } catch (error) {
    dispatch(setExportTemplate(RemoteDataState.Error))
    dispatch(notify(copy.createTemplateFailed(error)))
  }
}
開發者ID:sebito91,項目名稱:influxdb,代碼行數:29,代碼來源:index.ts

示例2: async

export const convertToTemplate = (taskID: string) => async (
  dispatch
): Promise<void> => {
  try {
    dispatch(setExportTemplate(RemoteDataState.Loading))
    const task = await client.tasks.get(taskID)
    const taskTemplate = taskToTemplate(task)

    dispatch(setExportTemplate(RemoteDataState.Done, taskTemplate))
  } catch (error) {
    dispatch(setExportTemplate(RemoteDataState.Error))
    dispatch(notify(copy.createTemplateFailed(error)))
  }
}
開發者ID:sebito91,項目名稱:influxdb,代碼行數:14,代碼來源:index.ts

示例3: async

export const convertToTemplate = (id: string) => async (
  dispatch
): Promise<void> => {
  try {
    dispatch(setExportTemplate(RemoteDataState.Loading))

    const templateDocument = await client.templates.get(id)
    const template = templateToExport(templateDocument)

    dispatch(setExportTemplate(RemoteDataState.Done, template))
  } catch (error) {
    dispatch(setExportTemplate(RemoteDataState.Error))
    dispatch(notify(copy.createTemplateFailed(error)))
  }
}
開發者ID:influxdata,項目名稱:influxdb,代碼行數:15,代碼來源:index.ts

示例4: async

export const convertToTemplate = (variableID: string) => async (
  dispatch,
  getState: GetState
): Promise<void> => {
  try {
    dispatch(setExportTemplate(RemoteDataState.Loading))
    const {
      orgs: {org},
    } = getState()
    const variable = await client.variables.get(variableID)
    const allVariables = await client.variables.getAll(org.id)

    const dependencies = findDepedentVariables(variable, allVariables)
    const variableTemplate = variableToTemplate(variable, dependencies)

    dispatch(setExportTemplate(RemoteDataState.Done, variableTemplate))
  } catch (error) {
    dispatch(setExportTemplate(RemoteDataState.Error))
    dispatch(notify(copy.createTemplateFailed(error)))
  }
}
開發者ID:sebito91,項目名稱:influxdb,代碼行數:21,代碼來源:index.ts


注:本文中的src/shared/copy/notifications.createTemplateFailed函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。