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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
use super::{ConfirmationDialog, Text};

impl ConfirmationDialog {
    /// Construct a [`ConfirmationDialogBuilder`].
    pub fn builder() -> ConfirmationDialogBuilder {
        ConfirmationDialogBuilder::default()
    }
}

/// Builder for [`ConfirmationDialog`] object.
#[derive(Debug, Default)]
pub struct ConfirmationDialogBuilder {
    title: Option<Text>,
    text: Option<Text>,
    confirm: Option<Text>,
    deny: Option<Text>,
    style: Option<&'static str>,
}

impl ConfirmationDialogBuilder {
    /// Set title field.
    ///
    /// ```
    /// # use slack_messaging::composition_objects::ConfirmationDialog;
    /// use serde_json::Value;
    ///
    /// let dialog = ConfirmationDialog::builder()
    ///     .title("Are you sure?")
    ///     .text("")
    ///     .confirm("")
    ///     .deny("")
    ///     .build();
    ///
    /// let json = serde_json::to_value(dialog).unwrap();
    /// let expected = Value::String("Are you sure?".into());
    ///
    /// assert_eq!(json["title"]["text"], expected);
    /// ```
    pub fn title(self, title: impl Into<String>) -> Self {
        let text = Text::builder().plain_text(title).build();
        self.set_title(Some(text))
    }

    /// Set title field.
    ///
    /// ```
    /// # use slack_messaging::composition_objects::{ConfirmationDialog, Text};
    /// use serde_json::Value;
    ///
    /// let dialog = ConfirmationDialog::builder()
    ///     .set_title(
    ///         Some(Text::builder().plain_text("Are you sure?").build())
    ///     )
    ///     .text("")
    ///     .confirm("")
    ///     .deny("")
    ///     .build();
    ///
    /// let json = serde_json::to_value(dialog).unwrap();
    /// let expected = Value::String("Are you sure?".into());
    ///
    /// assert_eq!(json["title"]["text"], expected);
    /// ```
    pub fn set_title(self, title: Option<Text>) -> Self {
        Self { title, ..self }
    }

    /// Set text field.
    ///
    /// ```
    /// # use slack_messaging::composition_objects::ConfirmationDialog;
    /// use serde_json::Value;
    ///
    /// let dialog = ConfirmationDialog::builder()
    ///     .title("")
    ///     .text("Wouldn't you prefer a good game of _chess_?")
    ///     .confirm("")
    ///     .deny("")
    ///     .build();
    ///
    /// let json = serde_json::to_value(dialog).unwrap();
    /// let expected = Value::String("Wouldn't you prefer a good game of _chess_?".into());
    ///
    /// assert_eq!(json["text"]["text"], expected);
    /// ```
    pub fn text(self, text: impl Into<String>) -> Self {
        let text = Text::builder().plain_text(text).build();
        self.set_text(Some(text))
    }

    /// Set text field.
    ///
    /// ```
    /// # use slack_messaging::composition_objects::{ConfirmationDialog, Text};
    /// use serde_json::Value;
    ///
    /// let dialog = ConfirmationDialog::builder()
    ///     .title("")
    ///     .set_text(
    ///         Some(Text::builder()
    ///            .plain_text("Wouldn't you prefer a good game of _chess_?")
    ///            .build())
    ///     )
    ///     .confirm("")
    ///     .deny("")
    ///     .build();
    ///
    /// let json = serde_json::to_value(dialog).unwrap();
    /// let expected = Value::String("Wouldn't you prefer a good game of _chess_?".into());
    ///
    /// assert_eq!(json["text"]["text"], expected);
    /// ```
    pub fn set_text(self, text: Option<Text>) -> Self {
        Self { text, ..self }
    }

    /// Set confirm field.
    ///
    /// ```
    /// # use slack_messaging::composition_objects::ConfirmationDialog;
    /// use serde_json::Value;
    ///
    /// let dialog = ConfirmationDialog::builder()
    ///     .title("")
    ///     .text("")
    ///     .confirm("Do it")
    ///     .deny("")
    ///     .build();
    ///
    /// let json = serde_json::to_value(dialog).unwrap();
    /// let expected = Value::String("Do it".into());
    ///
    /// assert_eq!(json["confirm"]["text"], expected);
    /// ```
    pub fn confirm(self, confirm: impl Into<String>) -> Self {
        let text = Text::builder().plain_text(confirm).build();
        self.set_confirm(Some(text))
    }

