import { Modal } from 'ant-design-vue' import { defineComponent, ref, watch } from 'vue' import { VueCropper } from 'vue-cropper' import 'vue-cropper/dist/index.css' import upload from './upload' import { v4 as uuid } from 'uuid' import { MdCroprotateRound, BiPlusLg } from 'oh-vue-icons/icons' import { OhVueIcon, addIcons } from 'oh-vue-icons' import NativeColorPicker from './NativeColorPicker' import useUserStore from '@/user/useUserStore' import { globalToast } from '@/main' import useRouterStore from '@/useRouterStore' addIcons(MdCroprotateRound, BiPlusLg) export default defineComponent({ emits: { 'update:value': (() => true) as (val: string) => boolean }, setup(props, ctx) { const inputRef = ref(null) const showCutModel = ref(false) const originFile = ref('') const fillColor = ref('transparent') const cropper = ref(null) const handleFile = (e: any) => { const target = e.target as HTMLInputElement const file = target.files?.[0] target.value = '' if (!file) return // upload(file).then(res => { const reader = new FileReader() reader.readAsDataURL(file) reader.onload = (e: any) => { originFile.value = e?.target.result // 显示原始图片 showCutModel.value = true } // emit('update:icon', res || '') // }) } const handleFinish = (blob: any) => { // 根据前几个字节推测文件类型(这里只考虑常见的图片类型) // 使用 FileReader 对象读取 Blob 的前几个字节 const reader = new FileReader() reader.onloadend = function () { // 打印 File 对象以验证 const fileData = new File([blob], `${uuid()}.png`, { type: 'image/jpg', lastModified: Date.now() }) upload(fileData, 'customIcon').then((res) => { showCutModel.value = false ctx.emit('update:value', res || '') }) } reader.readAsArrayBuffer(blob) } watch( fillColor, (e: string) => { const elements = document.querySelectorAll('.cropper-crop-box') elements.forEach((element: any) => { element.style.backgroundColor = e // 修改颜色为蓝色 }) }, { immediate: true } ) return () => ( <> (showCutModel.value = false)} onOk={() => { cropper.value.getCropBlob((blob: any) => { handleFinish(blob) }) }} >
{/* ($refs.cropper as any).rotateRight()} /> */} { cropper.value.rotateRight() }} > cropper.value?.changeScale(1)} class="icon cursor-pointer" viewBox="0 0 1024 1024" width="2rem" height="2rem" > cropper.value?.changeScale(-1)} class="icon cursor-pointer" viewBox="0 0 1024 1024" width="2rem" height="2rem" >
(fillColor.value = e)} transparent={true} /> {/* {props.colorList && (
{ }} transparent={true} />
)} */}
{ if (useUserStore().isLogin) { inputRef.value?.click?.() } else { globalToast.warning('请先登录') useRouterStore().go('global-login') // useAdderPageStore().type = 2 } }} >
) } })