gaoluyang
2 天以前 b64a0deae5b5d33f9e20671a68936b27f0b9b00b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!-- dall3 -->
<script setup lang="ts">
import type { AiImageApi } from '#/api/ai/image';
import type { AiModelModelApi } from '#/api/ai/model/model';
 
import { ref, watch } from 'vue';
 
import { confirm } from '@vben/common-ui';
import {
  AiPlatformEnum,
  ImageHotWords,
  OtherPlatformEnum,
} from '@vben/constants';
 
import { Button, InputNumber, Select, Space, Textarea } from 'ant-design-vue';
 
import { drawImage } from '#/api/ai/image';
 
const props = defineProps({
  models: {
    type: Array<AiModelModelApi.Model>,
    default: () => [] as AiModelModelApi.Model[],
  },
}); // 接收父组件传入的模型列表
const emits = defineEmits(['onDrawStart', 'onDrawComplete']);
 
const drawIn = ref<boolean>(false); // 生成中
const selectHotWord = ref<string>(''); // 选中的热词
 
const prompt = ref<string>(''); // 提示词
const width = ref<number>(512); // 图片宽度
const height = ref<number>(512); // 图片高度
const otherPlatform = ref<string>(AiPlatformEnum.TONG_YI); // 平台
const platformModels = ref<AiModelModelApi.Model[]>([]); // 模型列表
const modelId = ref<number>(); // 选中的模型
 
/** 选择热词 */
async function handleHotWordClick(hotWord: string) {
  // 情况一:取消选中
  if (selectHotWord.value === hotWord) {
    selectHotWord.value = '';
    return;
  }
  // 情况二:选中
  selectHotWord.value = hotWord; // 选中
  prompt.value = hotWord; // 替换提示词
}
 
/** 图片生成 */
async function handleGenerateImage() {
  // 二次确认
  await confirm(`确认生成内容?`);
  try {
    // 加载中
    drawIn.value = true;
    // 回调
    emits('onDrawStart', otherPlatform.value);
    // 发送请求
    const form = {
      platform: otherPlatform.value,
      modelId: modelId.value, // 模型
      prompt: prompt.value, // 提示词
      width: width.value, // 图片宽度
      height: height.value, // 图片高度
      options: {},
    } as unknown as AiImageApi.ImageDrawReqVO;
    await drawImage(form);
  } finally {
    // 回调
    emits('onDrawComplete', otherPlatform.value);
    // 加载结束
    drawIn.value = false;
  }
}
 
/** 填充值 */
async function settingValues(detail: AiImageApi.Image) {
  prompt.value = detail.prompt;
  width.value = detail.width;
  height.value = detail.height;
}
 
/** 平台切换 */
async function handlerPlatformChange(platform: any) {
  // 根据选择的平台筛选模型
  platformModels.value = props.models.filter(
    (item: AiModelModelApi.Model) => item.platform === platform,
  );
  // 切换平台,默认选择一个模型
  modelId.value =
    platformModels.value.length > 0 && platformModels.value[0]
      ? platformModels.value[0].id
      : undefined;
}
 
/** 监听 models 变化 */
watch(
  () => props.models,
  () => {
    handlerPlatformChange(otherPlatform.value);
  },
  { immediate: true, deep: true },
);
 
defineExpose({ settingValues });
</script>
<template>
  <div class="prompt">
    <b>画面描述</b>
    <p>建议使用“形容词 + 动词 + 风格”的格式,使用“,”隔开</p>
    <Textarea
      v-model:value="prompt"
      :maxlength="1024"
      :rows="5"
      class="mt-4 w-full"
      placeholder="例如:童话里的小屋应该是什么样子?"
      show-count
    />
  </div>
 
  <div class="mt-8 flex flex-col">
    <div>
      <b>随机热词</b>
    </div>
    <Space wrap class="mt-4 flex flex-wrap justify-start">
      <Button
        shape="round"
        class="m-0"
        :type="selectHotWord === hotWord ? 'primary' : 'default'"
        v-for="hotWord in ImageHotWords"
        :key="hotWord"
        @click="handleHotWordClick(hotWord)"
      >
        {{ hotWord }}
      </Button>
    </Space>
  </div>
 
  <div class="mt-8">
    <div>
      <b>平台</b>
    </div>
    <Space wrap class="mt-4 w-full">
      <Select
        v-model:value="otherPlatform"
        placeholder="Select"
        size="large"
        class="!w-80"
        @change="handlerPlatformChange"
      >
        <Select.Option
          v-for="item in OtherPlatformEnum"
          :key="item.key"
          :value="item.key"
        >
          {{ item.name }}
        </Select.Option>
      </Select>
    </Space>
  </div>
 
  <div class="mt-8">
    <div>
      <b>模型</b>
    </div>
    <Space wrap class="mt-4 w-full">
      <Select
        v-model:value="modelId"
        placeholder="Select"
        size="large"
        class="!w-80"
      >
        <Select.Option
          v-for="item in platformModels"
          :key="item.id"
          :value="item.id"
        >
          {{ item.name }}
        </Select.Option>
      </Select>
    </Space>
  </div>
 
  <div class="mt-8">
    <div>
      <b>图片尺寸</b>
    </div>
    <Space wrap class="mt-4 flex flex-wrap gap-x-5">
      <InputNumber
        v-model:value="width"
        class="w-40"
        placeholder="图片宽度"
        addon-before="宽"
        addon-after="px"
      />
      <InputNumber
        v-model:value="height"
        class="w-40"
        placeholder="图片高度"
        addon-before="高"
        addon-after="px"
      />
    </Space>
  </div>
 
  <div class="mt-12 flex justify-center">
    <Button
      type="primary"
      size="large"
      shape="round"
      :loading="drawIn"
      :disabled="prompt.length === 0"
      @click="handleGenerateImage"
    >
      {{ drawIn ? '生成中' : '生成内容' }}
    </Button>
  </div>
</template>