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
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;

use serde_json::Value;
use std::collections::HashMap;

/// Wrapper to manipulate Delta easily
/// ```
/// extern crate quill_delta;
/// use quill_delta::*;
///
/// let delta = Delta::new()
///     .retain(2, none())
///     .insert("Hallo Welt", none());
///
/// let delta: Delta = vec![
///     retain(2),
///     insert("Hallo Welt")
/// ].into();
///
/// ```
// https://github.com/maximkornilov/types-quill-delta/blob/master/index.d.ts
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Delta {
    #[serde(flatten)]
    pub ops: Vec<DeltaOperation>,
}

pub fn none() -> Attributes {
    HashMap::new()
}

impl Delta {
    pub fn new() -> Self {
        Delta { ops: Vec::new() }
    }

    pub fn insert<S: Into<String>>(mut self, text: S, attributes: Attributes) -> Self {
        self
    }

    pub fn delete(mut self, length: usize) -> Self {
        self
    }

    pub fn retain(mut self, length: usize, attributes: Attributes) -> Self {
        self
    }

    pub fn push(mut self, op: DeltaOperation) -> Self {
        self
    }

    pub fn chop(mut self) {}
}

impl std::ops::Deref for Delta {
    type Target = Vec<DeltaOperation>;

    fn deref(&self) -> &Self::Target {
        &self.ops
    }
}

impl std::ops::DerefMut for Delta {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.ops
    }
}

impl From<Vec<DeltaOperation>> for Delta {
    fn from(ops: Vec<DeltaOperation>) -> Delta {
        Delta { ops }
    }
}

impl std::iter::FromIterator<DeltaOperation> for Delta {
    fn from_iter<T>(iter: T) -> Self
    where
        T: IntoIterator<Item = DeltaOperation>,
    {
        let res: Vec<_> = iter.into_iter().collect();
        res.into()
    }
}

type Attributes = HashMap<String, Value>;

#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct DeltaOperation {
    #[serde(flatten)]
    pub kind: OpKind,
    #[serde(default, skip_serializing_if = "empty")]
    pub attributes: Attributes,
}

/// test weather the attributes are empty and if it therfore can be skipped
fn empty(value: &Attributes) -> bool {
    value.len() == 0
}

impl DeltaOperation {
    #[inline(always)]
    pub fn insert<V: Into<Value>>(value: V) -> Self {
        DeltaOperation {
            kind: OpKind::Insert(value.into()),
            attributes: HashMap::new(),
        }
    }

    #[inline(always)]
    pub fn retain(value: usize) -> Self {
        DeltaOperation {
            kind: OpKind::Retain(value),
            attributes: HashMap::new(),
        }
    }

    /// Delete a value from the input
    #[inline(always)]
    pub fn delete(value: usize) -> Self {
        DeltaOperation {
            kind: OpKind::Delete(value),
            attributes: HashMap::new(),
        }
    }

    /// set the attribute in a shorthand way
    /// ```
    /// extern crate quill_delta;
    /// use quill_delta::DeltaOperation;
    /// let op = DeltaOperation::insert("Hallo")
    ///     .attr("font", "green")
    ///     .attr("size", 10);
    /// ```
    #[inline(always)]
    pub fn attr<K: Into<String>, V: Into<Value>>(mut self, key: K, value: V) -> Self {
        self.attributes.insert(key.into(), value.into());
        self
    }

    /// get the length
    #[inline(always)]
    pub fn len(&self) -> usize {
        match self.kind {
            OpKind::Delete(len) => len,
            OpKind::Retain(len) => len,
            OpKind::Insert(Value::String(ref val)) => val.len(),
            _ => unimplemented!(),
        }
    }
}

#[inline(always)]
pub fn insert<V: Into<Value>>(value: V) -> DeltaOperation {
    DeltaOperation::insert(value)
}

#[inline(always)]
pub fn retain(value: usize) -> DeltaOperation {
    DeltaOperation::retain(value)
}

#[inline(always)]
pub fn delete(value: usize) -> DeltaOperation {
    DeltaOperation::delete(value)
}

#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum OpKind {
    Insert(Value),
    Retain(usize),
    Delete(usize),
}

#[test]
fn deserialize_delta_operation() {
    let op: DeltaOperation = serde_json::from_str(r#"{ "insert": "Hallo" }"#).unwrap();
    let op: DeltaOperation = serde_json::from_str(r#"{ "retain": 10 }"#).unwrap();
    let op: DeltaOperation = serde_json::from_str(r#"{ "delete": 10 }"#).unwrap();
}

#[test]
fn serilize_delta_operation() {
    assert_eq!(
        serde_json::to_string(&insert("Hallo")).unwrap(),
        r#"{"insert":"Hallo"}"#
    );

    assert_eq!(
        serde_json::to_string(&delete(100)).unwrap(),
        r#"{"delete":100}"#
    );

    assert_eq!(
        serde_json::to_string(&retain(100)).unwrap(),
        r#"{"retain":100}"#
    );
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}