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
use json::{JsonValue, object};
use crate::Field;

/// 字典字段
///
/// * field 字段名
/// * mode 模式 string
/// * title 字段描述
/// * length 字段总长度(含小数位)
/// * default 默认值
/// * empty 是否可空
/// * dec 小数位
pub struct Dict {
    pub require: bool,
    pub field: String,
    pub mode: String,
    pub title: String,
    pub table: String,
    pub fields: String,
    pub api: String,
    pub def: String,
    pub show: bool,
    pub describe: String,
    pub multiple: bool,
    pub multiple_count: i32,
}

impl Dict {
    pub fn new(require: bool, field: &str, title: &str, table: &str, fields: &str, api: &str) -> Self {
        Self {
            require,
            field: field.to_string(),
            mode: "dict".to_string(),
            title: title.to_string(),
            table: table.to_string(),
            api: api.to_string(),
            show: true,
            fields: fields.to_string(),
            describe: "".to_string(),
            def: "".to_string(),
            multiple: false,
            multiple_count: 1,
        }
    }
    /// 多选数量
    pub fn multiple(&mut self, count: i32) -> &mut Dict {
        if count > 1 {
            self.multiple = true;
        } else {
            self.multiple = false;
        }
        self.multiple_count = count;
        self
    }
}

impl Field for Dict {
    fn sql(&mut self, model: &str) -> String {
        match model {
            "sqlite" => {
                format!("{} text  default ''", self.field)
            }
            _ => {
                let sql = format!("{} varchar({})   default ''", self.field, {
                    if self.multiple {
                        64 * self.multiple_count + self.multiple_count
                    } else {
                        64
                    }
                });
                format!("{} comment '{}|{}|{}|{}|{}'", sql.clone(), self.mode, self.title, self.require, self.multiple, self.multiple_count)
            }
        }
    }
    fn field(&mut self) -> JsonValue {
        let mut field = object! {};
        field.insert("require", JsonValue::from(self.require.clone())).unwrap();
        field.insert("field", JsonValue::from(self.field.clone())).unwrap();
        field.insert("mode", JsonValue::from(self.mode.clone())).unwrap();
        field.insert("title", JsonValue::from(self.title.clone())).unwrap();
        field.insert("table", JsonValue::from(self.table.clone())).unwrap();
        field.insert("api", JsonValue::from(self.api.clone())).unwrap();
        field.insert("fields", JsonValue::from(self.fields.clone())).unwrap();
        field.insert("def", JsonValue::from(self.def.clone())).unwrap();
        field.insert("multiple", JsonValue::from(self.multiple.clone())).unwrap();
        field.insert("multiple_count", JsonValue::from(self.multiple_count.clone())).unwrap();

        field.insert("show", JsonValue::from(self.show.clone())).unwrap();
        field.insert("describe", JsonValue::from(self.describe.clone())).unwrap();
        field
    }

    fn hide(&mut self) -> &mut Self {
        self.show = false;
        self
    }

    fn describe(&mut self, text: &str) -> &mut Self {
        self.describe = text.to_string();
        self
    }
}