本文整理匯總了TypeScript中src/utils/api.client.tasks.get方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript client.tasks.get方法的具體用法?TypeScript client.tasks.get怎麽用?TypeScript client.tasks.get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類src/utils/api.client.tasks
的用法示例。
在下文中一共展示了client.tasks.get方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: async
export const createTaskFromTemplate = async (
template: TaskTemplate,
orgID: string
): Promise<Task> => {
const {content} = template
if (
content.data.type !== TemplateType.Task ||
template.meta.version !== '1'
) {
throw new Error('Can not create task from this template')
}
const flux = content.data.attributes.flux
const createdTask = await client.tasks.createByOrgID(orgID, flux)
if (!createdTask || !createdTask.id) {
throw new Error('Could not create task')
}
// associate imported label.id with created label
const labelMap = await createLabelsFromTemplate(template, orgID)
await addTaskLabelsFromTemplate(template, labelMap, createdTask)
const task = await client.tasks.get(createdTask.id)
return task
}
示例2: async
) => async (dispatch): Promise<void> => {
try {
await client.tasks.removeLabels(taskID, labels.map(l => l.id))
const task = await client.tasks.get(taskID)
dispatch(updateTask(task))
} catch (error) {
console.error(error)
dispatch(notify(copy.removeTaskLabelFailed()))
}
}