aboutsummaryrefslogtreecommitdiff
path: root/src/models/text.rs
blob: 841e7d7c39d17ac4bda8f1776e37f10f0d66cd65 (plain) (blame)
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
use crate::models::properties::DateValue;
use crate::models::users::User;
use crate::{Database, Page};
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Copy, Clone)]
#[serde(rename_all = "snake_case")]
pub enum TextColor {
    Default,
    Gray,
    Brown,
    Orange,
    Yellow,
    Green,
    Blue,
    Purple,
    Pink,
    Red,
    GrayBackground,
    BrownBackground,
    OrangeBackground,
    YellowBackground,
    GreenBackground,
    BlueBackground,
    PurpleBackground,
    PinkBackground,
    RedBackground,
}

/// Rich text annotations
/// See <https://developers.notion.com/reference/rich-text#annotations>
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
pub struct Annotations {
    pub bold: Option<bool>,
    pub code: Option<bool>,
    pub color: Option<TextColor>,
    pub italic: Option<bool>,
    pub strikethrough: Option<bool>,
    pub underline: Option<bool>,
}

/// Properties common on all rich text objects
/// See <https://developers.notion.com/reference/rich-text#all-rich-text>
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
pub struct RichTextCommon {
    pub plain_text: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub href: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub annotations: Option<Annotations>,
}

#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
pub struct Link {
    pub url: String,
}

#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
pub struct Text {
    pub content: String,
    pub link: Option<Link>,
}

/// See https://developers.notion.com/reference/rich-text#mention-objects
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
#[serde(tag = "type")]
#[serde(rename_all = "snake_case")]
pub enum MentionObject {
    User {
        user: User,
    },
    // TODO: need to add tests
    Page {
        page: Page,
    },
    // TODO: need to add tests
    Database {
        database: Database,
    },
    Date {
        date: DateValue,
    },
    // TODO: need to add LinkPreview
    // LinkPreview {
    //
    // },
    #[serde(other)]
    Unknown,
}

/// Rich text objects contain data for displaying formatted text, mentions, and equations.
/// A rich text object also contains annotations for style information.
/// Arrays of rich text objects are used within property objects and property
/// value objects to create what a user sees as a single text value in Notion.
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
#[serde(tag = "type")]
#[serde(rename_all = "snake_case")]
pub enum RichText {
    /// See <https://developers.notion.com/reference/rich-text#text-objects>
    Text {
        #[serde(flatten)]
        rich_text: RichTextCommon,
        text: Text,
    },
    /// See <https://developers.notion.com/reference/rich-text#mention-objects>
    Mention {
        #[serde(flatten)]
        rich_text: RichTextCommon,
        mention: MentionObject,
    },
    /// See <https://developers.notion.com/reference/rich-text#equation-objects>
    Equation {
        #[serde(flatten)]
        rich_text: RichTextCommon,
    },
}

impl RichText {
    pub fn plain_text(&self) -> &str {
        use RichText::*;
        match self {
            Text { rich_text, .. } | Mention { rich_text, .. } | Equation { rich_text, .. } => {
                &rich_text.plain_text
            }
        }
    }
}
>-37/+25 2022-03-02[bun.js] Add `Bun.inspect` – like util.inspect()Gravatar Jarred Sumner 7-276/+446 2022-03-02Make http requests a little fasterGravatar Jarred Sumner 1-1/+6 2022-03-02[bun dev] Improve HMR performance by pooling websocket threadsGravatar Jarred Sumner 1-37/+59 2022-03-02Send `Date` header in `bun dev`Gravatar Jarred Sumner 8-0/+2338 2022-03-02[internal] log memory allocations in mimalloc arenasGravatar Jarred Sumner 2-0/+7 2022-03-02Reduce stack size usage by about 120 KBGravatar Jarred Sumner 1-2/+6 2022-03-02add is_bindgen stubGravatar Jarred Sumner 3-0/+5 2022-03-02reduce number of global constantsGravatar Jarred Sumner 1-55/+29 2022-03-02reduce number of global variablesGravatar Jarred Sumner 3-21/+1752 2022-03-02Update bindings.zigGravatar Jarred Sumner 1-0/+4 2022-03-02Remove function from bindingsGravatar Jarred Sumner 1-7/+1 2022-03-02`DELETE` headerGravatar Jarred Sumner 1-0/+4 2022-03-02[bun.js] fix unicode handling in RouterGravatar Jarred Sumner 1-3/+9 2022-03-02[bun.js] Fix crash due to incorrectly creating stringGravatar Jarred Sumner 1-3/+1 2022-03-02remove a threadlocalGravatar Jarred Sumner 2-12/+908 2022-03-02cleanup error printingGravatar Jarred Sumner 2-2/+5 2022-03-02Update global.zigGravatar Jarred Sumner 1-0/+17 2022-03-02Update fs.zigGravatar Jarred Sumner 1-0/+3 2022-03-02[bun run] Set more environment variablesGravatar Jarred Sumner 2-0/+55 2022-03-02clean up error message when CLI flag is invalidGravatar Jarred Sumner 1-1/+4 2022-03-02add `bun pm cache` and `bun pm cache rm` commandsGravatar Jarred Sumner 1-0/+20 2022-03-01[bun.js] `ResolveError.prototype.toString()` `BuildError.prototype.toString()`Gravatar Jarred Sumner 1-2/+94 2022-03-01add `allowBunRuntime` and `autoImportJSX` flags to Bun.TranspilerGravatar Jarred Sumner 1-1/+32 2022-03-01cleanup code that checks if it should send an HTTP bodyGravatar Jarred Sumner 2-6/+18 2022-03-01[JS Parser] Fix bug with `super` from adding class static blocksGravatar Jarred Sumner 1-1/+12 2022-03-01Update bundler.zigGravatar Jarred Sumner 1-1/+5 2022-03-01Remove unused boolGravatar Jarred Sumner 1-3/+0 2022-03-01[bun.js] Allow disabling runtime imports so bun can build for nodeGravatar Jarred Sumner 3-5/+11 2022-03-01[JS Parser] Make auto importing JSX a flag so the API is easierGravatar Jarred Sumner 1-295/+297 2022-03-01cleanupGravatar Jarred Sumner 1-2/+2 2022-03-01Update javascript.zigGravatar Jarred Sumner 1-50/+0 2022-03-01[bun.js] shim async fsGravatar Jarred Sumner 2-36/+226 2022-03-01[bun.js] Implement `setTimeout`, `setInterval`, `clearTimeout`, `clearInterval`Gravatar Jarred Sumner 11-41/+295 2022-02-27Update transpiler.test.jsGravatar Jarred Sumner 1-0/+8 2022-02-27[TS] Make `export {type foo}` output consistent with TS parserGravatar Jarred Sumner 1-3/+45 2022-02-27WASMGravatar Jarred Sumner 83-690/+10789