    /// Set confirm field.
    ///
    /// ```
    /// # use slack_messaging::composition_objects::{ConfirmationDialog, Text};
    /// use serde_json::Value;
    ///
    /// let dialog = ConfirmationDialog::builder()
    ///     .title("")
    ///     .text("")
    ///     .set_confirm(Some(Text::builder().plain_text("Do it").build()))
    ///     .deny("")
    ///     .build();
    ///
    /// let json = serde_json::to_value(dialog).unwrap();
    /// let expected = Value::String("Do it".into());
    ///
    /// assert_eq!(json["confirm"]["text"], expected);
    /// ```
    pub fn set_confirm(self, confirm: Option<Text>) -> Self {
        Self { confirm, ..self }
    }

    /// Set deny field.
    ///
    /// ```
    /// # use slack_messaging::composition_objects::ConfirmationDialog;
    /// use serde_json::Value;
    ///
    /// let dialog = ConfirmationDialog::builder()
    ///     .title("")
    ///     .text("")
    ///     .confirm("")
    ///     .deny("Stop, I've changed my mind!")
    ///     .build();
    ///
    /// let json = serde_json::to_value(dialog).unwrap();
    /// let expected = Value::String("Stop, I've changed my mind!".into());
    ///
    /// assert_eq!(json["deny"]["text"], expected);
    /// ```
    pub fn deny(self, deny: impl Into<String>) -> Self {
        let text = Text::builder().plain_text(deny).build();
        self.set_deny(Some(text))
    }

    /// Set deny field.
    ///
    /// ```
    /// # use slack_messaging::composition_objects::{ConfirmationDialog, Text};
    /// use serde_json::Value;
    ///
    /// let dialog = ConfirmationDialog::builder()
    ///     .title("")
    ///     .text("")
    ///     .confirm("")
    ///     .set_deny(
    ///         Some(Text::builder().plain_text("Stop, I've changed my mind!").build())
    ///     )
    ///     .build();
    ///
    /// let json = serde_json::to_value(dialog).unwrap();
    /// let expected = Value::String("Stop, I've changed my mind!".into());
    ///
    /// assert_eq!(json["deny"]["text"], expected);
    /// ```
    pub fn set_deny(self, deny: Option<Text>) -> Self {
        Self { deny, ..self }
    }

    /// Set "primary" to style field.
    ///
    /// ```
    /// # use slack_messaging::composition_objects::ConfirmationDialog;
    /// use serde_json::Value;
    ///
    /// let dialog = ConfirmationDialog::builder()
    ///     .title("")
    ///     .text("")
    ///     .confirm("")
    ///     .deny("")
    ///     .primary()
    ///     .build();
    ///
    /// let json = serde_json::to_value(dialog).unwrap();
    /// let expected = Value::String("primary".into());
    ///
    /// assert_eq!(json["style"], expected);
    /// ```
    pub fn primary(self) -> Self {
        Self {
            style: Some("primary"),
            ..self
        }
    }

    /// Set "danger" to style field.
    ///
    /// ```
    /// # use slack_messaging::composition_objects::ConfirmationDialog;
    /// use serde_json::Value;
    ///
    /// let dialog = ConfirmationDialog::builder()
    ///     .title("")
    ///     .text("")
    ///     .confirm("")
    ///     .deny("")
    ///     .danger()
    ///     .build();
    ///
    /// let json = serde_json::to_value(dialog).unwrap();
    /// let expected = Value::String("danger".into());
    ///
    /// assert_eq!(json["style"], expected);
    /// ```
    pub fn danger(self) -> Self {
        Self {
            style: Some("danger"),
            ..self
        }
    }

    /// Build a [`ConfirmationDialog`] object. This method will panic if any of
    /// the `title`, `text`, `confirm` and `deny` is not set.
    pub fn build(self) -> ConfirmationDialog {
        ConfirmationDialog {
            title: self
                .title
                .expect("title must be set to ConfirmationDialogBuilder"),
            text: self
                .text
                .expect("text must be set to ConfirmationDialogBuilder"),
            confirm: self
                .confirm
                .expect("confirm must be set to ConfirmationDialogBuilder"),
            deny: self
                .deny
                .expect("deny must be set to ConfirmationDialogBuilder"),
            style: self.style,
        }
    }

    /// Get title value.
    pub fn get_title(&self) -> &Option<Text> {
        &self.title
    }

    /// Get text value.
    pub fn get_text(&self) -> &Option<Text> {
        &self.text
    }

    /// Get confirm value.
    pub fn get_confirm(&self) -> &Option<Text> {
        &self.confirm
    }

    /// Get deny value.
    pub fn get_deny(&self) -> &Option<Text> {
        &self.deny
    }

    /// Get style value.
    pub fn get_style(&self) -> &Option<&'static str> {
        &self.style
    }
}