enableSampleTaskStatus.ts 317 B

123456789
  1. import { TUIStore, StoreName } from "@tencentcloud/chat-uikit-engine";
  2. export function enableSampleTaskStatus(taskKey: string) {
  3. const tasks = TUIStore.getData(StoreName.APP, "tasks");
  4. if (taskKey in tasks && !tasks[taskKey]) {
  5. tasks[taskKey] = true;
  6. TUIStore.update(StoreName.APP, "tasks", tasks);
  7. }
  8. }