|
@@ -1,7 +1,7 @@
|
|
|
import { css, cx } from "@linaria/core";
|
|
|
import { IconClose } from "@queenjs/icons";
|
|
|
import { defineComponent } from "vue";
|
|
|
-import { any, array, bool, number, string } from "vue-types";
|
|
|
+import { any, array, bool, number } from "vue-types";
|
|
|
|
|
|
// radial-gradient(circle at 50% 50%, rgb(255, 255, 255), rgb(0, 253, 3) 100%);
|
|
|
// radial-gradient(red 10px, yellow 30%, #1e90ff 50%);
|
|
@@ -13,6 +13,16 @@ export type gradientColorType = {
|
|
|
colors: string[];
|
|
|
};
|
|
|
|
|
|
+export function getColorCover(item: string | gradientColorType) {
|
|
|
+ if (typeof item == "string") {
|
|
|
+ return item;
|
|
|
+ } else if (item.type == "radial") {
|
|
|
+ return `radial-gradient( ${item.colors.join(",")}`;
|
|
|
+ } else if (item.type == "linear") {
|
|
|
+ return `linear-gradient(${item.deg}deg, ${item.colors[0]} 0%, ${item.colors[0]} 50%,${item.colors[1]} 50%,${item.colors[1]})`;
|
|
|
+ } else return "#ffffff";
|
|
|
+}
|
|
|
+
|
|
|
export function formatColor(item: string | gradientColorType) {
|
|
|
if (typeof item == "string") {
|
|
|
return item;
|
|
@@ -38,14 +48,19 @@ export default defineComponent({
|
|
|
const list = props.data;
|
|
|
const propsColor = formatColor(value);
|
|
|
return (
|
|
|
- <div class={cx("grid gap-16px", `grid-cols-${columns}`)}>
|
|
|
+ <div
|
|
|
+ class="grid gap-16px"
|
|
|
+ style={{
|
|
|
+ gridTemplateColumns: `repeat(${columns}, 1fr)`,
|
|
|
+ }}
|
|
|
+ >
|
|
|
{list.map((item: string | gradientColorType, index: number) => {
|
|
|
const thisColor = formatColor(item);
|
|
|
const active = thisColor === propsColor ? true : false;
|
|
|
return (
|
|
|
<ColorItem
|
|
|
key={index}
|
|
|
- color={thisColor}
|
|
|
+ color={item}
|
|
|
columns={columns}
|
|
|
active={active}
|
|
|
onDelete={() => emit("delete", index)}
|
|
@@ -62,7 +77,7 @@ export default defineComponent({
|
|
|
|
|
|
export const ColorItem = defineComponent({
|
|
|
props: {
|
|
|
- color: string(),
|
|
|
+ color: any<string | gradientColorType>().isRequired,
|
|
|
active: bool(),
|
|
|
columns: number().def(5),
|
|
|
showDelete: bool().def(false),
|
|
@@ -70,20 +85,46 @@ export const ColorItem = defineComponent({
|
|
|
},
|
|
|
emits: ["change", "delete"],
|
|
|
setup(props, { emit }) {
|
|
|
+ function getItemsBg() {
|
|
|
+ const { columns } = props;
|
|
|
+ switch (columns) {
|
|
|
+ case 4:
|
|
|
+ case 5:
|
|
|
+ return formatColor(props.color);
|
|
|
+ case 7:
|
|
|
+ return getColorCover(props.color);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ function getItemsSize() {
|
|
|
+ const { columns } = props;
|
|
|
+
|
|
|
+ switch (columns) {
|
|
|
+ case 4:
|
|
|
+ return "w-52px h-38px";
|
|
|
+ case 5:
|
|
|
+ return "w-38px h-38px";
|
|
|
+ case 7:
|
|
|
+ return "w-24px h-24px";
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
return () => {
|
|
|
- const { active, color, columns, showDelete } = props;
|
|
|
+ const { active, color, showDelete } = props;
|
|
|
+ const size = getItemsSize();
|
|
|
+ const bg = getItemsBg();
|
|
|
return (
|
|
|
<div class="relative group">
|
|
|
<div
|
|
|
class={cx(
|
|
|
- "h-38px rounded-2px cursor-pointer overflow-hidden",
|
|
|
+ "rounded-2px cursor-pointer overflow-hidden",
|
|
|
itemStyles,
|
|
|
active && "active",
|
|
|
- columns == 4 ? "w-52px" : "w-38px"
|
|
|
+ size
|
|
|
)}
|
|
|
onClick={() => emit("change")}
|
|
|
>
|
|
|
- <div class="h-full w-full" style={{ background: color }}></div>
|
|
|
+ <div class="h-full w-full" style={{ background: bg }}></div>
|
|
|
</div>
|
|
|
{showDelete && (
|
|
|
<IconClose
|