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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
use crate::component::OnceBlock;
use crate::{BlockComponent, Document, IterBlockComponent, Node, Render};
use std::fmt;

/// Creates a `Render` that, when appended into a [`Document`], repeats
/// a given string a specified number of times.
pub fn repeat(item: impl fmt::Display, size: usize) -> impl Render {
    PadItem(item, size)
}

pub(crate) struct PadItem<T>(pub T, pub usize);

impl<T: fmt::Display> fmt::Display for PadItem<T> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        for _ in 0..(self.1) {
            self.0.fmt(f)?;
        }
        Ok(())
    }
}

/// A list of items that can be appended into a [`Document`]. For each item in
/// `items`, the callback is invoked, and its return value is appended to
/// the document.
///
/// # Example
///
/// ```
/// # use render_tree::{Document, Each, Line, Render, RenderComponent};
/// #
/// # fn main() -> Result<(), ::std::io::Error> {
/// struct Point(i32, i32);
///
/// let items = vec![Point(10, 20), Point(5, 10), Point(6, 42)];
///
/// let document = Document::with(Each(
///     &items,
///     |item, doc| doc.add(Line("Point(".add(item.0).add(",").add(item.1).add(")")))
/// ));
///
/// assert_eq!(document.to_string()?, "Point(10,20)\nPoint(5,10)\nPoint(6,42)\n");
/// #
/// # Ok(())
/// # }
/// ```
///
/// And with the [`tree!`] macro:
///
/// ```
/// # #[macro_use]
/// # extern crate render_tree;
/// # use render_tree::{Document, Each, Line, Render, RenderComponent};
/// # use render_tree::prelude::*;
/// #
/// # fn main() -> Result<(), ::std::io::Error> {
/// struct Point(i32, i32);
///
/// let items = vec![Point(10, 20), Point(5, 10), Point(6, 42)];
///
/// let document = tree! {
///     <Each items={items} as |item| {
///         <Line as {
///             "Point(" {item.0} "," {item.1} ")"
///         }>
///     }>
/// };
///
/// assert_eq!(document.to_string()?, "Point(10,20)\nPoint(5,10)\nPoint(6,42)\n");
/// #
/// # Ok(())
/// # }
/// ```

pub struct Each<U, Iterator: IntoIterator<Item = U>> {
    pub items: Iterator,
}

impl<U, Iterator: IntoIterator<Item = U>> IterBlockComponent for Each<U, Iterator> {
    type Item = U;

    fn append(
        self,
        mut block: impl FnMut(U, Document) -> Document,
        mut document: Document,
    ) -> Document {
        for item in self.items {
            document = block(item, document);
        }

        document
    }
}

// impl<'item, U, Iterator> IterBlockHelper for Each<U, Iterator>
// where
//     Iterator: IntoIterator<Item = U>,
// {
//     type Args = Iterator;
//     type Item = U;

//     fn args(items: Iterator) -> Each<U, Iterator> {
//         Each { items }
//     }

//     fn render(
//         self,
//         callback: impl Fn(Self::Item, Document) -> Document,
//         mut into: Document,
//     ) -> Document {
//         for item in self.items {
//             into = callback(item, into);
//         }

//         into
//     }
// }

impl<U, I: IntoIterator<Item = U>> From<I> for Each<U, I> {
    fn from(from: I) -> Each<U, I> {
        Each { items: from }
    }
}

#[allow(non_snake_case)]
pub fn Each<U, I: IntoIterator<Item = U>>(
    items: impl Into<Each<U, I>>,
    callback: impl Fn(U, Document) -> Document,
) -> impl Render {
    IterBlockComponent::with(items.into(), callback)
}

///

/// A section that can be appended into a document. Sections are invisible, but
/// can be targeted in stylesheets with selectors using their name.
pub struct Section {
    pub name: &'static str,
}

impl BlockComponent for Section {
    fn append(self, block: impl FnOnce(Document) -> Document, mut document: Document) -> Document {
        document = document.add(Node::OpenSection(self.name));
        document = block(document);
        document = document.add(Node::CloseSection);
        document
    }
}

#[allow(non_snake_case)]
pub fn Section(name: &'static str, block: impl FnOnce(Document) -> Document) -> Document {
    let document = Document::empty();
    Section { name }.append(block, document)
}

