MusicSelect.tsx 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. import { useEditor } from "@/modules/editor";
  2. import { useResource } from "@/modules/resource";
  3. import { PlusOutlined } from "@ant-design/icons-vue";
  4. import { Button, Divider, Select } from "ant-design-vue";
  5. import { queenApi } from "queenjs";
  6. import { defineComponent } from "vue";
  7. import { any } from "vue-types";
  8. export default defineComponent({
  9. props: {
  10. otherProps: any(),
  11. },
  12. emits: ["change"],
  13. setup(props, { emit }) {
  14. const { helper, controls } = useEditor();
  15. const resource = useResource();
  16. const addMusic = async () => {
  17. const { successRow, failRow } =
  18. await resource.actions.createAudioMaterial();
  19. if (failRow.length > 0) {
  20. queenApi.messageError(
  21. `${failRow.length}条数据上传失败,超过限制大小。`
  22. );
  23. }
  24. if (successRow.length > 0) {
  25. queenApi.messageSuccess("上传成功");
  26. const ctrl = resource.controls.materialAudioListCtrl;
  27. await ctrl.loadPage(1, 1);
  28. if (ctrl.state.list.length > 0) {
  29. const item: any = ctrl.state.list[0];
  30. const fileUrl = item.file.url;
  31. const option = {
  32. label: "自定义",
  33. value: "custom",
  34. src: fileUrl,
  35. };
  36. const options = [...controls.mediaCtrl.state.musicOptions];
  37. const customIndex = options.findIndex((e) => {
  38. return e.value == "custom";
  39. });
  40. if (customIndex != -1) {
  41. options.splice(customIndex, 1, option);
  42. } else {
  43. options.push(option);
  44. }
  45. controls.mediaCtrl.setMusicOptions(options);
  46. emit("change", "custom");
  47. }
  48. }
  49. };
  50. return () => {
  51. const { musicOptions } = controls.mediaCtrl.state;
  52. const compMusic = helper.findRootComp()?.value.music || "";
  53. const curValue = musicOptions.find((e: any) => {
  54. return e.value == compMusic;
  55. });
  56. return (
  57. <Select
  58. class={"w-full flex-1 overflow-hidden"}
  59. defaultValue={""}
  60. options={musicOptions}
  61. value={curValue?.value || ""}
  62. onChange={(value: any) => {
  63. emit("change", value);
  64. }}
  65. >
  66. {{
  67. dropdownRender: ({ menuNode }: any) => {
  68. return (
  69. <>
  70. {menuNode}
  71. <Divider style={{ margin: 0 }} />
  72. <Button
  73. type="link"
  74. icon={<PlusOutlined />}
  75. onMousedown={(e) => {
  76. e.stopPropagation();
  77. }}
  78. onClick={addMusic}
  79. >
  80. 自定义音乐
  81. </Button>
  82. </>
  83. );
  84. },
  85. }}
  86. </Select>
  87. );
  88. };
  89. },
  90. });