wangzhibo
2026-07-16 b57020623cf0c946706573bf102e548c3a544423
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import { isArray, isEmpty, isFunction, isObject, isString } from "lodash-es";
 
export const format: { [key: string]: ClForm.Hook["Fn"] } = {
    number(value) {
        return value ? (isArray(value) ? value.map(Number) : Number(value)) : value;
    },
    string(value) {
        return value ? (isArray(value) ? value.map(String) : String(value)) : value;
    },
    split(value) {
        if (isString(value)) {
            return value.split(",").filter(Boolean);
        } else if (isArray(value)) {
            return value;
        } else {
            return [];
        }
    },
    join(value) {
        return isArray(value) ? value.join(",") : value;
    },
    boolean(value) {
        return Boolean(value);
    },
    booleanNumber(value) {
        return value ? 1 : 0;
    },
    datetimeRange(value, { form, method, prop }) {
        const key = prop.charAt(0).toUpperCase() + prop.slice(1);
 
        const start = `start${key}`;
        const end = `end${key}`;
 
        if (method == "bind") {
            return [form[start], form[end]];
        } else {
            const [startTime, endTime] = value || [];
            form[start] = startTime;
            form[end] = endTime;
            return undefined;
        }
    },
    splitJoin(value, { method }) {
        if (method == "bind") {
            return isString(value) ? value.split(",").filter(Boolean) : value;
        } else {
            return isArray(value) ? value.join(",") : value;
        }
    },
    json(value, { method }) {
        if (method == "bind") {
            try {
                return JSON.parse(value);
            } catch (e) {
                return {};
            }
        } else {
            return JSON.stringify(value);
        }
    },
    empty(value) {
        if (isString(value)) {
            return value === "" ? undefined : value;
        }
 
        if (isArray(value)) {
            return isEmpty(value) ? undefined : value;
        }
 
        return value;
    }
};
 
function init({ value, form, prop }: any) {
    if (prop) {
        const [a, b] = prop.split("-");
        if (b) {
            form[prop] = form[a] ? form[a][b] : form[a];
        } else {
            form[prop] = value;
        }
    }
}
 
function parse(method: "submit" | "bind", { value, hook: pipe, form, prop }: any) {
    init({ value, method, form, prop });
 
    if (!pipe) {
        return false;
    }
 
    let pipes: any[] = [];
 
    if (isString(pipe)) {
        if (format[pipe]) {
            pipes = [pipe];
        } else {
            console.error(`[hook] ${pipe} is not found`);
        }
    } else if (isArray(pipe)) {
        pipes = pipe;
    } else if (isObject(pipe)) {
        pipes = isArray(pipe[method]) ? pipe[method] : [pipe[method]];
    } else if (isFunction(pipe)) {
        pipes = [pipe];
    } else {
        console.error(`[hook] ${pipe} format error`);
    }
 
    let v = value;
 
    pipes.forEach((e) => {
        let f: any = null;
 
        if (isString(e)) {
            f = format[e];
        } else if (isFunction(e)) {
            f = e;
        }
 
        if (f) {
            v = f(v, {
                method,
                form,
                prop
            });
        }
    });
 
    if (prop) {
        form[prop] = v;
    }
}
 
const formHook = {
    bind(data: any) {
        parse("bind", data);
    },
 
    submit(data: any) {
        parse("submit", data);
    }
};
 
export function registerFormHook(name: string, fn: ClForm.Hook["Fn"]) {
    format[name] = fn;
}
 
export default formHook;