@@ -5,8 +5,44 @@ import {
5
5
PropertyDocumentationBlock ,
6
6
MethodParameterDocumentation ,
7
7
PossibleStringValue ,
8
+ DocumentationTag ,
8
9
} from './ParsedDocumentation' ;
9
10
11
+ const tagMap = {
12
+ macOS : DocumentationTag . OS_MACOS ,
13
+ mas : DocumentationTag . OS_MAS ,
14
+ Windows : DocumentationTag . OS_WINDOWS ,
15
+ Linux : DocumentationTag . OS_LINUX ,
16
+ Experimental : DocumentationTag . STABILITY_EXPERIMENTAL ,
17
+ Deprecated : DocumentationTag . STABILITY_DEPRECATED ,
18
+ Readonly : DocumentationTag . AVAILABILITY_READONLY ,
19
+ } ;
20
+
21
+ const ALLOWED_TAGS = Object . keys ( tagMap ) as ( keyof typeof tagMap ) [ ] ;
22
+
23
+ export const parseHeadingTags = ( tags : string | null ) : DocumentationTag [ ] => {
24
+ if ( ! tags ) return [ ] ;
25
+
26
+ const parsedTags : ( keyof typeof tagMap ) [ ] = [ ] ;
27
+ const matcher = / _ ( [ ^ _ ] + ) _ / g;
28
+ let match : RegExpMatchArray | null ;
29
+ while ( ( match = matcher . exec ( tags ) ) ) {
30
+ expect ( ALLOWED_TAGS ) . to . contain (
31
+ match [ 1 ] ,
32
+ `heading tags must be from the whitelist: ${ JSON . stringify ( ALLOWED_TAGS ) } ` ,
33
+ ) ;
34
+ parsedTags . push ( match [ 1 ] as keyof typeof tagMap ) ;
35
+ }
36
+
37
+ return parsedTags . map ( value => {
38
+ if ( tagMap [ value ] ) return tagMap [ value ] ;
39
+
40
+ throw new Error (
41
+ `Impossible scenario detected, "${ value } " is not an allowed tag but it got past the allowed tags check` ,
42
+ ) ;
43
+ } ) ;
44
+ } ;
45
+
10
46
export const findNextList = ( tokens : Token [ ] ) => {
11
47
const start = tokens . findIndex ( t => t . type === 'bullet_list_open' ) ;
12
48
if ( start === - 1 ) return null ;
@@ -237,6 +273,7 @@ export const rawTypeToTypeInformation = (
237
273
name : typedKey . key ,
238
274
description : typedKey . description ,
239
275
required : typedKey . required ,
276
+ additionalTags : typedKey . additionalTags ,
240
277
...typedKey . type ,
241
278
} ) )
242
279
: [ ] ,
@@ -271,6 +308,7 @@ export const rawTypeToTypeInformation = (
271
308
name : typedKey . key ,
272
309
description : typedKey . description ,
273
310
required : typedKey . required ,
311
+ additionalTags : typedKey . additionalTags ,
274
312
...typedKey . type ,
275
313
} ) )
276
314
: [ ] ,
@@ -514,6 +552,7 @@ type TypedKey = {
514
552
type : TypeInformation ;
515
553
description : string ;
516
554
required : boolean ;
555
+ additionalTags : DocumentationTag [ ] ;
517
556
} ;
518
557
519
558
type List = { items : ListItem [ ] } ;
@@ -608,6 +647,8 @@ const convertNestedListToTypedKeys = (list: List): TypedKey[] => {
608
647
/ ? \( O p t i o n a l \) ? / ,
609
648
'optionality should be defined with "(optional)", all lower case, no capital "O"' ,
610
649
) ;
650
+ const tagMatcher = / .+ ?( (?: _ (?: [ ^ _ ] + ?) _ ) + ) / g;
651
+ const tagMatch = tagMatcher . exec ( rawType ) ;
611
652
const cleanedType = rawType . replace ( / ? \( o p t i o n a l \) ? / i, '' ) . replace ( / _ .+ ?_ / g, '' ) ;
612
653
const subTypedKeys = item . nestedList ? convertNestedListToTypedKeys ( item . nestedList ) : null ;
613
654
const type = rawTypeToTypeInformation ( cleanedType . trim ( ) , rawDescription , subTypedKeys ) ;
@@ -617,6 +658,7 @@ const convertNestedListToTypedKeys = (list: List): TypedKey[] => {
617
658
key : keyToken . content ,
618
659
description : rawDescription . trim ( ) . replace ( / ^ - ? / , '' ) ,
619
660
required : ! isRootOptional ,
661
+ additionalTags : tagMatch ? parseHeadingTags ( tagMatch [ 1 ] ) : [ ] ,
620
662
} ) ;
621
663
}
622
664
0 commit comments