|
@@ -1,74 +1,66 @@
|
|
|
+import { cx } from "@linaria/core";
|
|
|
import { Divider } from "ant-design-vue";
|
|
|
import { defineComponent, onMounted, reactive } from "vue";
|
|
|
import { any, bool } from "vue-types";
|
|
|
import ColorList, { gradientColorType } from "./ColorList";
|
|
|
|
|
|
const pureColors = [
|
|
|
- "#111111",
|
|
|
- "#545454",
|
|
|
- "#737373",
|
|
|
- "#A6A6A6",
|
|
|
"#FFFFFF",
|
|
|
- "#EC635D",
|
|
|
- "#F5BF6A",
|
|
|
- "#93D668",
|
|
|
- "#5970F6",
|
|
|
- "#8354F5",
|
|
|
+ "#D5D5D5",
|
|
|
+ "#929292",
|
|
|
+ "#5E5E5E",
|
|
|
+ "#333333",
|
|
|
+ "#222222",
|
|
|
+ "#000000",
|
|
|
+ "#47A2F8",
|
|
|
+ "#6BE3CF",
|
|
|
+ "#81D453",
|
|
|
+ "#F9D958",
|
|
|
+ "#ED6D57",
|
|
|
+ "#EB559F",
|
|
|
+ "#A055EB",
|
|
|
];
|
|
|
|
|
|
const gradientColors: gradientColorType[] = [
|
|
|
{
|
|
|
deg: 90,
|
|
|
type: "linear",
|
|
|
- colors: ["#212121", "#656565"],
|
|
|
+ colors: ["#47A2F8", "#73C0F9"],
|
|
|
},
|
|
|
{
|
|
|
deg: 90,
|
|
|
type: "linear",
|
|
|
- colors: ["#AEAEAE", "#F0F0F0"],
|
|
|
+ colors: ["#6BE3CF", "#98F9EA"],
|
|
|
},
|
|
|
{
|
|
|
deg: 90,
|
|
|
type: "linear",
|
|
|
- colors: ["#FCEFBB", "#F4B8EA"],
|
|
|
+ colors: ["#81D453", "#A4F56A"],
|
|
|
},
|
|
|
{
|
|
|
deg: 90,
|
|
|
type: "linear",
|
|
|
- colors: ["#CCF1E0", "#A5C3F4"],
|
|
|
+ colors: ["#F9D958", "#FDE582"],
|
|
|
},
|
|
|
{
|
|
|
deg: 90,
|
|
|
type: "linear",
|
|
|
- colors: ["#EB995A", "#F8D86E"],
|
|
|
+ colors: ["#ED6D57", "#F19B91"],
|
|
|
},
|
|
|
{
|
|
|
deg: 90,
|
|
|
type: "linear",
|
|
|
- colors: ["#EB4F40", "#EF8E58"],
|
|
|
+ colors: ["#EB559F", "#F19BC8"],
|
|
|
},
|
|
|
{
|
|
|
deg: 90,
|
|
|
type: "linear",
|
|
|
- colors: ["#85C6BD", "#F0DD75"],
|
|
|
- },
|
|
|
- {
|
|
|
- deg: 90,
|
|
|
- type: "linear",
|
|
|
- colors: ["#8367F3", "#82CFE6"],
|
|
|
- },
|
|
|
- {
|
|
|
- deg: 90,
|
|
|
- type: "linear",
|
|
|
- colors: ["#ED7FB1", "#F8D378"],
|
|
|
- },
|
|
|
- {
|
|
|
- deg: 90,
|
|
|
- type: "linear",
|
|
|
- colors: ["#935EDF", "#E69069"],
|
|
|
+ colors: ["#A055EB", "#C99BF1"],
|
|
|
},
|
|
|
];
|
|
|
|
|
|
+const tabs = ["近期使用", "色彩库"];
|
|
|
+
|
|
|
export default defineComponent({
|
|
|
props: {
|
|
|
value: any<string | gradientColorType>().isRequired,
|
|
@@ -78,6 +70,7 @@ export default defineComponent({
|
|
|
setup(props, { emit }) {
|
|
|
const state = reactive({
|
|
|
latestColors: [],
|
|
|
+ activeKey: 0,
|
|
|
}) as any;
|
|
|
|
|
|
const selectColor = (data: any) => {
|
|
@@ -90,7 +83,7 @@ export default defineComponent({
|
|
|
if (!props.showGradient) {
|
|
|
colors = colors.filter((d: any) => typeof d == "string");
|
|
|
}
|
|
|
- colors.splice(10);
|
|
|
+ colors.splice(14);
|
|
|
state.latestColors = colors;
|
|
|
});
|
|
|
|
|
@@ -98,32 +91,45 @@ export default defineComponent({
|
|
|
const { showGradient } = props;
|
|
|
return (
|
|
|
<div class="w-280px px-5px py-10px rounded">
|
|
|
- <div class="flex items-center justify-between">
|
|
|
- <span class="text-16px">色彩库</span>
|
|
|
- {/* <IconClose class="text-18px" /> */}
|
|
|
- </div>
|
|
|
- <div class="mt-15px mb-10px">近期使用</div>
|
|
|
- <ColorList
|
|
|
- value={props.value}
|
|
|
- data={state.latestColors}
|
|
|
- onChange={(data) => emit("change", data)}
|
|
|
- />
|
|
|
<Divider />
|
|
|
- <div class="mb-10px">纯色库</div>
|
|
|
- <ColorList
|
|
|
- value={props.value}
|
|
|
- data={pureColors}
|
|
|
- onChange={selectColor}
|
|
|
- />
|
|
|
- {showGradient && (
|
|
|
+ <div class="mb-15px space-x-15px">
|
|
|
+ {tabs.map((d, i) => (
|
|
|
+ <span
|
|
|
+ key={i}
|
|
|
+ onClick={() => (state.activeKey = i)}
|
|
|
+ class={cx(
|
|
|
+ "mt-15px mb-10px hover:opacity-80 transition cursor-pointer",
|
|
|
+ state.activeKey == i ? "text-light-50" : "text-gray"
|
|
|
+ )}
|
|
|
+ >
|
|
|
+ {d}
|
|
|
+ </span>
|
|
|
+ ))}
|
|
|
+ </div>
|
|
|
+ {state.activeKey == 0 ? (
|
|
|
+ <ColorList
|
|
|
+ columns={7}
|
|
|
+ value={props.value}
|
|
|
+ data={state.latestColors}
|
|
|
+ onChange={(data) => emit("change", data)}
|
|
|
+ />
|
|
|
+ ) : (
|
|
|
<>
|
|
|
- <Divider />
|
|
|
- <div class="mb-10px">渐变</div>
|
|
|
<ColorList
|
|
|
+ columns={7}
|
|
|
value={props.value}
|
|
|
- data={gradientColors}
|
|
|
+ data={pureColors}
|
|
|
onChange={selectColor}
|
|
|
/>
|
|
|
+ {showGradient && (
|
|
|
+ <ColorList
|
|
|
+ columns={7}
|
|
|
+ class="mt-16px"
|
|
|
+ value={props.value}
|
|
|
+ data={gradientColors}
|
|
|
+ onChange={selectColor}
|
|
|
+ />
|
|
|
+ )}
|
|
|
</>
|
|
|
)}
|
|
|
</div>
|