This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
/
utils.js
87 lines (78 loc) · 1.65 KB
/
utils.js
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
import React from 'react';
import {Tooltip, Icon} from 'antd';
import TableSelectColumn from "../components/columns/select";
export const galleryValidation = {
validator: (content, reject) => {
if (content.length === 0) {
return reject("should at least have one photo");
}
}
};
export function renderBuyer(buyerName, record) {
const title = (
<div>
<div>Email: {record.buyerEmail}</div>
<div>Phone: {record.buyerPhone}</div>
</div>
)
return (
<Tooltip title={title}>
{buyerName}
</Tooltip>
)
}
export const renderSelect = (options, keyName) => (value, record, cannerProps) => (
<TableSelectColumn
value={value}
options={options}
dataKeyRefId={cannerProps.refId.child(`${record.__index}/${keyName}`)}
cannerProps={cannerProps}
/>
)
export const renderOrderSelect = renderSelect([
{
value: "new",
title: "New order",
color: "red"
},
{
value: "old",
title: "Old order",
color: "green"
}
], 'orderStatus');
export const renderPaySelect = renderSelect([
{
value: "not",
title: "Not paid",
color: "red"
},
{
value: "paid",
title: "Paid",
color: "green"
}
], 'payStatus');
export const renderShipSelect = renderSelect([
{
value: "not",
title: "Unshipped",
color: "red"
},
{
value: "shipping",
title: "Shipping",
color: "orange"
},
{
value: "delivered",
title: "Delivered",
color: "green"
}
], 'shipStatus');
export const visitorIcon = (
<Icon type="user" theme="outlined" style={{color: "#e3f7ff"}} />
);
export const orderIcon = (
<Icon type="dollar" theme="twoTone" />
)