material.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. import { TimeController } from "@/controllers/TimeController";
  2. import { queenApi } from "queenjs";
  3. import Modal from "queenjs/adapter/vue/components/modal";
  4. import { ResourceModule } from "..";
  5. export const materialActions = ResourceModule.action({
  6. async createMaterial() {
  7. const { successRow, failRow } = await this.helper.uploadMaterials({
  8. accept: "image/*,video/mp4,audio/mp3",
  9. multiple: true,
  10. });
  11. for (const key in successRow) {
  12. const souceObj = successRow[key];
  13. await this.https.createResource(souceObj);
  14. }
  15. this.controls.materialListCtrl.state.query = {
  16. fileType: this.store.type,
  17. };
  18. this.controls.materialListCtrl.loadPage(1);
  19. return { successRow, failRow };
  20. },
  21. async createAudioMaterial() {
  22. const { successRow, failRow } = await this.helper.uploadMaterials({
  23. accept: "audio/mp3",
  24. multiple: false,
  25. });
  26. for (const key in successRow) {
  27. const souceObj = successRow[key];
  28. await this.https.createResource(souceObj);
  29. }
  30. return { successRow, failRow };
  31. },
  32. async deleteMaterial(record) {
  33. const res = await queenApi.showConfirm({
  34. content: `删除后不可恢复,是否要删除此素材?`,
  35. type: "danger",
  36. });
  37. if (!res) return;
  38. await this.https.deleteResource(record._id);
  39. // this.controls.materialListCtrl.fresh();
  40. },
  41. publishMaterial(record: any, publish: boolean) {
  42. return this.https.publishResource({ _id: record._id, published: publish });
  43. },
  44. publishFrame(record: any, publish: boolean) {
  45. return this.https.publishFrame({ _id: record._id, published: publish });
  46. },
  47. downloadMaterial(record) {
  48. window.open(record.file.url);
  49. },
  50. async selectMaterial(record) {
  51. const _params = new URLSearchParams(decodeURIComponent(location.search));
  52. const host = _params.get("host");
  53. // if (location.host == "www.infish.cn") {
  54. // const url = `${location.origin}/projects/queenshowv1/index.html?host=${host}#/create/${record._id}`;
  55. // location.href = url;
  56. // return;
  57. // }
  58. const url = `${location.origin}/index.html?host=${host}#/create/${record._id}`;
  59. location.href = url;
  60. },
  61. });