@@ -2,60 +2,117 @@ import { type NestedOption, OptionType } from '@app/components/filter-dropdown/n
2
2
import { GLOBAL , LIST_DELIMITER , NONE_OPTION , WILDCARD } from '@app/components/smart-editor-texts/types' ;
3
3
import { MALTEKST_SECTION_NAMES } from '@app/components/smart-editor/constants' ;
4
4
import { getTemplateSections } from '@app/hooks/use-template-sections' ;
5
- import { TemplateSections } from '@app/plate/template-sections' ;
5
+ import { DeprecatedTemplateSections , TemplateSections } from '@app/plate/template-sections' ;
6
6
import { TEMPLATES } from '@app/plate/templates/templates' ;
7
7
8
8
export const ALL_TEMPLATES_LABEL = 'Alle maler' ;
9
+ export const DEPRECATED_SECTIONS_LABEL = 'Utgåtte seksjoner' ;
9
10
10
- export const getTemplateOptions = ( includeNone : boolean , templatesSelectable : boolean ) : NestedOption [ ] => {
11
- const options : NestedOption [ ] = TEMPLATES . map ( ( { templateId, tittel } ) => {
11
+ export const getTemplateOptions = (
12
+ selected : string [ ] ,
13
+ includeNone : boolean ,
14
+ includeDeprecated : boolean ,
15
+ templatesSelectable : boolean ,
16
+ ) : NestedOption [ ] => {
17
+ const options : NestedOption [ ] = [ ] ;
18
+
19
+ if ( includeNone ) {
20
+ options . push ( { ...NONE_OPTION , filterValue : NONE_OPTION . label , type : OptionType . OPTION } ) ;
21
+ }
22
+
23
+ for ( const { templateId, tittel, deprecatedSections } of TEMPLATES ) {
12
24
const { used, unused } = getTemplateSections ( templateId ) ;
13
25
14
- const unusedOption = {
26
+ const unusedOptions = unused . map < NestedOption > ( ( s ) => ( {
27
+ type : OptionType . OPTION ,
28
+ value : `${ templateId } ${ LIST_DELIMITER } ${ s } ` ,
29
+ label : MALTEKST_SECTION_NAMES [ s ] ,
30
+ filterValue : `${ tittel } ${ MALTEKST_SECTION_NAMES [ s ] } ` ,
31
+ indeterminate : selected . includes ( `${ GLOBAL } ${ LIST_DELIMITER } ${ s } ` ) ,
32
+ } ) ) ;
33
+
34
+ const unusedOptionsGroup : NestedOption = {
15
35
type : OptionType . GROUP ,
16
36
value : 'UNUSED' ,
17
- label : 'Ubrukte seksjoner ' ,
37
+ label : 'Seksjoner som ikke er i denne malen ' ,
18
38
filterValue : 'Ubrukte seksjoner' ,
19
- options : unused . map ( ( s ) => ( {
20
- type : OptionType . OPTION ,
21
- value : `${ templateId } ${ LIST_DELIMITER } ${ s } ` ,
22
- label : MALTEKST_SECTION_NAMES [ s ] ,
23
- filterValue : `${ tittel } ${ MALTEKST_SECTION_NAMES [ s ] } ` ,
24
- } ) ) ,
39
+ options : unusedOptions ,
25
40
} ;
26
41
27
- const usedOptions = used . map ( ( s ) => ( {
42
+ const usedOptions = used . map < NestedOption > ( ( s ) => ( {
28
43
type : OptionType . OPTION ,
29
44
value : `${ templateId } ${ LIST_DELIMITER } ${ s } ` ,
30
45
label : MALTEKST_SECTION_NAMES [ s ] ,
31
46
filterValue : `${ tittel } ${ MALTEKST_SECTION_NAMES [ s ] } ` ,
47
+ indeterminate : selected . includes ( `${ GLOBAL } ${ LIST_DELIMITER } ${ s } ` ) ,
32
48
} ) ) ;
33
49
34
- return {
50
+ const templateOptions = usedOptions . concat ( unusedOptionsGroup ) ;
51
+
52
+ if ( includeDeprecated && deprecatedSections . length > 0 ) {
53
+ const deprecatedOptions = deprecatedSections . map < NestedOption > ( ( s ) => ( {
54
+ type : OptionType . OPTION ,
55
+ value : `${ templateId } ${ LIST_DELIMITER } ${ s } ` ,
56
+ label : MALTEKST_SECTION_NAMES [ s ] ,
57
+ filterValue : `${ tittel } ${ MALTEKST_SECTION_NAMES [ s ] } ` ,
58
+ indeterminate : selected . includes ( `${ GLOBAL } ${ LIST_DELIMITER } ${ s } ` ) ,
59
+ } ) ) ;
60
+
61
+ const deprecatedOptionsGroup : NestedOption = {
62
+ type : OptionType . GROUP ,
63
+ value : 'DEPRECATED' ,
64
+ label : DEPRECATED_SECTIONS_LABEL ,
65
+ filterValue : DEPRECATED_SECTIONS_LABEL ,
66
+ options : deprecatedOptions ,
67
+ } ;
68
+
69
+ templateOptions . push ( deprecatedOptionsGroup ) ;
70
+ }
71
+
72
+ options . push ( {
35
73
type : templatesSelectable ? OptionType . OPTION : OptionType . GROUP ,
36
74
label : tittel ,
37
75
value : `${ templateId } ${ LIST_DELIMITER } ${ WILDCARD } ` ,
38
76
filterValue : templateId ,
39
- options : usedOptions . concat ( unusedOption ) ,
77
+ options : templateOptions ,
78
+ indeterminate : selected . some ( ( s ) => s . startsWith ( `${ templateId } ${ LIST_DELIMITER } ` ) ) ,
79
+ } ) ;
80
+ }
81
+
82
+ const globalOptions : NestedOption [ ] = Object . values ( TemplateSections ) . map ( ( s ) => ( {
83
+ type : OptionType . OPTION ,
84
+ value : `${ GLOBAL } ${ LIST_DELIMITER } ${ s } ` ,
85
+ label : MALTEKST_SECTION_NAMES [ s ] ,
86
+ filterValue : `${ ALL_TEMPLATES_LABEL } ${ MALTEKST_SECTION_NAMES [ s ] } ` ,
87
+ } ) ) ;
88
+
89
+ if ( includeDeprecated ) {
90
+ const globalDeprecatedOptions : NestedOption [ ] = Object . values ( DeprecatedTemplateSections ) . map ( ( s ) => ( {
91
+ type : OptionType . OPTION ,
92
+ value : `${ GLOBAL } ${ LIST_DELIMITER } ${ s } ` ,
93
+ label : MALTEKST_SECTION_NAMES [ s ] ,
94
+ filterValue : `${ ALL_TEMPLATES_LABEL } ${ MALTEKST_SECTION_NAMES [ s ] } ` ,
95
+ } ) ) ;
96
+
97
+ const globalDeprecatedOptionsGroup : NestedOption = {
98
+ type : OptionType . GROUP ,
99
+ label : DEPRECATED_SECTIONS_LABEL ,
100
+ value : `${ GLOBAL } ${ LIST_DELIMITER } ${ WILDCARD } ` ,
101
+ filterValue : DEPRECATED_SECTIONS_LABEL ,
102
+ options : globalDeprecatedOptions ,
40
103
} ;
41
- } ) ;
104
+
105
+ globalOptions . push ( globalDeprecatedOptionsGroup ) ;
106
+ }
42
107
43
108
options . push ( {
44
109
type : templatesSelectable ? OptionType . OPTION : OptionType . GROUP ,
45
110
label : ALL_TEMPLATES_LABEL ,
46
111
value : GLOBAL ,
47
112
filterValue : '' ,
48
- options : Object . values ( TemplateSections ) . map ( ( s ) => ( {
49
- type : OptionType . OPTION ,
50
- value : `${ GLOBAL } ${ LIST_DELIMITER } ${ s } ` ,
51
- label : MALTEKST_SECTION_NAMES [ s ] ,
52
- filterValue : `${ ALL_TEMPLATES_LABEL } ${ MALTEKST_SECTION_NAMES [ s ] } ` ,
53
- } ) ) ,
113
+ indeterminate : selected . some ( ( s ) => s . startsWith ( `${ GLOBAL } ${ LIST_DELIMITER } ` ) ) ,
114
+ options : globalOptions ,
54
115
} ) ;
55
116
56
- if ( includeNone ) {
57
- return [ { ...NONE_OPTION , filterValue : NONE_OPTION . label , type : OptionType . OPTION } , ...options ] ;
58
- }
59
-
60
117
return options ;
61
118
} ;
0 commit comments