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


TypeScript getTimeRangeVars.getTimeRangeVars函數代碼示例

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


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

示例1: formatTimeRangeArguments

export function formatTimeRangeArguments(timeRange: TimeRange): string {
  const [start, stop] = getTimeRangeVars(timeRange).map(assignment =>
    formatExpression(assignment.init)
  )

  return `start: ${start}, stop: ${stop}`
}
開發者ID:sebito91,項目名稱:influxdb,代碼行數:7,代碼來源:queryBuilder.ts

示例2: test

  test('should handle absolute lower dates', () => {
    const timeRange: TimeRange = {
      lower: '2019-02-28T15:00:00Z',
    }

    const actual = getTimeRangeVars(timeRange)

    expect(actual[0].init.type).toEqual('DateTimeLiteral')
    expect((actual[0].init as any).value).toEqual('2019-02-28T15:00:00.000Z')
  })
開發者ID:influxdata,項目名稱:influxdb,代碼行數:10,代碼來源:getTimeRangeVars.test.ts

示例3: async

export const executeQueries = () => async (dispatch, getState: GetState) => {
  const {view, timeRange} = getActiveTimeMachine(getState())
  const queries = view.properties.queries.filter(({text}) => !!text.trim())

  if (!queries.length) {
    dispatch(setQueryResults(RemoteDataState.Done, [], null))
  }

  try {
    dispatch(setQueryResults(RemoteDataState.Loading, null, null, null))

    await dispatch(refreshTimeMachineVariableValues())

    const orgID = getState().orgs.org.id
    const activeTimeMachineID = getState().timeMachines.activeTimeMachineID
    const variableAssignments = [
      ...getVariableAssignments(getState(), activeTimeMachineID),
      ...getTimeRangeVars(timeRange),
    ]

    const startTime = Date.now()

    pendingResults.forEach(({cancel}) => cancel())

    pendingResults = queries.map(({text}) =>
      executeQueryWithVars(orgID, text, variableAssignments)
    )

    const results = await Promise.all(pendingResults.map(r => r.promise))

    const duration = Date.now() - startTime
    const files = results.map(r => r.csv)

    files.forEach(checkQueryResult)

    dispatch(setQueryResults(RemoteDataState.Done, files, duration))
  } catch (e) {
    if (e instanceof CancellationError) {
      return
    }

    if (get(e, 'status') === RATE_LIMIT_ERROR_STATUS) {
      const retryAfter = get(e, 'headers.Retry-After')
      dispatch(notify(rateLimitReached(retryAfter)))
    }

    console.error(e)
    dispatch(setQueryResults(RemoteDataState.Error, null, null, e.message))
  }
}
開發者ID:influxdata,項目名稱:influxdb,代碼行數:50,代碼來源:queries.ts


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