@@ -52,33 +52,6 @@ export class Block<Attr = unknown> extends Range implements IBlock, Printable, S
52
52
return length ? path [ length - 1 ] : '' ;
53
53
}
54
54
55
- // public htmlTag(): string {
56
- // const tag = this.tag();
57
- // switch (typeof tag) {
58
- // case 'string': return tag.toLowerCase();
59
- // case 'number': return SliceTypeName[tag] || 'div';
60
- // default: return 'div';
61
- // }
62
- // }
63
-
64
- // protected jsonMlNode(): JsonMlElement {
65
- // const props: Record<string, string> = {};
66
- // const node: JsonMlElement = ['div', props];
67
- // const tag = this.tag();
68
- // switch (typeof tag) {
69
- // case 'string':
70
- // node[0] = tag;
71
- // break;
72
- // case 'number':
73
- // const tag0 = SliceTypeName[tag];
74
- // if (tag0) node[0] = tag0; else props['data-tag'] = tag + '';
75
- // break;
76
- // }
77
- // const attr = this.attr();
78
- // if (attr !== undefined) props['data-attr'] = JSON.stringify(attr);
79
- // return node;
80
- // }
81
-
82
55
public attr ( ) : Attr | undefined {
83
56
return this . marker ?. data ( ) as Attr | undefined ;
84
57
}
@@ -112,59 +85,70 @@ export class Block<Attr = unknown> extends Range implements IBlock, Printable, S
112
85
return new UndefEndIter ( this . points0 ( withMarker ) ) ;
113
86
}
114
87
115
- public tuples0 ( ) : UndefIterator < OverlayTuple < T > > {
88
+ protected tuples0 ( ) : UndefIterator < OverlayTuple < T > > {
116
89
const overlay = this . txt . overlay ;
117
- const iterator = overlay . tuples0 ( this . marker ) ;
90
+ const marker = this . marker ;
91
+ const iterator = overlay . tuples0 ( marker ) ;
118
92
let closed = false ;
119
93
return ( ) => {
120
94
if ( closed ) return ;
121
- const pair = iterator ( ) ;
122
- if ( ! pair ) return ;
95
+ let pair = iterator ( ) ;
96
+ while ( ! marker && pair && pair [ 1 ] && pair [ 1 ] . cmpSpatial ( this . start ) < 0 ) pair = iterator ( ) ;
97
+ if ( ! pair ) return ( closed = true ) , void 0 ;
123
98
if ( ! pair [ 1 ] || pair [ 1 ] instanceof MarkerOverlayPoint ) closed = true ;
124
99
return pair ;
125
100
} ;
126
101
}
127
102
128
- public tuples ( ) : IterableIterator < OverlayTuple < T > > {
129
- return new UndefEndIter ( this . tuples0 ( ) ) ;
130
- }
131
-
103
+ /**
104
+ * @todo Consider moving inline-related methods to {@link LeafBlock}.
105
+ */
132
106
public texts0 ( ) : UndefIterator < Inline > {
133
107
const txt = this . txt ;
134
108
const iterator = this . tuples0 ( ) ;
135
- const blockStart = this . start ;
136
- const blockEnd = this . end ;
109
+ const start = this . start ;
110
+ const end = this . end ;
111
+ const startIsMarker = txt . overlay . isMarker ( start . id ) ;
112
+ const endIsMarker = txt . overlay . isMarker ( end . id ) ;
137
113
let isFirst = true ;
138
114
let next = iterator ( ) ;
115
+ let closed = false ;
139
116
return ( ) => {
117
+ if ( closed ) return ;
140
118
const pair = next ;
141
119
next = iterator ( ) ;
142
120
if ( ! pair ) return ;
143
- const [ p1 , p2 ] = pair ;
144
- let start : Point = p1 ;
145
- let end : Point = p2 ;
121
+ const [ overlayPoint1 , overlayPoint2 ] = pair ;
122
+ let point1 : Point = overlayPoint1 ;
123
+ let point2 : Point = overlayPoint2 ;
146
124
if ( isFirst ) {
147
125
isFirst = false ;
148
- if ( blockStart . cmpSpatial ( p1 ) > 0 ) start = blockStart ;
126
+ if ( start . cmpSpatial ( overlayPoint1 ) > 0 ) point1 = start ;
127
+ if ( startIsMarker ) {
128
+ point1 = point1 . clone ( ) ;
129
+ point1 . step ( 1 ) ;
130
+ }
149
131
}
150
- const isLast = ! next ;
151
- if ( isLast ) if ( blockEnd . cmpSpatial ( p2 ) < 0 ) end = blockEnd ;
152
- return new Inline ( txt , p1 , p2 , start , end ) ;
132
+ if ( ! endIsMarker && end . cmpSpatial ( overlayPoint2 ) < 0 ) {
133
+ closed = true ;
134
+ point2 = end ;
135
+ }
136
+ return new Inline ( txt , overlayPoint1 , overlayPoint2 , point1 , point2 ) ;
153
137
} ;
154
138
}
155
139
140
+ /**
141
+ * @todo Consider moving inline-related methods to {@link LeafBlock}.
142
+ */
156
143
public texts ( ) : IterableIterator < Inline > {
157
144
return new UndefEndIter ( this . texts0 ( ) ) ;
158
145
}
159
146
160
147
public text ( ) : string {
161
148
let str = '' ;
162
- const iterator = this . texts0 ( ) ;
163
- let inline = iterator ( ) ;
164
- while ( inline ) {
165
- str += inline . text ( ) ;
166
- inline = iterator ( ) ;
167
- }
149
+ const children = this . children ;
150
+ const length = children . length ;
151
+ for ( let i = 0 ; i < length ; i ++ ) str += children [ i ] . text ( ) ;
168
152
return str ;
169
153
}
170
154
@@ -204,6 +188,7 @@ export class Block<Attr = unknown> extends Range implements IBlock, Printable, S
204
188
public toStringName ( ) : string {
205
189
return 'Block' ;
206
190
}
191
+
207
192
protected toStringHeader ( ) : string {
208
193
const hash = `#${ this . hash . toString ( 36 ) . slice ( - 4 ) } ` ;
209
194
const tag = this . path . map ( ( step ) => formatType ( step ) ) . join ( '.' ) ;
0 commit comments