-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgoodow_operation.proto
71 lines (59 loc) · 1.81 KB
/
goodow_operation.proto
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
syntax = "proto3";
option objc_class_prefix = "GDOPB";
import "goodow_bool.proto";
package goodow.protobuf;
// 样式的集合
message Attribute {
/** Inline Formats **/
string color = 1; // "#cccccc", Uses six character hex values to represent colors and not RGB
string background = 2; // 背景色
string size = 3; // 字号
string font = 4; // 字体
string link = 5; // 链接
Bool bold = 6; // 粗体
Bool italic = 7; // 斜体
Bool underline = 8; // 下划线
Bool strike = 9; // 删除线
Bool code = 10;
Script script = 11;
/** 用于扩展自定义样式 **/
map<string, string> extras = 12;
/** Block Formats **/
Alignment align = 13; // 对齐方式
/** Embeds Formats **/
string width = 14;
string height = 15;
};
// 对齐方式, 作用于整行或一个段落
enum Alignment {
DEFAULT_ALIGNMENT = 0; // 默认值
left = 1; // 故意使用小写, 以使转换为 JSON 后的值为 'left'
center = 2;
right = 3;
justify = 4;
};
// 角标
enum Script {
DEFAULT_SCRIPT = 0; // 默认值
super = 1;
sub = 2;
};
// 富文本数据模型
message Delta {
repeated Operation ops = 1;
// 富文本片段
message Operation {
string insert = 1; // 文本内容. 当值为换行符 '\n' 时, attributes(忽略非 Block Formats) 表示段落的样式
Embed insert_embed = 2; // 非文本类型内容
uint64 retain = 3; // 如 attributes 也存在, 可用于改变内容的样式
uint64 delete = 4; // 先保留, 暂不实现
Attribute attributes = 5; // 样式
// 非文本类型内容
message Embed {
string image = 1; // 图片 url
string video = 2; // 视频 url
bool space = 3; // 空白点位. 等同于 url 为一个透明图片的 image
string button = 4; // 按钮标题. 使用 link 属性表示点击动作
};
};
};