// impl OnceBlockHelper for Section {
//     type Args = Section;
//     type Item = ();

//     fn args(args: Section) -> Section {
//         args
//     }

//     fn render(
//         self,
//         callback: impl FnOnce((), Document) -> Document,
//         mut into: Document,
//     ) -> Document {
//         into = into.add_node(Node::OpenSection(self.name));
//         into = callback((), into);
//         into.add_node(Node::CloseSection)
//     }
// }

// impl From<&'static str> for Section {
//     fn from(from: &'static str) -> Section {
//         Section { name: from }
//     }
// }

// #[allow(non_snake_case)]
// pub fn Section(
//     section: impl Into<Section>,
//     block: impl FnOnce(Document) -> Document,
//     mut document: Document,
// ) -> Document {
//     let section = section.into();
//     document = document.add(Node::OpenSection(section.name));
//     document = block(document);
//     document = document.add(Node::CloseSection);
//     document
// }

///

/// Equivalent to [`Each()`], but inserts a joiner between two adjacent elements.
///
/// # Example
///
/// ```
/// # use render_tree::{Document, Join, Line, Render, RenderComponent};
/// #
/// # fn main() -> Result<(), ::std::io::Error> {
/// struct Point(i32, i32);
///
/// let items = vec![Point(10, 20), Point(5, 10), Point(6, 42)];
///
/// let document = Document::with(Join(
///     (&items, ", "),
///     |item, doc| doc.add("Point(").add(item.0).add(",").add(item.1).add(")")
/// ));
///
/// assert_eq!(document.to_string()?, "Point(10,20), Point(5,10), Point(6,42)");
///
/// # Ok(())
/// # }
/// ```
pub struct Join<U, Iterator: IntoIterator<Item = U>> {
    pub iterator: Iterator,
    pub joiner: &'static str,
}

impl<U, I: IntoIterator<Item = U>> From<(I, &'static str)> for Join<U, I> {
    fn from(from: (I, &'static str)) -> Join<U, I> {
        Join {
            iterator: from.0,
            joiner: from.1,
        }
    }
}

#[allow(non_snake_case)]
pub fn Join<U, F, Iterator>(join: impl Into<Join<U, Iterator>>, callback: F) -> impl Render
where
    F: Fn(U, Document) -> Document,
    Iterator: IntoIterator<Item = U>,
{
    IterBlockComponent::with(join.into(), callback)
}

impl<'item, U, Iterator> IterBlockComponent for Join<U, Iterator>
where
    Iterator: IntoIterator<Item = U>,
{
    type Item = U;

    fn append(
        self,
        mut block: impl FnMut(Self::Item, Document) -> Document,
        mut into: Document,
    ) -> Document {
        let mut is_first = true;

        for item in self.iterator {
            if is_first {
                is_first = false;
            } else {
                into = into.add(self.joiner);
            }

            into = block(item, into);
        }

        into
    }
}

/// Inserts a line into a [`Document`]. The contents are inserted first, followed
/// by a newline.
#[allow(non_snake_case)]
pub fn Line(item: impl Render) -> impl Render {
    OnceBlock(|document| item.render(document).add_node(Node::Newline))
}

#[cfg(test)]
mod tests {
    use crate::helpers::*;

    #[test]
    fn test_each() -> ::std::io::Result<()> {
        struct Point(i32, i32);

        let items = &vec![Point(10, 20), Point(5, 10), Point(6, 42)][..];

        let document = tree! {
            <Each items={items} as |item| {
                <Line as {
                    "Point(" {item.0} "," {item.1} ")"
                }>
            }>
        };

        assert_eq!(
            document.to_string()?,
            "Point(10,20)\nPoint(5,10)\nPoint(6,42)\n"
        );

        Ok(())
    }

    #[test]
    fn test_join() -> ::std::io::Result<()> {
        struct Point(i32, i32);

        let items = &vec![Point(10, 20), Point(5, 10), Point(6, 42)][..];

        let document = tree! {
            <Join iterator={items} joiner={"\n"} as |item| {
                "Point(" {item.0} "," {item.1} ")"
            }>
        };

        assert_eq!(
            document.to_string()?,
            "Point(10,20)\nPoint(5,10)\nPoint(6,42)"
        );

        Ok(())
    }
}