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


TypeScript terminal-kit.terminal類代碼示例

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


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

示例1: function

 terminal.on('key', function (name) {
   if (name !== 'y') {
     process.exit(0)
   }
   terminal.grabInput(false)
   resolve()
 })
開發者ID:sadeeqaji,項目名稱:graphcool-cli,代碼行數:7,代碼來源:pull.ts

示例2: handleKeyEvent

async function handleKeyEvent(name: string,
                              currentIndex: number,
                              selectedIndices: number[],
                              projects: ProjectInfo[],
                              env: SystemEnvironment,
                              callback: () => void): Promise<number> {

  switch (name) {
    case 'DOWN': {
      currentIndex = (currentIndex + 1) % projects.length
      rerender(projects, currentIndex, selectedIndices)
      break
    }
    case 'UP': {
      currentIndex = (currentIndex + projects.length - 1) % projects.length
      rerender(projects, currentIndex, selectedIndices)
      break
    }
    case ' ': { // SPACE
      const index = selectedIndices.indexOf(currentIndex)
      if (index >= 0) {
        selectedIndices.splice(index, 1)
      } else {
        selectedIndices.push(currentIndex)
      }
      rerender(projects, currentIndex, selectedIndices)
      break
    }
    case 'ENTER': {
      await handleSelect(selectedIndices, projects, env)
      terminal.grabInput(false)
      callback()
      break
    }
    case 'CTRL_C': {
      clear(projects)
      terminal.hideCursor(false)
      terminal.grabInput(false)
      process.exit()
    }
    default: {
      break
    }
  }

  return currentIndex
}
開發者ID:sadeeqaji,項目名稱:graphcool-cli,代碼行數:47,代碼來源:delete.ts

示例3: async

export default async (props: DeleteProps, env: SystemEnvironment): Promise<void> => {
  const {resolver, out} = env

  if (props.sourceProjectId) {
    out.startSpinner(deletingProjectMessage(props.sourceProjectId))

    try {
      await deleteProject([props.sourceProjectId], resolver)
      out.stopSpinner()
      out.write(deletedProjectMessage([props.sourceProjectId]))

    } catch (e) {
      out.stopSpinner()

      if (e.errors) {
        const errors = parseErrors(e)
        const output = generateErrorOutput(errors)
        out.writeError(`${output}`)
      } else {
        throw e
      }
    }
  } else {

    const projects = await fetchProjects(resolver)
    terminal.saveCursor()
    terminal.grabInput()
    terminal.hideCursor()
    terminal(`\n`)

    // initially select current project
    const projectId = getProjectId(env)
    let currentIndex = projectId ? projects.map(p => p.projectId).indexOf(projectId) : 0
    const selectedIndices = []

    render(projects, currentIndex, selectedIndices)

    await new Promise(resolve => {
      terminal.on('key', async (name: string) => {
        currentIndex = await handleKeyEvent(name, currentIndex, selectedIndices, projects, env, resolve)
      })
    })
  }

}
開發者ID:sadeeqaji,項目名稱:graphcool-cli,代碼行數:45,代碼來源:delete.ts

示例4: Promise

 await new Promise(resolve => {
   terminal.on('key', function (name) {
     if (name !== 'y') {
       process.exit(0)
     }
     terminal.grabInput(false)
     resolve()
   })
 })
開發者ID:sadeeqaji,項目名稱:graphcool-cli,代碼行數:9,代碼來源:pull.ts

示例5: interactiveProjectSelection

async function interactiveProjectSelection(env: SystemEnvironment): Promise<string> {
  const projects = await fetchProjects(env.resolver)
  terminal.saveCursor()
  terminal.grabInput()
  terminal.hideCursor()
  terminal(`\n`)

  let currentIndex = 0

  render(projects, currentIndex)

  const projectId = await new Promise<string>(resolve => {
    terminal.on('key', async (name: string) => {
      currentIndex = await handleKeyEvent(name, currentIndex, projects, resolve)
    })
  })

  return projectId
}
開發者ID:sadeeqaji,項目名稱:graphcool-cli,代碼行數:19,代碼來源:pull.ts

示例6: handleSelect

async function handleSelect(selectedIndices: number[], projects: ProjectInfo[], env: SystemEnvironment): Promise<void> {

  terminal(`\n\n${deletingProjectWarningMessage}`)

  terminal.grabInput(true)
  await new Promise(resolve => {
    terminal.on('key', function (name) {
      if (name !== 'y') {
        process.exit(0)
      }
      terminal.grabInput(false)
      resolve()
    })
  })

  const projectIdsToDelete = selectedIndices.reduce((prev: string[], current: number) => {
    prev.push(projects[current].projectId)
    return prev
  }, [])

  terminal.restoreCursor()
  terminal.eraseDisplayBelow()
  terminal.hideCursor(false)
  env.out.startSpinner(deletingProjectsMessage(projectIdsToDelete))

  try {
    await deleteProject(projectIdsToDelete, env.resolver)
    env.out.stopSpinner()
    env.out.write(deletedProjectMessage(projectIdsToDelete))

  } catch (e) {
    env.out.stopSpinner()

    if (e.errors) {
      const errors = parseErrors(e)
      const output = generateErrorOutput(errors)
      env.out.writeError(`${output}`)
    } else {
      throw e
    }
  }

}
開發者ID:sadeeqaji,項目名稱:graphcool-cli,代碼行數:43,代碼來源:delete.ts

示例7: handleKeyEvent

async function handleKeyEvent(name: string,
                              currentIndex: number,
                              projects: ProjectInfo[],
                              callback: (projectId: string) => void): Promise<number> {

  switch (name) {
    case 'DOWN': {
      currentIndex = (currentIndex + 1) % projects.length
      rerender(projects, currentIndex)
      break
    }
    case 'UP': {
      currentIndex = (currentIndex + projects.length - 1) % projects.length
      rerender(projects, currentIndex)
      break
    }
    case 'ENTER': {
      clear(projects)
      terminal.hideCursor(false)
      terminal.grabInput(false)
      callback(projects[currentIndex].projectId)
      break
    }
    case 'CTRL_C': {
      clear(projects)
      terminal.hideCursor(false)
      terminal.grabInput(false)
      process.exit()
    }
    default: {
      break
    }
  }

  return currentIndex
}
開發者ID:sadeeqaji,項目名稱:graphcool-cli,代碼行數:36,代碼來源:pull.ts

示例8: question

 (error: any, result: any) => {
   if (result) {
     term.green("'Yes' detected! Good bye!\n");
   } else {
     term.red("'No' detected, are you sure?\n");
     question();
   }
 }
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:8,代碼來源:terminal-kit-tests.ts

示例9:

() => {
  const input = term.inputField({
    history: history1,
    autoComplete: autoComplete1,
    autoCompleteMenu: true
  }).promise;

  term.green("\nYour name is '%s'\n", input);
};
開發者ID:csrakowski,項目名稱:DefinitelyTyped,代碼行數:9,代碼來源:terminal-kit-tests.ts


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