123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620 |
- <template>
- <div class="props">
- <t-tabs v-model="data.tab">
- <t-tab-panel :value="1" label="外观">
- <t-space direction="vertical" class="py-16 w-full">
- <div class="form-item px-12">
- <label style="width: 50px">ID</label>
- <t-input
- class="w-full"
- placeholder="ID"
- :value="data.pen.id"
- @change="changeID($event)"
- />
- </div>
- <div class="form-item px-12" style="margin-top: -12px">
- <label style="width: 50px">名称</label>
- <!-- <t-input
- class="w-full"
- placeholder="名称"
- disabled
- v-model.number="data.pen.name"
- @change="changeValue('name')"
- /> -->
- <div style="padding-left: 8px; line-height: 30px">
- {{ data.pen.name }}
- </div>
- </div>
- <div class="form-item px-12" style="margin-top: -12px">
- <label style="width: 50px">分组</label>
- <t-select-input
- v-model:inputValue="data.inputTag"
- :value="data.pen.tags"
- v-model:popupVisible="data.tagPopupVisible"
- allow-input
- placeholder="请输入或选择分组"
- multiple
- @tag-change="onChangeInputTag"
- @focus="data.tagPopupVisible = true"
- @blur="data.tagPopupVisible = false"
- :tag-input-props="{ excessTagsDisplayType: 'scroll' }"
- >
- <template #panel>
- <ul style="padding: 8px 12px">
- <li
- v-for="item in data.groups"
- :key="item"
- @click="onSelectTag(item)"
- >
- {{ item }}
- </li>
- </ul>
- </template>
- </t-select-input>
- </div>
- <div class="form-item px-12" style="margin-top: -12px">
- <label style="width: 50px">模板</label>
- <t-switch
- class="mt-8 ml-8"
- v-model="data.pen.template"
- size="small"
- @change="changeValue('template')"
- />
- </div>
- <t-divider style="margin: -8px 0" />
- <div style="margin: 0 16px 16px 16px">
- <t-space direction="vertical" size="small" class="w-full">
- <div style="color: var(--color); margin-bottom: 2px">
- 大屏对齐
- </div>
- <div class="icons">
- <t-tooltip
- v-for="item in aligns"
- :content="item.label"
- placement="top"
- >
- <svg
- class="l-icon btn"
- aria-hidden="true"
- @click="align(item.value)"
- >
- <use :xlink:href="item.icon"></use>
- </svg>
- </t-tooltip>
- </div>
- </t-space>
- </div>
- <t-divider style="margin: -8px 0" />
- <div class="form-item" style="margin-top: -12px">
- <t-input
- class="ml-4"
- label="X"
- placeholder="X"
- v-model.number="data.rect.x"
- style="width: 80px"
- :format="decimalPlaces"
- @change="changeRectValue('x')"
- />
- <t-icon name="link" class="hidden ml-4" />
- <t-input
- class="ml-4"
- label="Y"
- placeholder="Y"
- v-model.number="data.rect.y"
- style="width: 80px"
- :format="decimalPlaces"
- @change="changeRectValue('y')"
- />
- <t-input
- class="ml-16"
- v-model.number="data.pen.rotate"
- placeholder="旋转"
- style="width: 80px"
- :format="decimalRound"
- @change="changeValue('rotate')"
- >
- <template #prefix-icon>
- <svg class="l-icon" aria-hidden="true">
- <use xlink:href="#l-rotate"></use>
- </svg>
- </template>
- </t-input>
- </div>
- <div class="form-item hover-icons" style="margin-top: -12px">
- <t-input
- class="ml-4"
- label="W"
- v-model.number="data.rect.width"
- placeholder="宽"
- min="1"
- style="width: 80px"
- :format="decimalPlaces"
- @change="changeRectValue('width')"
- />
- <t-tooltip v-if="data.pen.ratio" content="固定比例" placement="top">
- <t-icon
- name="link"
- class="ml-4 hover"
- @click="data.pen.ratio = !data.pen.ratio"
- />
- </t-tooltip>
- <t-tooltip v-else content="不固定比例" placement="top">
- <t-icon
- name="link-unlink"
- class="ml-4 hover icon"
- @click="data.pen.ratio = !data.pen.ratio"
- />
- </t-tooltip>
- <t-input
- class="ml-4"
- label="H"
- placeholder="高"
- v-model.number="data.rect.height"
- min="1"
- style="width: 80px"
- :format="decimalPlaces"
- @change="changeRectValue('height')"
- />
- <t-input
- class="ml-16"
- v-model.number="data.pen.borderRadius"
- placeholder="圆角"
- style="width: 80px"
- @change="changeValue('borderRadius')"
- >
- <template #prefix-icon>
- <svg class="l-icon" aria-hidden="true">
- <use xlink:href="#l-border-radius"></use>
- </svg>
- </template>
- </t-input>
- </div>
- <t-divider style="margin: -8px 0" />
- <div class="form-item px-16" style="margin-top: -12px">
- <label>透明度</label>
- <t-slider
- v-model="data.pen.globalAlpha"
- :min="0"
- :max="1"
- :step="0.01"
- @change="changeValue('globalAlpha')"
- />
- <span class="ml-16" style="width: 50px; line-height: 30px">
- {{ data.pen.globalAlpha }}
- </span>
- </div>
- <t-collapse
- :defaultValue="['1', '2', '3', '4', '5']"
- expandIconPlacement="right"
- :borderless="true"
- >
- <t-collapse-panel
- v-if="data.pen.props.look !== false"
- value="1"
- header="外观"
- >
- <t-space direction="vertical" size="small" class="w-full">
- <div class="form-item">
- <t-color-picker
- class="simple mt-8 mr-4"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultPureColor"
- :color-modes="['monochrome']"
- :show-primary-color-preview="false"
- :clearable="true"
- v-model="data.pen.color"
- @change="changeValue('color')"
- />
- <label style="width: 64px">前景颜色</label>
- <t-color-picker
- class="simple mt-8 mr-4"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultPureColor"
- :color-modes="['monochrome']"
- :show-primary-color-preview="false"
- v-model="data.pen.hoverColor"
- @change="changeValue('hoverColor')"
- />
- <label style="width: 64px">悬停颜色</label>
- <t-color-picker
- class="simple mt-8 mr-4"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultPureColor"
- :color-modes="['monochrome']"
- :show-primary-color-preview="false"
- v-model="data.pen.activeColor"
- @change="changeValue('activeColor')"
- />
- <label style="width: 64px">选中颜色</label>
- </div>
- <div class="form-item">
- <label style="width: 32px">线条 </label>
- <t-select
- v-model="data.pen.dash"
- placeholder="线条样式"
- @change="changeValue('dash')"
- style="width: 80px"
- >
- <template #valueDisplay="{ value }">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- version="1.1"
- style="width: 100%; height: 20px"
- >
- <g fill="none" stroke="var(--color)" stroke-width="1">
- <path v-if="value === 0" d="M0 9 l85 0" />
- <path
- v-else-if="value === 1"
- stroke-dasharray="5 5"
- d="M0 9 l85 0"
- />
- <path
- v-else-if="value === 2"
- stroke-dasharray="10 10"
- d="M0 9 l85 0"
- />
- <path
- v-else-if="value === 3"
- stroke-dasharray="10 10 2 10"
- d="M0 9 l85 0"
- />
- </g>
- </svg>
- </template>
- <t-option :key="0" :value="0">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- version="1.1"
- style="width: 80px; height: 14px"
- >
- <g fill="none" stroke="var(--color)" stroke-width="1">
- <path d="M0 9 l85 0" />
- </g>
- </svg>
- </t-option>
- <t-option :key="1" :value="1">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- version="1.1"
- style="width: 80px; height: 14px"
- >
- <g fill="none" stroke="var(--color)" stroke-width="1">
- <path stroke-dasharray="5 5" d="M0 9 l85 0" />
- </g>
- </svg>
- </t-option>
- <t-option :key="2" :value="2">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- version="1.1"
- style="width: 80px; height: 14px"
- >
- <g fill="none" stroke="var(--color)" stroke-width="1">
- <path stroke-dasharray="10 10" d="M0 9 l85 0" />
- </g>
- </svg>
- </t-option>
- <t-option :key="3" :value="3">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- version="1.1"
- style="width: 80px; height: 14px"
- >
- <g fill="none" stroke="var(--color)" stroke-width="1">
- <path stroke-dasharray="10 10 2 10" d="M0 9 l85 0" />
- </g>
- </svg>
- </t-option>
- </t-select>
- <t-input-number
- theme="normal"
- placeholder="线条宽度"
- v-model="data.pen.lineWidth"
- :min="0"
- :decimalPlaces="0"
- @change="changeValue('lineWidth')"
- class="ml-4"
- style="width: 40px"
- />
- <t-tooltip content="线条渐变" placement="top">
- <div class="flex middle ml-8">
- <t-checkbox
- v-model="data.pen.strokeType"
- @change="changeValue('strokeType')"
- style="width: 22px"
- />
- <t-color-picker
- v-if="data.pen.strokeType"
- class="simple mr-4"
- format="CSS"
- :swatch-colors="defaultGradientColor"
- :color-modes="['linear-gradient']"
- :show-primary-color-preview="false"
- :recent-colors="null"
- :enableAlpha="true"
- v-model="data.pen.lineGradientColors"
- @change="changeValue('lineGradientColors')"
- placeholder="无"
- />
- </div>
- </t-tooltip>
- <t-tooltip
- v-if="data.pen.strokeType"
- content="平滑度"
- placement="top"
- >
- <t-input-number
- theme="normal"
- placeholder="1-3"
- v-model="data.pen.gradientSmooth"
- :min="0"
- :decimalPlaces="0"
- @change="changeValue('gradientSmooth')"
- class="ml-4"
- style="width: 44px"
- />
- </t-tooltip>
- </div>
- <div class="flex" style="margin-left: 40px">
- <div class="flex column middle">
- <t-radio-group
- size="small"
- v-model="data.pen.lineCap"
- default-value="butt"
- @change="changeValue('lineCap')"
- >
- <t-radio-button value="butt">
- <t-tooltip content="默认" placement="top">
- <svg class="l-icon" aria-hidden="true">
- <use xlink:href="#l-duandian1"></use>
- </svg>
- </t-tooltip>
- </t-radio-button>
- <t-radio-button value="round">
- <t-tooltip content="圆形" placement="top">
- <svg class="l-icon" aria-hidden="true">
- <use xlink:href="#l-duandian2"></use>
- </svg>
- </t-tooltip>
- </t-radio-button>
- <t-radio-button value="square">
- <t-tooltip content="方形" placement="top">
- <svg class="l-icon" aria-hidden="true">
- <use xlink:href="#l-duandian3"></use>
- </svg>
- </t-tooltip>
- </t-radio-button>
- </t-radio-group>
- <div class="mt-4" style="font-size: 12px">末端样式</div>
- </div>
- <div class="flex column middle ml-16">
- <t-radio-group
- size="small"
- v-model="data.pen.lineJoin"
- default-value="miter"
- @change="changeValue('lineJoin')"
- >
- <t-radio-button value="miter">
- <t-tooltip content="默认" placement="top">
- <svg class="l-icon" aria-hidden="true">
- <use xlink:href="#l-jiedian1"></use>
- </svg>
- </t-tooltip>
- </t-radio-button>
- <t-radio-button value="round">
- <t-tooltip content="圆形" placement="top">
- <svg class="l-icon" aria-hidden="true">
- <use xlink:href="#l-jiedian2"></use>
- </svg>
- </t-tooltip>
- </t-radio-button>
- <t-radio-button value="bevel">
- <t-tooltip content="斜角" placement="top">
- <svg class="l-icon" aria-hidden="true">
- <use xlink:href="#l-jiedian3"></use>
- </svg>
- </t-tooltip>
- </t-radio-button>
- </t-radio-group>
- <div class="mt-4" style="font-size: 12px">连接样式</div>
- </div>
- </div>
- <div class="form-item" v-if="!data.pen.type">
- <label style="width: 32px">背景</label>
- <div class="ml-8">
- <t-radio-group
- size="small"
- v-model="data.pen.bkType"
- :default-value="0"
- @change="changeValue('bkType')"
- >
- <t-radio-button :value="0"> 纯色 </t-radio-button>
- <t-radio-button :value="1"> 线性渐变 </t-radio-button>
- <t-radio-button :value="2"> 径向渐变 </t-radio-button>
- </t-radio-group>
- <div v-if="data.pen.bkType === 0" class="mt-8 -ml-8">
- <t-color-picker
- class="w-full"
- format="CSS"
- :swatch-colors="defaultPureColor"
- :color-modes="['monochrome']"
- :recent-colors="null"
- :enable-alpha="true"
- :show-primary-color-preview="false"
- v-model="data.pen.background"
- @change="changeValue('background')"
- />
- </div>
- <div
- v-else-if="data.pen.bkType === 1"
- class="mt-8 -ml-8"
- style="width: 200px"
- >
- <t-color-picker
- class="w-full"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultGradientColor"
- :color-modes="['linear-gradient']"
- :show-primary-color-preview="false"
- v-model="data.pen.gradientColors"
- @change="changeValue('gradientColors')"
- />
- </div>
- <div
- v-else-if="data.pen.bkType === 2"
- class="mt-8 flex middle"
- >
- <t-color-picker
- class="simple"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultGradientColor"
- :color-modes="['linear-gradient']"
- :show-primary-color-preview="false"
- v-model="data.pen.gradientColors"
- @change="changeValue('gradientColors')"
- />
- <t-input-number
- theme="column"
- placeholder="渐变半径"
- v-model="data.pen.gradientRadius"
- :min="0"
- :max="1"
- :step="0.1"
- @change="changeValue('gradientRadius')"
- class="ml-8"
- style="width: 100px"
- />
- </div>
- </div>
- </div>
- <div class="form-item">
- <label style="width: 32px">阴影 </label>
- <div class="flex middle ml-8">
- <t-checkbox
- v-model="data.pen.shadow"
- @change="changeValue('shadow')"
- style="width: 22px"
- />
- <t-color-picker
- v-if="data.pen.shadow"
- class="simple"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultPureColor"
- :color-modes="['monochrome']"
- :show-primary-color-preview="false"
- v-model="data.pen.shadowColor"
- @change="changeValue('shadowColor')"
- />
- </div>
- <label
- v-if="data.pen.shadow"
- style="width: 50px; margin-left: 25px"
- >文字阴影
- </label>
- <div v-if="data.pen.shadow" class="flex middle ml-8">
- <t-checkbox
- v-model="data.pen.textHasShadow"
- @change="changeValue('textHasShadow')"
- style="width: 22px"
- />
- </div>
- </div>
- <div class="form-item" v-if="data.pen.shadow">
- <label style="width: 28px"></label>
- <div class="flex" style="margin-top: -8px">
- <t-input
- class="ml-4"
- label="X"
- placeholder="0"
- v-model.number="data.pen.shadowOffsetX"
- style="width: 60px"
- @change="changeValue('shadowOffsetX')"
- title="X偏移"
- />
- <t-input
- class="ml-4"
- label="Y"
- placeholder="0"
- v-model.number="data.pen.shadowOffsetY"
- style="width: 60px"
- @change="changeValue('shadowOffsetY')"
- title="Y偏移"
- />
- <t-input
- class="ml-4"
- label="模糊"
- placeholder="0"
- v-model.number="data.pen.shadowBlur"
- style="width: 64px"
- @change="changeValue('shadowBlur')"
- title="模糊大小"
- />
- </div>
- </div>
- </t-space>
- </t-collapse-panel>
- <t-collapse-panel
- v-if="data.pen.props.text"
- value="2"
- header="文字"
- >
- <t-space direction="vertical" size="small" class="w-full">
- <div class="form-item">
- <div class="flex middle" style="margin-left: -10px">
- <t-select-input
- :value="data.pen.fontFamily"
- :popup-visible="data.fontFamilyPopupVisible"
- placeholder="字体名"
- allow-input
- style="width: 170px"
- @change="changeValue('fontFamily')"
- @enter="changeValue('fontFamily')"
- @blur="changeValue('fontFamily')"
- @popup-visible-change="onFontPopupVisible"
- :popup-props="{
- overlayInnerStyle: { width: 'auto' },
- }"
- >
- <template #panel>
- <ul style="padding: 12px">
- <li
- v-for="item in fonts"
- :key="item"
- @click="onFontFamily(item)"
- >
- {{ item }}
- </li>
- </ul>
- </template>
- <template #suffixIcon>
- <t-icon name="chevron-down" />
- </template>
- </t-select-input>
- <t-input
- class="ml-8"
- placeholder="字体大小"
- v-model.number="data.pen.fontSize"
- style="width: 80px"
- :format="decimalRound"
- @change="changeValue('fontSize')"
- />
- </div>
- </div>
- <div class="flex middle">
- <t-radio-group
- size="small"
- v-model="data.pen.textAlign"
- default-value="center"
- @change="changeValue('textAlign')"
- >
- <t-radio-button value="left">
- <t-tooltip content="居左" placement="top">
- <t-icon name="format-vertical-align-left" />
- </t-tooltip>
- </t-radio-button>
- <t-radio-button value="center">
- <t-tooltip content="水平居中" placement="top">
- <t-icon name="format-vertical-align-center" />
- </t-tooltip>
- </t-radio-button>
- <t-radio-button value="right">
- <t-tooltip content="居右" placement="top">
- <t-icon name="format-vertical-align-right" />
- </t-tooltip>
- </t-radio-button>
- </t-radio-group>
- <t-radio-group
- class="ml-8"
- size="small"
- v-model="data.pen.textBaseline"
- default-value="top"
- @change="changeValue('textBaseline')"
- >
- <t-radio-button value="top">
- <t-tooltip content="顶部对齐" placement="top">
- <t-icon name="format-horizontal-align-top" />
- </t-tooltip>
- </t-radio-button>
- <t-radio-button value="middle">
- <t-tooltip content="垂直居中" placement="top">
- <t-icon name="format-horizontal-align-center" />
- </t-tooltip>
- </t-radio-button>
- <t-radio-button value="bottom">
- <t-tooltip content="底部对齐" placement="top">
- <t-icon name="format-horizontal-align-bottom" />
- </t-tooltip>
- </t-radio-button>
- </t-radio-group>
- <t-button
- :class="{ active: data.pen.fontWeight === 'bold' }"
- class="ml-8 icon"
- shape="rectangle"
- variant="text"
- @click="
- data.pen.fontWeight === 'bold'
- ? (data.pen.fontWeight = 'normal')
- : (data.pen.fontWeight = 'bold');
- changeValue('fontWeight');
- "
- >
- B
- </t-button>
- <t-button
- :class="{ active: data.pen.fontStyle === 'italic' }"
- class="ml-4 icon"
- shape="rectangle"
- variant="text"
- @click="
- data.pen.fontStyle === 'italic'
- ? (data.pen.fontStyle = 'normal')
- : (data.pen.fontStyle = 'italic');
- changeValue('fontStyle');
- "
- style="font-style: italic; font-family: serif"
- >I</t-button
- >
- </div>
- <div class="form-item">
- <!-- <t-color-picker
- class="simple mt-8 mr-4"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultPureColor"
- :color-modes="['monochrome']"
- :show-primary-color-preview="false"
- v-model="data.pen.textColor"
- @change="changeValue('textColor')"
- />
- <label style="width: 44px">前景</label> -->
- <t-color-picker
- class="simple mt-8 mr-4"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultPureColor"
- :color-modes="['monochrome']"
- :show-primary-color-preview="false"
- v-model="data.pen.textBackground"
- @change="changeValue('textBackground')"
- />
- <label style="width: 64px">背景</label>
- <t-color-picker
- class="simple mt-8 mr-4"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultPureColor"
- :color-modes="['monochrome']"
- :show-primary-color-preview="false"
- v-model="data.pen.hoverTextColor"
- @change="changeValue('hoverTextColor')"
- />
- <label style="width: 64px">悬停</label>
- <t-color-picker
- class="simple mt-8 mr-4"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultPureColor"
- :color-modes="['monochrome']"
- :show-primary-color-preview="false"
- v-model="data.pen.activeTextColor"
- @change="changeValue('activeTextColor')"
- />
- <label style="width: 64px">选中</label>
- </div>
- <div class="form-item">
- <label style="width: 32px">前景</label>
- <div class="ml-8">
- <t-radio-group
- size="small"
- v-model="data.pen.textType"
- :default-value="0"
- @change="changeValue('textType')"
- >
- <t-radio-button :value="0"> 纯色 </t-radio-button>
- <t-radio-button :value="1"> 线性渐变 </t-radio-button>
- <t-radio-button :value="2"> 径向渐变 </t-radio-button>
- </t-radio-group>
- <div v-if="data.pen.textType === 0" class="mt-8 -ml-8">
- <t-color-picker
- class="w-full"
- format="CSS"
- :swatch-colors="defaultPureColor"
- :color-modes="['monochrome']"
- :recent-colors="null"
- :enable-alpha="true"
- :show-primary-color-preview="false"
- v-model="data.pen.textColor"
- @change="changeValue('textColor')"
- />
- </div>
- <div
- v-else-if="data.pen.textType === 1"
- class="mt-8 -ml-8"
- style="width: 200px"
- >
- <t-color-picker
- class="w-full"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultGradientColor"
- :color-modes="['linear-gradient']"
- :show-primary-color-preview="false"
- v-model="data.pen.textGradientColors"
- @change="changeValue('textGradientColors')"
- />
- </div>
- <div
- v-else-if="data.pen.textType === 2"
- class="mt-8 -ml-8"
- style="width: 200px"
- >
- <t-color-picker
- class="w-full"
- format="CSS"
- :enable-alpha="true"
- :recent-colors="null"
- :swatch-colors="defaultGradientColor"
- :color-modes="['linear-gradient']"
- :show-primary-color-preview="false"
- v-model="data.pen.textGradientColors"
- @change="changeValue('textGradientColors')"
- />
- </div>
- </div>
- </div>
- <div class="form-item">
- <t-checkbox
- :checked="data.pen.whiteSpace != 'nowrap' ? true : false"
- @change="changeValue('whiteSpace')"
- style="width: 64px"
- >
- 换行
- </t-checkbox>
- <t-checkbox
- v-model="data.pen.ellipsis"
- @change="changeValue('ellipsis')"
- style="width: 68px"
- >
- 省略号
- </t-checkbox>
- <t-tooltip content="行高">
- <t-input
- placeholder="行高"
- v-model.number="data.pen.lineHeight"
- style="width: 40px"
- @change="changeValue('lineHeight')"
- />
- </t-tooltip>
- <t-tooltip content="显示时保留小数位数">
- <t-input
- class="ml-4"
- placeholder="小数"
- v-model.number="data.pen.keepDecimal"
- style="width: 60px"
- @change="changeValue('keepDecimal')"
- />
- </t-tooltip>
- </div>
- <div class="form-item" style="margin-top: -4px">
- <t-tooltip content="水平偏移">
- <t-input
- placeholder="X"
- v-model.number="data.pen.textLeft"
- style="width: 60px; margin-left: -8px"
- @change="changeValue('textLeft')"
- />
- </t-tooltip>
- <t-tooltip content="垂直偏移">
- <t-input
- class="ml-4"
- placeholder="Y"
- v-model.number="data.pen.textTop"
- style="width: 60px"
- @change="changeValue('textTop')"
- />
- </t-tooltip>
- <t-tooltip content="宽">
- <t-input
- class="ml-4"
- placeholder="宽"
- v-model.number="data.pen.textWidth"
- style="width: 60px"
- @change="changeValue('textWidth')"
- />
- </t-tooltip>
- <t-tooltip content="高">
- <t-input
- class="ml-4"
- placeholder="高"
- v-model.number="data.pen.textHeight"
- style="width: 60px"
- @change="changeValue('textHeight')"
- />
- </t-tooltip>
- </div>
- <div class="flex middle">
- <t-checkbox
- v-model="data.pen.disableInput"
- @change="changeValue('disableInput')"
- style="width: 64px"
- >
- 只读
- </t-checkbox>
- <t-checkbox
- v-model="data.pen.hiddenText"
- @change="changeValue('hiddenText')"
- style="width: 90px"
- >
- 隐藏文字
- </t-checkbox>
- <t-checkbox
- v-model="data.pen.textAutoAdjust"
- @change="changeValue('textAutoAdjust')"
- style="width: 90px"
- >
- 自动调整
- </t-checkbox>
- </div>
- </t-space>
- </t-collapse-panel>
- <t-collapse-panel
- v-if="data.pen.props.image"
- value="3"
- header="图片"
- >
- <t-space direction="vertical" size="small" class="w-full">
- <div>
- <t-upload
- ref="uploadRef"
- v-model="data.images"
- action="/api/image/upload"
- theme="image"
- accept="image/*"
- :headers="headers"
- :data="updataData"
- :before-upload="beforeUpload"
- draggable
- @success="fileSuccessed"
- @remove="fileRemoved"
- >
- <template #fileListDisplay>
- <div style="z-index: 20">
- <a class="mr-4" @click="upload"> 点击上传 </a>
- / 拖拽图片到此区域
- </div>
- </template>
- </t-upload>
- </div>
- <div class="form-item hover-icons" style="margin-left: -12px">
- <t-input
- class="ml-4"
- label="W"
- v-model.number="data.pen.iconWidth"
- placeholder="自适应"
- min="1"
- style="width: 80px"
- :format="decimalPlaces"
- @change="changeValue('iconWidth')"
- />
- <t-tooltip
- v-if="data.pen.imageRatio"
- content="固定比例"
- placement="top"
- >
- <t-icon
- name="link"
- class="ml-4 hover"
- @click="data.pen.imageRatio = !data.pen.imageRatio"
- />
- </t-tooltip>
- <t-tooltip v-else content="不固定比例" placement="top">
- <t-icon
- name="link-unlink"
- class="ml-4 hover icon"
- @click="data.pen.imageRatio = !data.pen.imageRatio"
- />
- </t-tooltip>
- <t-input
- class="ml-4"
- label="H"
- placeholder="自适应"
- v-model.number="data.pen.iconHeight"
- min="1"
- style="width: 80px"
- :format="decimalPlaces"
- @change="changeValue('iconHeight')"
- />
- <t-checkbox
- class="ml-8"
- v-model="data.pen.isBottom"
- @change="changeValue('isBottom')"
- >
- 置底
- </t-checkbox>
- </div>
- <div class="flex">
- <label style="width: 30px; color: var(--color)">Url:</label>
- {{ data.pen.image }}
- </div>
- </t-space>
- </t-collapse-panel>
- <t-collapse-panel
- v-if="data.pen.props.icon"
- value="4"
- header="图标"
- >
- <t-space direction="vertical" size="small" class="w-full">
- <div class="form-item">
- <label style="width: 32px">图标 </label>
- <i
- class="ml-8"
- :class="data.pen.iconFamily"
- style="line-height: 30px; height: 30px; color: var(--color)"
- >
- {{ data.pen.icon }}
- </i>
- <a class="ml-12 mt-4" @click="iconsDrawer.show = true">
- 选择
- </a>
- <t-drawer
- v-model:visible="iconsDrawer.show"
- header="选择图标"
- :footer="null"
- >
- <Iconfonts :urls="data.iconUrls" @change="onChangeIcon" />
- </t-drawer>
- </div>
- </t-space>
- </t-collapse-panel>
- <!-- <t-collapse-panel
- v-if="data.pen.props.custom"
- value="5"
- header="属性"
- >
- <t-space direction="vertical" size="small" class="w-full">
- <div v-for="item in data.pen.props.custom" class="form-item">
- <label :title="item.label">{{ item.label }}</label>
- <t-checkbox
- class="ml-8"
- v-if="item.type === 'bool'"
- v-model="data.pen[item.key]"
- @change="changeValue(item.key)"
- />
- <t-input-number
- class="w-full"
- v-else-if="item.type === 'number'"
- v-model.number="data.pen[item.key]"
- theme="column"
- :max="item.max"
- :min="item.min"
- @change="changeValue(item.key)"
- :placeholder="item.placeholder"
- />
- <t-color-picker
- class="w-full"
- v-else-if="item.type === 'color'"
- :enable-alpha="true"
- :recent-colors="null"
- format="CSS"
- :swatch-colors="defaultPureColor"
- :color-modes="['monochrome']"
- :show-primary-color-preview="false"
- v-model="data.pen[item.key]"
- @change="changeValue(item.key)"
- :placeholder="item.placeholder"
- />
- <t-select
- class="w-full"
- v-else-if="item.type === 'select'"
- size="small"
- :options="item.options"
- v-model="data.pen[item.key]"
- @change="changeValue(item.key)"
- :placeholder="item.placeholder"
- />
- <t-button
- v-else-if="item.type === 'code'"
- shape="square"
- variant="outline"
- style="width: 24px"
- @click="showPropsEdit(item)"
- >
- <t-icon name="ellipsis" slot="icon"
- /></t-button>
- <t-slider
- v-else-if="item.type === 'slider'"
- v-model="data.pen[item.key]"
- :min="0"
- :max="1"
- :step="0.01"
- @change="changeValue(item.key)"
- />
- <t-switch
- v-else-if="item.type === 'switch'"
- v-model="data.pen[item.key]"
- @change="changeValue(item.key)"
- />
- <t-input
- class="w-full"
- v-else
- v-model="data.pen[item.key]"
- @change="changeValue(item.key)"
- :placeholder="item.placeholder"
- />
- </div>
- </t-space>
- </t-collapse-panel> -->
- </t-collapse>
- <t-divider style="margin: -8px 0" />
- <div class="form-item px-16" style="margin-top: -12px">
- <t-checkbox
- v-model="data.pen.flipX"
- @change="changeValue('flipX')"
- style="width: 90px"
- >
- 水平翻转
- </t-checkbox>
- <t-checkbox
- v-model="data.pen.flipY"
- @change="changeValue('flipY')"
- style="width: 90px"
- >
- 垂直翻转
- </t-checkbox>
- <label style="width: 50px">锚点半径</label>
- <input
- class="ml-4"
- v-model.number="data.pen.anchorRadius"
- style="width: 20px"
- @change="changeValue('anchorRadius')"
- placeholder="4"
- />
- </div>
- <t-divider style="margin: -8px 0" />
- <div class="form-item px-16" style="margin-top: -12px">
- <t-checkbox
- v-model="data.pen.disableRotate"
- @change="changeValue('disableRotate')"
- style="width: 90px"
- >
- 禁止旋转
- </t-checkbox>
- <t-checkbox
- v-model="data.pen.disableSize"
- @change="changeValue('disableSize')"
- style="width: 90px"
- >
- 禁止缩放
- </t-checkbox>
- <t-checkbox
- v-model="data.pen.disableAnchor"
- @change="changeValue('disableAnchor')"
- style="width: 90px"
- >
- 禁用锚点
- </t-checkbox>
- </div>
- <t-divider style="margin: -8px 0" />
- <div class="form-item px-16" style="margin-top: -12px">
- <label style="width: 60px">鼠标提示</label>
- <t-button
- shape="square"
- variant="outline"
- style="width: 24px"
- @click="showTooltip"
- >
- <t-icon name="ellipsis" slot="icon"
- /></t-button>
- </div>
- <t-dialog
- v-if="tooltipDialog.show"
- :visible="true"
- header="鼠标提示"
- @confirm="onOkTooltip"
- @close="tooltipDialog.show = false"
- :width="700"
- >
- <t-radio-group v-model="tooltipDialog.type">
- <t-radio value="1">文字</t-radio>
- <t-radio value="2">函数</t-radio>
- </t-radio-group>
- <div class="py-8">
- <CodeEditor
- v-show="tooltipDialog.type == 1"
- v-model="tooltipDialog.title"
- style="height: 300px"
- />
- <div v-show="tooltipDialog.type == 2">
- <div>function tooltip(pen) {</div>
- <CodeEditor
- v-model="tooltipDialog.titleFnJs"
- class="mt-4"
- style="height: 248px"
- />
- <div class="mt-4">}</div>
- </div>
- </div>
- <div class="gray" style="font-size: 12px">支持Markdown格式</div>
- </t-dialog>
- <t-dialog
- v-if="propsDialog.show"
- :visible="true"
- :header="propsDialog.header"
- @confirm="onOkPropsEdit"
- @close="propsDialog.show = false"
- :width="700"
- >
- <div class="py-8">
- <CodeEditor
- :json="true"
- :language="'json'"
- v-model="propsDialog.value"
- style="height: 300px"
- />
- </div>
- <div class="gray" style="font-size: 12px">
- {{ propsDialog.placeholder }}
- </div>
- </t-dialog>
- <t-space />
- </t-space>
- </t-tab-panel>
- <t-tab-panel :value="2" label="动画">
- <PenAnimates :pen="data.pen" />
- </t-tab-panel>
- <t-tab-panel :value="3" label="数据">
- <PenDatas :pen="data.pen" />
- </t-tab-panel>
- <t-tab-panel :value="4" label="交互">
- <PenEvents :key="data.key" :pen="data.pen" />
- </t-tab-panel>
- <t-tab-panel :value="5" label="结构">
- <ElementTree />
- </t-tab-panel>
- </t-tabs>
- </div>
- </template>
- <script lang="ts" setup>
- import { onBeforeMount, onUnmounted, reactive, ref, watch } from 'vue';
- import CodeEditor from './common/CodeEditor.vue';
- import Iconfonts from './common/Iconfonts.vue';
- import PenAnimates from './PenAnimates.vue';
- import PenDatas from './PenDatas.vue';
- import PenEvents from './PenEvents.vue';
- import ElementTree from './ElementTree.vue';
- import { getCookie } from '@/services/cookie';
- import { useSelection } from '@/services/selections';
- import { autoSave, fonts, inTreePanel } from '@/services/common';
- import { updatePen } from './pen';
- import { MessagePlugin } from 'tdesign-vue-next';
- import { useUser } from '@/services/user';
- import { getter, queryURLParams } from '@meta2d/core';
- import { defaultGradientColor, defaultPureColor } from '@/services/defaults';
- import { getLe5le3d, getLe5leV, getLe5le2d } from '@/services/api';
- import { s8 } from '@/services/random';
- const { user } = useUser();
- const headers = {
- Authorization: 'Bearer ' + (localStorage.token || getCookie('token') || ''),
- };
- const updataData = { directory: '/大屏/图片/默认' };
- const uploadRef = ref();
- const data = reactive<any>({
- tab: 1,
- pen: {},
- rect: {},
- key: s8(),
- });
- const { selections } = useSelection();
- const tooltipDialog = reactive<any>({
- show: false,
- });
- const propsDialog = reactive<any>({
- show: false,
- });
- const iconsDrawer = reactive<any>({
- show: false,
- });
- const aligns = [
- {
- value: 'left',
- label: '左对齐',
- icon: '#l-align-left',
- },
- {
- value: 'center',
- label: '垂直居中对齐',
- icon: '#l-align-center',
- },
- {
- value: 'right',
- label: '右对齐',
- icon: '#l-align-right',
- },
- {
- value: 'top',
- label: '顶部对齐',
- icon: '#l-align-top',
- },
- {
- value: 'middle',
- label: '水平居中对齐',
- icon: '#l-align-middle',
- },
- {
- value: 'bottom',
- label: '底部对齐',
- icon: '#l-align-bottom',
- },
- ];
- const align = (align: string) => {
- meta2d.alignNodesV(align, meta2d.store.active);
- getRect();
- meta2d.render();
- };
- onBeforeMount(() => {
- if (inTreePanel.value) {
- data.tab = 5;
- }
- const d = meta2d.store.data as any;
- if (!d.groups) {
- d.groups = [];
- }
- if (!d.iconUrls) {
- d.iconUrls = [];
- }
- data.iconUrls = d.iconUrls;
- data.groups = d.groups;
- initPenData();
- meta2d.on('translatePens', getRect);
- meta2d.on('resizePens', getRect);
- meta2d.on('rotatePens', getRect);
- });
- function initPenData() {
- data.key = s8(); //触发更新
- data.pen = selections.pen;
- if (!data.pen.props) {
- data.pen.props = {};
- }
- if (!data.pen.globalAlpha && data.pen.globalAlpha !== 0) {
- data.pen.globalAlpha = 1;
- }
- if (!data.pen.dash) {
- data.pen.dash = 0;
- }
- if (!data.pen.props.text) {
- if (data.pen.text || data.pen.name === 'text') {
- data.pen.props.text = true;
- }
- }
- if (!data.pen.props.image) {
- if (data.pen.image) {
- data.pen.props.image = true;
- }
- }
- if (!data.pen.props.icon) {
- if (data.pen.icon) {
- data.pen.props.icon = true;
- }
- }
- if (data.pen.image) {
- data.images = [
- {
- url: data.pen.image,
- },
- ];
- }
- if (!data.pen.tags) {
- data.pen.tags = [];
- }
- if (data.pen.bkType == undefined) {
- data.pen.bkType = 0;
- }
- if (data.pen.textType == undefined) {
- data.pen.textType = 0;
- }
- if (!data.pen.animations) {
- data.pen.animations = [];
- }
- if (!data.pen.whiteSpace) {
- data.pen.whiteSpace = 'nowrap';
- }
- if (data.pen.ellipsis == undefined) {
- data.pen.ellipsis = false;
- }
- data.pen.shadow = !!data.pen.shadowColor;
- getRect();
- }
- const watcher = watch(() => selections.pen.id, initPenData);
- const getRect = () => {
- data.rect = meta2d.getPenRect(data.pen);
- };
- const decimalPlaces = (val: number) => {
- if (!val) {
- return 0;
- }
- return Math.round(+val * 100) / 100;
- };
- const decimalRound = (val: number) => {
- return Math.round(+val || 0);
- };
- const changeValue = (prop: string) => {
- updatePen(data.pen, prop);
- selections.pen[prop] = getter(data.pen, prop);
- if (prop === 'iframe') {
- getThumbImg();
- }
- };
- const getThumbImg = async () => {
- //改iframe地址后
- let arr = data.pen.iframe.split('?');
- let id = queryURLParams(arr[1]).id;
- if (!id) {
- return;
- }
- let projection = {
- image: 1,
- _id: 1,
- name: 1,
- };
- let res: any;
- if (arr[0].indexOf('2d.le5le') !== -1) {
- res = await getLe5le2d(id, projection);
- } else if (arr[0].indexOf('v.le5le') !== -1) {
- res = await getLe5leV(id, projection);
- } else if (arr[0].indexOf('3d.le5le') !== -1) {
- res = await getLe5le3d(id, projection);
- }
- if (res) {
- data.pen.thumbImg = res.image;
- }
- data.pen.onRenderPenRaw?.(data.pen);
- };
- const changeID = (value: any) => {
- if (!value) {
- initPenData();
- MessagePlugin.error('id 不能为空');
- return;
- }
- const oldID: string = data.pen.id;
- try {
- meta2d.changePenId(oldID, value);
- initPenData();
- } catch (error) {
- console.warn(error.message);
- MessagePlugin.error('id 修改失败,请检查 id 是否重复');
- return;
- }
- };
- const changeRectValue = (prop: string) => {
- data.rect.id = data.pen.id;
- data.rect.ratio = data.pen.ratio;
- updatePen(data.rect, prop);
- };
- const onFontPopupVisible = (val: boolean) => {
- data.fontFamilyPopupVisible = val;
- };
- const onFontFamily = (fontFamily: string) => {
- data.pen.fontFamily = fontFamily;
- data.fontFamilyPopupVisible = false;
- changeValue('fontFamily');
- };
- const beforeUpload = (file: any) => {
- // if (file.size > 5 * 1024 * 1024) {
- // MessagePlugin.warning('上传的图片不能大于5M');
- // return false;
- // }
- if (!(user && user.id)) {
- MessagePlugin.warning('请先登录!');
- return false;
- }
- return true;
- };
- const fileSuccessed = async (content: any) => {
- // meta2d.store.patchFlagsBackground = true;
- // meta2d.setBackgroundImage(content.response.url);
- // meta2d.store.patchFlagsBackground = true;
- data.pen.image = content.response.url || `/file${content.response.filename}`;
- updatePen(data.pen, 'image');
- meta2d.render();
- };
- const fileRemoved = () => {
- // meta2d.setBackgroundImage('');
- // meta2d.store.patchFlagsBackground = true;
- data.pen.image = '';
- updatePen(data.pen, 'image');
- meta2d.render();
- // data.background = [];
- };
- const upload = () => {
- uploadRef.value.triggerUpload();
- };
- const onSelectTag = (tag: string) => {
- data.tagPopupVisible = false;
- if (data.pen.tags.includes(tag)) {
- return;
- }
- data.pen.tags.push(tag);
- changeValue('tags');
- };
- const onChangeInputTag = (currentTags: any, context: any) => {
- const { trigger, index, item } = context;
- if (['tag-remove', 'backspace'].includes(trigger)) {
- data.pen.tags.splice(index, 1);
- }
- if (trigger === 'enter') {
- onSelectTag(item);
- const d = meta2d.store.data as any;
- if (!d.groups.includes(item)) {
- d.groups.push(item);
- data.groups = d.groups;
- }
- data.inputTag = '';
- }
- data.tagPopupVisible = false;
- };
- const showTooltip = () => {
- tooltipDialog.title = data.pen.title || '';
- tooltipDialog.titleFnJs =
- data.pen.titleFnJs || '// 例如:return `${pen.name}<br/>${pen.text}`;';
- tooltipDialog.type = data.pen.titleFnJs ? '2' : '1';
- tooltipDialog.show = true;
- };
- const onOkTooltip = () => {
- if (tooltipDialog.type === '1') {
- data.pen.title = tooltipDialog.title;
- data.pen.titleFnJs = '';
- data.pen.titleFn = null;
- } else {
- data.pen.title = '';
- data.pen.titleFnJs = tooltipDialog.titleFnJs;
- }
- tooltipDialog.show = false;
- };
- const showPropsEdit = (item: any) => {
- propsDialog.key = item.key;
- propsDialog.header = `${item.label}(${item.key})`;
- propsDialog.value = data.pen[item.key];
- propsDialog.placeholder = item.placeholder;
- propsDialog.show = true;
- };
- const onOkPropsEdit = () => {
- if (!propsDialog.value) {
- MessagePlugin.error('数据不满足json格式');
- return;
- }
- data.pen[propsDialog.key] = propsDialog.value;
- updatePen(data.pen, propsDialog.key);
- propsDialog.show = false;
- };
- const onChangeIcon = (params: any) => {
- Object.assign(data.pen, params);
- meta2d.setValue({
- id: data.pen.id,
- icon: params.icon,
- iconFamily: params.iconFamily,
- });
- autoSave(true);
- };
- onUnmounted(() => {
- watcher();
- meta2d.off('translatePens', getRect);
- meta2d.off('resizePens', getRect);
- meta2d.off('rotatePens', getRect);
- });
- </script>
- <style lang="postcss" scoped>
- .props {
- .icons {
- display: flex;
- svg:hover {
- cursor: pointer;
- color: var(--color-primary);
- }
- .btn {
- font-size: 16px;
- margin-right: 16px;
- color: var(--color);
- }
- }
- }
- </style>
|