@mikezimm/fps-library-v2 1.0.137 → 1.0.139
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -2
- package/lib/components/molecules/SearchPage/Interfaces/IContentGroup.d.ts +7 -0
- package/lib/components/molecules/SearchPage/Interfaces/IContentGroup.d.ts.map +1 -0
- package/lib/components/molecules/SearchPage/Interfaces/IContentGroup.js +6 -0
- package/lib/components/molecules/SearchPage/Interfaces/IContentGroup.js.map +1 -0
- package/lib/components/molecules/SearchPage/Interfaces/ISearchTypes.d.ts +2 -0
- package/lib/components/molecules/SearchPage/Interfaces/ISearchTypes.d.ts.map +1 -1
- package/lib/components/molecules/SearchPage/Interfaces/ProgrammingFileKeys.d.ts +11 -0
- package/lib/components/molecules/SearchPage/Interfaces/ProgrammingFileKeys.d.ts.map +1 -0
- package/lib/components/molecules/SearchPage/Interfaces/ProgrammingFileKeys.js +46 -0
- package/lib/components/molecules/SearchPage/Interfaces/ProgrammingFileKeys.js.map +1 -0
- package/lib/components/molecules/SearchPage/Interfaces/StandardTypes.d.ts.map +1 -1
- package/lib/components/molecules/SearchPage/Interfaces/StandardTypes.js +38 -34
- package/lib/components/molecules/SearchPage/Interfaces/StandardTypes.js.map +1 -1
- package/lib/components/molecules/SearchPage/functions/addItemIsA.d.ts +4 -0
- package/lib/components/molecules/SearchPage/functions/addItemIsA.d.ts.map +1 -0
- package/lib/components/molecules/SearchPage/functions/addItemIsA.js +37 -0
- package/lib/components/molecules/SearchPage/functions/addItemIsA.js.map +1 -0
- package/lib/components/molecules/SearchPage/functions/addSearchMeta1.d.ts +1 -3
- package/lib/components/molecules/SearchPage/functions/addSearchMeta1.d.ts.map +1 -1
- package/lib/components/molecules/SearchPage/functions/addSearchMeta1.js +1 -36
- package/lib/components/molecules/SearchPage/functions/addSearchMeta1.js.map +1 -1
- package/lib/components/molecules/SearchPage/functions/addSearchMeta2.d.ts.map +1 -1
- package/lib/components/molecules/SearchPage/functions/addSearchMeta2.js +4 -0
- package/lib/components/molecules/SearchPage/functions/addSearchMeta2.js.map +1 -1
- package/lib/components/molecules/SourceList/IAnyContent.d.ts +14 -4
- package/lib/components/molecules/SourceList/IAnyContent.d.ts.map +1 -1
- package/lib/components/molecules/SourceList/IAnyContent.js +7 -3
- package/lib/components/molecules/SourceList/IAnyContent.js.map +1 -1
- package/package.json +1 -1
- package/lib/components/molecules/SearchPage/Interfaces/ProgrammingSharePointKeys.d.ts +0 -11
- package/lib/components/molecules/SearchPage/Interfaces/ProgrammingSharePointKeys.d.ts.map +0 -1
- package/lib/components/molecules/SearchPage/Interfaces/ProgrammingSharePointKeys.js +0 -45
- package/lib/components/molecules/SearchPage/Interfaces/ProgrammingSharePointKeys.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,16 +5,25 @@ npm run build
|
|
|
5
5
|
npm version major/minor/patch
|
|
6
6
|
npm publish --access=public
|
|
7
7
|
|
|
8
|
-
npm install @mikezimm/fps-library-v2@1.0.
|
|
8
|
+
npm install @mikezimm/fps-library-v2@1.0.139
|
|
9
9
|
|
|
10
10
|
# Changelog
|
|
11
11
|
|
|
12
12
|
NOTE: TURN BACK ON STRICT NULL CHECKS - turned off for PropPaneCols
|
|
13
13
|
|
|
14
|
+
## 1.0.139 - 2023-Mar-19: SearchTypes
|
|
15
|
+
- move 'folder' into "StdFileKeys"
|
|
16
|
+
- add additional ItemIs${contentGroup}Content via src\components\molecules\SearchPage\functions\addItemIsA.ts
|
|
17
|
+
- change ProgrammingSharePoint to ProgrammingFile in addItemIsA and related places
|
|
18
|
+
|
|
19
|
+
## 1.0.138 - 2023-Mar-19: SearchTypes
|
|
20
|
+
- add contentGroup to ISearchType so it's easier to summarize types of files
|
|
21
|
+
|
|
22
|
+
|
|
14
23
|
## 1.0.137 - 2023-Mar-19: SearchTypes
|
|
15
24
|
- add ProgrammingSharePointKeys and ProgrammingSharePointSearchTypes: "js", "html", "css", "json", "xml", "exe", "ps1"
|
|
16
25
|
- add XProgrammingSharePointKeys and XProgrammingSharePointSearchTypes: "ts", "md", "py", "vba"
|
|
17
|
-
- create ProgrammingSharePointKeys, ProgrammingSharePointSearchTypes, MAXSearchTypes to src\components\molecules\SearchPage\Interfaces\
|
|
26
|
+
- create ProgrammingSharePointKeys, ProgrammingSharePointSearchTypes, MAXSearchTypes to src\components\molecules\SearchPage\Interfaces\ProgrammingFileKeys.ts
|
|
18
27
|
- change order of keys/obj in SearchTypes - moved MediaFileKeys and MediaFileSearchTypes to end
|
|
19
28
|
- add ItemIsCode and itemIsCode IAnySourceItem and also addOtherIsAMeta
|
|
20
29
|
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type IContentGroup = 'Office' | 'Code' | 'Data' | 'SharePoint' | 'Media';
|
|
2
|
+
export declare const ContentGroupOffice: IContentGroup;
|
|
3
|
+
export declare const ContentGroupData: IContentGroup;
|
|
4
|
+
export declare const ContentGroupCode: IContentGroup;
|
|
5
|
+
export declare const MediaGroupOffice: IContentGroup;
|
|
6
|
+
export declare const ContentGroupSP: IContentGroup;
|
|
7
|
+
//# sourceMappingURL=IContentGroup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IContentGroup.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/IContentGroup.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG,QAAQ,GAAG,MAAM,GAAG,MAAM,GAAG,YAAY,GAAG,OAAO,CAAC;AAEhF,eAAO,MAAM,kBAAkB,EAAE,aAAwB,CAAC;AAC1D,eAAO,MAAM,gBAAgB,EAAE,aAAsB,CAAC;AACtD,eAAO,MAAM,gBAAgB,EAAE,aAAsB,CAAC;AACtD,eAAO,MAAM,gBAAgB,EAAE,aAAuB,CAAC;AACvD,eAAO,MAAM,cAAc,EAAE,aAA4B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IContentGroup.js","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/IContentGroup.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,kBAAkB,GAAkB,QAAQ,CAAC;AAC1D,MAAM,CAAC,MAAM,gBAAgB,GAAkB,MAAM,CAAC;AACtD,MAAM,CAAC,MAAM,gBAAgB,GAAkB,MAAM,CAAC;AACtD,MAAM,CAAC,MAAM,gBAAgB,GAAkB,OAAO,CAAC;AACvD,MAAM,CAAC,MAAM,cAAc,GAAkB,YAAY,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IContentGroup } from "./IContentGroup";
|
|
1
2
|
export interface ISearchType {
|
|
2
3
|
key: string;
|
|
3
4
|
title: string;
|
|
@@ -7,6 +8,7 @@ export interface ISearchType {
|
|
|
7
8
|
count: number;
|
|
8
9
|
adjust?: number;
|
|
9
10
|
similarKey: string;
|
|
11
|
+
contentGroup?: IContentGroup;
|
|
10
12
|
warning?: string;
|
|
11
13
|
}
|
|
12
14
|
export interface ISearchTypes {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ISearchTypes.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/ISearchTypes.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ISearchTypes.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/ISearchTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAGhD,MAAM,WAAW,WAAW;IAC1B,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,aAAa,CAAC;IAC7B,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,IAAI,EAAE,WAAW,EAAE,CAAC;CACrB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ISearchType, ISearchTypes } from "./ISearchTypes";
|
|
2
|
+
export declare const XProgrammingFileKeys: string[];
|
|
3
|
+
export declare const XProgrammingFileSearchTypes: ISearchType[];
|
|
4
|
+
export declare const ProgrammingFileKeys: string[];
|
|
5
|
+
export declare const ProgrammingFileSearchTypes: ISearchType[];
|
|
6
|
+
/**
|
|
7
|
+
* Use SearchTypes for addSearchMeta1 && addSearchMeta2 function
|
|
8
|
+
* -- if you do not have a consolidated search page (with multiple sources)
|
|
9
|
+
*/
|
|
10
|
+
export declare const MAXSearchTypes: ISearchTypes;
|
|
11
|
+
//# sourceMappingURL=ProgrammingFileKeys.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProgrammingFileKeys.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/ProgrammingFileKeys.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAO3D,eAAO,MAAM,oBAAoB,EAAE,MAAM,EAExC,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,WAAW,EAKpD,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,MAAM,EAGvC,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,WAAW,EASnD,CAAC;AACF;;;GAGG;AAEH,eAAO,MAAM,cAAc,EAAE,YAe5B,CAAC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { ContentGroupCode, ContentGroupData } from "./IContentGroup";
|
|
2
|
+
import { StdSharePointKeys, MediaFileKeys, StdFileKeys, StdSharePointSearchTypes, MediaFileSearchTypes, StdFileSearchTypes, } from "./StandardTypes";
|
|
3
|
+
// Keys must be in same order as in StdSharePointSearchTypes
|
|
4
|
+
export const XProgrammingFileKeys = [
|
|
5
|
+
"ts", "md", "py", "vba"
|
|
6
|
+
];
|
|
7
|
+
export const XProgrammingFileSearchTypes = [
|
|
8
|
+
{ key: "ts", title: "ts", icon: "TypeScriptLanguage", style: "", count: 0, color: "blue", similarKey: 'ts', contentGroup: ContentGroupCode },
|
|
9
|
+
{ key: "md", title: "md", icon: "MarkDownLanguage", style: "", count: 0, color: "blue", similarKey: 'md', contentGroup: ContentGroupCode },
|
|
10
|
+
{ key: "py", title: "py", icon: "PythonLanguage", style: "", count: 0, color: "blue", similarKey: 'py', contentGroup: ContentGroupCode },
|
|
11
|
+
{ key: "vba", title: "vba", icon: "VisualBasicLanguage", style: "", count: 0, color: "blue", similarKey: 'vba', contentGroup: ContentGroupCode },
|
|
12
|
+
];
|
|
13
|
+
export const ProgrammingFileKeys = [
|
|
14
|
+
"js", "html", "css",
|
|
15
|
+
"json", "xml", "exe", "ps1"
|
|
16
|
+
];
|
|
17
|
+
export const ProgrammingFileSearchTypes = [
|
|
18
|
+
{ key: "js", title: "js", icon: "JS", style: "", count: 0, color: "blue", similarKey: 'js', contentGroup: ContentGroupCode },
|
|
19
|
+
{ key: "html", title: "html", icon: "FileHTML", style: "", count: 0, color: "blue", similarKey: 'html', contentGroup: ContentGroupCode },
|
|
20
|
+
{ key: "css", title: "css", icon: "CSS", style: "", count: 0, color: "blue", similarKey: 'css', contentGroup: ContentGroupCode },
|
|
21
|
+
{ key: "json", title: "json", icon: "Code", style: "", count: 0, color: "blue", similarKey: 'json', contentGroup: ContentGroupData },
|
|
22
|
+
{ key: "xml", title: "xml", icon: "CalculatorMultiply", style: "", count: 0, color: "blue", similarKey: 'xml', contentGroup: ContentGroupCode },
|
|
23
|
+
{ key: "exe", title: "exe", icon: "CSharpLanguage", style: "", count: 0, color: "blue", similarKey: 'exe', contentGroup: ContentGroupCode },
|
|
24
|
+
{ key: "ps1", title: "ps1", icon: "PowerShell2", style: "", count: 0, color: "blue", similarKey: 'ps1', contentGroup: ContentGroupCode },
|
|
25
|
+
];
|
|
26
|
+
/**
|
|
27
|
+
* Use SearchTypes for addSearchMeta1 && addSearchMeta2 function
|
|
28
|
+
* -- if you do not have a consolidated search page (with multiple sources)
|
|
29
|
+
*/
|
|
30
|
+
export const MAXSearchTypes = {
|
|
31
|
+
keys: [
|
|
32
|
+
...StdSharePointKeys,
|
|
33
|
+
...StdFileKeys,
|
|
34
|
+
...MediaFileKeys,
|
|
35
|
+
...ProgrammingFileKeys,
|
|
36
|
+
...XProgrammingFileKeys,
|
|
37
|
+
],
|
|
38
|
+
objs: [
|
|
39
|
+
...StdSharePointSearchTypes,
|
|
40
|
+
...StdFileSearchTypes,
|
|
41
|
+
...MediaFileSearchTypes,
|
|
42
|
+
...ProgrammingFileSearchTypes,
|
|
43
|
+
...XProgrammingFileSearchTypes,
|
|
44
|
+
]
|
|
45
|
+
};
|
|
46
|
+
//# sourceMappingURL=ProgrammingFileKeys.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProgrammingFileKeys.js","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/ProgrammingFileKeys.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StandardTypes.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/StandardTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"StandardTypes.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/StandardTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAI3D,eAAO,MAAM,WAAW,EAAE,MAAM,EAc/B,CAAC;AAEF,eAAO,MAAM,gBAAgB,oGAAoG,CAAC;AAElI;;;GAGG;AAEH,eAAO,MAAM,kBAAkB,EAAE,WAAW,EA4B3C,CAAC;AAGF,eAAO,MAAM,aAAa,EAAE,MAAM,EAKjC,CAAC;AAEF;;;GAGG;AAEH,eAAO,MAAM,oBAAoB,EAAE,WAAW,EAe7C,CAAC;AAIF,eAAO,MAAM,iBAAiB,EAAE,MAAM,EAKrC,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,WAAW,EASjD,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,WAAW,EAAE,YAWzB,CAAA"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ContentGroupData, ContentGroupOffice, ContentGroupSP, MediaGroupOffice } from "./IContentGroup";
|
|
1
2
|
// Keys must be in same order as in StdFileSearchTypes
|
|
2
3
|
export const StdFileKeys = [
|
|
3
4
|
"pdf",
|
|
@@ -6,7 +7,9 @@ export const StdFileKeys = [
|
|
|
6
7
|
"doc", "docx",
|
|
7
8
|
"rtf", "txt", "csv",
|
|
8
9
|
"msg",
|
|
9
|
-
"
|
|
10
|
+
"one", "onepkg",
|
|
11
|
+
"7z", "zip",
|
|
12
|
+
"folder",
|
|
10
13
|
];
|
|
11
14
|
export const OldOfficeWarning = `This file is using an outdated Office format which can be inefficient and use a lot more space.`;
|
|
12
15
|
/**
|
|
@@ -14,29 +17,30 @@ export const OldOfficeWarning = `This file is using an outdated Office format wh
|
|
|
14
17
|
* However, I'm not sure if the title should be the same for all the variants of certain types of files.
|
|
15
18
|
*/
|
|
16
19
|
export const StdFileSearchTypes = [
|
|
17
|
-
{ key: "pdf", title: "pdf", icon: "PDF", style: "", count: 0, color: 'red', similarKey: 'pdf' },
|
|
18
|
-
{ key: "ppt", title: "ppt", icon: "PowerPointDocument", style: "", count: 0, color: 'firebrick', similarKey: 'ppt', warning: OldOfficeWarning },
|
|
19
|
-
{ key: "pptx", title: "pptx", icon: "PowerPointDocument", style: "", count: 0, color: 'firebrick', similarKey: 'ppt', adjust: -1 },
|
|
20
|
-
{ key: "pptm", title: "pptm", icon: "PowerPointDocument", style: "", count: 0, color: 'firebrick', similarKey: 'ppt', adjust: -2 },
|
|
21
|
-
{ key: "xls", title: "xls", icon: "ExcelDocument", style: "", count: 0, color: 'darkgreen', similarKey: 'xls', warning: OldOfficeWarning },
|
|
22
|
-
{ key: "xlsm", title: "xlsm", icon: "ExcelDocument", style: "", count: 0, color: 'darkgreen', similarKey: 'xls', adjust: -1 },
|
|
23
|
-
{ key: "xlsx", title: "xlsx", icon: "ExcelDocument", style: "", count: 0, color: 'darkgreen', similarKey: 'xls', adjust: -2 },
|
|
24
|
-
{ key: "xlsb", title: "xlsb", icon: "ExcelDocument", style: "", count: 0, color: 'darkgreen', similarKey: 'xls', adjust: -3 },
|
|
25
|
-
{ key: "doc", title: "doc", icon: "WordDocument", style: "", count: 0, color: 'darkblue', similarKey: 'doc', warning: OldOfficeWarning },
|
|
26
|
-
{ key: "docx", title: "docx", icon: "WordDocument", style: "", count: 0, color: 'darkblue', similarKey: 'doc', adjust: -1 },
|
|
27
|
-
{ key: "rtf", title: "rtf", icon: "AlignLeft", style: "", count: 0, color: 'black', similarKey: 'txt' },
|
|
28
|
-
{ key: "txt", title: "txt", icon: "TextDocument", style: "", count: 0, color: 'black', similarKey: 'txt', adjust: -1 },
|
|
29
|
-
{ key: "csv", title: "csv", icon: "TextDocument", style: "", count: 0, color: 'black', similarKey: 'txt', adjust: -2 },
|
|
30
|
-
{ key: "msg", title: "msg", icon: "OutlookLogo", style: "", count: 0, color: 'blue', similarKey: 'mail' },
|
|
31
|
-
{ key: "
|
|
32
|
-
{ key: "
|
|
20
|
+
{ key: "pdf", title: "pdf", icon: "PDF", style: "", count: 0, color: 'red', similarKey: 'pdf', contentGroup: ContentGroupOffice },
|
|
21
|
+
{ key: "ppt", title: "ppt", icon: "PowerPointDocument", style: "", count: 0, color: 'firebrick', similarKey: 'ppt', warning: OldOfficeWarning, contentGroup: ContentGroupOffice },
|
|
22
|
+
{ key: "pptx", title: "pptx", icon: "PowerPointDocument", style: "", count: 0, color: 'firebrick', similarKey: 'ppt', contentGroup: ContentGroupOffice, adjust: -1 },
|
|
23
|
+
{ key: "pptm", title: "pptm", icon: "PowerPointDocument", style: "", count: 0, color: 'firebrick', similarKey: 'ppt', contentGroup: ContentGroupOffice, adjust: -2 },
|
|
24
|
+
{ key: "xls", title: "xls", icon: "ExcelDocument", style: "", count: 0, color: 'darkgreen', similarKey: 'xls', contentGroup: ContentGroupOffice, warning: OldOfficeWarning },
|
|
25
|
+
{ key: "xlsm", title: "xlsm", icon: "ExcelDocument", style: "", count: 0, color: 'darkgreen', similarKey: 'xls', contentGroup: ContentGroupOffice, adjust: -1 },
|
|
26
|
+
{ key: "xlsx", title: "xlsx", icon: "ExcelDocument", style: "", count: 0, color: 'darkgreen', similarKey: 'xls', contentGroup: ContentGroupOffice, adjust: -2 },
|
|
27
|
+
{ key: "xlsb", title: "xlsb", icon: "ExcelDocument", style: "", count: 0, color: 'darkgreen', similarKey: 'xls', contentGroup: ContentGroupOffice, adjust: -3 },
|
|
28
|
+
{ key: "doc", title: "doc", icon: "WordDocument", style: "", count: 0, color: 'darkblue', similarKey: 'doc', contentGroup: ContentGroupOffice, warning: OldOfficeWarning },
|
|
29
|
+
{ key: "docx", title: "docx", icon: "WordDocument", style: "", count: 0, color: 'darkblue', similarKey: 'doc', contentGroup: ContentGroupOffice, adjust: -1 },
|
|
30
|
+
{ key: "rtf", title: "rtf", icon: "AlignLeft", style: "", count: 0, color: 'black', similarKey: 'txt', contentGroup: ContentGroupData },
|
|
31
|
+
{ key: "txt", title: "txt", icon: "TextDocument", style: "", count: 0, color: 'black', similarKey: 'txt', contentGroup: ContentGroupData, adjust: -1 },
|
|
32
|
+
{ key: "csv", title: "csv", icon: "TextDocument", style: "", count: 0, color: 'black', similarKey: 'txt', contentGroup: ContentGroupData, adjust: -2 },
|
|
33
|
+
{ key: "msg", title: "msg", icon: "OutlookLogo", style: "", count: 0, color: 'blue', similarKey: 'mail', contentGroup: ContentGroupOffice },
|
|
34
|
+
{ key: "one", title: "one", icon: "OneNoteLogo", style: "", count: 0, color: 'purple', similarKey: 'onenote' },
|
|
35
|
+
{ key: "onepkg", title: "onenote", icon: "OneNoteLogo", style: "", count: 0, color: 'purple', similarKey: 'onenote', contentGroup: ContentGroupOffice, adjust: -1 },
|
|
36
|
+
{ key: "7z", title: "7-zip", icon: "ZipFolder", style: "", count: 0, color: 'blue', similarKey: 'zip', contentGroup: ContentGroupOffice },
|
|
37
|
+
{ key: "zip", title: "zip", icon: "ZipFolder", style: "", count: 0, color: 'blue', similarKey: 'zip', contentGroup: ContentGroupOffice, adjust: -1 },
|
|
38
|
+
{ key: "folder", title: "folder", icon: "FabricOpenFolderHorizontal", style: "", count: 0, color: '', similarKey: 'folder', contentGroup: ContentGroupSP },
|
|
33
39
|
];
|
|
34
40
|
// Keys must be in same order as in StdFileSearchTypes
|
|
35
41
|
export const MediaFileKeys = [
|
|
36
42
|
"avi", "mp4", "wmf", "mov", "wmv",
|
|
37
43
|
"png", "gif", "jpg", "jpeg",
|
|
38
|
-
"one", "onepkg",
|
|
39
|
-
"7z", "zip",
|
|
40
44
|
"dwg",
|
|
41
45
|
];
|
|
42
46
|
/**
|
|
@@ -44,28 +48,28 @@ export const MediaFileKeys = [
|
|
|
44
48
|
* However, I'm not sure if the title should be the same for all the variants of certain types of files.
|
|
45
49
|
*/
|
|
46
50
|
export const MediaFileSearchTypes = [
|
|
47
|
-
{ key: "avi", title: "avi", icon: "MSNVideosSolid", style: "", count: 0, color: 'blue', similarKey: 'video' },
|
|
48
|
-
{ key: "mp4", title: "mp4", icon: "MSNVideosSolid", style: "", count: 0, color: 'blue', similarKey: 'video', adjust: -1 },
|
|
49
|
-
{ key: "wmf", title: "wmf", icon: "MSNVideosSolid", style: "", count: 0, color: 'blue', similarKey: 'video', adjust: -2 },
|
|
50
|
-
{ key: "mov", title: "mov", icon: "MSNVideosSolid", style: "", count: 0, color: 'blue', similarKey: 'video', adjust: -3 },
|
|
51
|
-
{ key: "wmv", title: "wmv", icon: "MSNVideosSolid", style: "", count: 0, color: 'blue', similarKey: 'video', adjust: -4 },
|
|
52
|
-
{ key: "png", title: "png", icon: "Photo2", style: "", count: 0, color: 'blue', similarKey: 'image' },
|
|
53
|
-
{ key: "gif", title: "gif", icon: "Photo2", style: "", count: 0, color: 'blue', similarKey: 'image', adjust: -1 },
|
|
54
|
-
{ key: "jpg", title: "jpg", icon: "Photo2", style: "", count: 0, color: 'blue', similarKey: 'image', adjust: -2 },
|
|
55
|
-
{ key: "jpeg", title: "jpeg", icon: "Photo2", style: "", count: 0, color: 'blue', similarKey: 'image', adjust: -3 },
|
|
56
|
-
{ key: "one", title: "one", icon: "OneNoteLogo", style: "", count: 0, color: 'purple', similarKey: 'onenote' },
|
|
57
|
-
{ key: "onepkg", title: "onenote", icon: "OneNoteLogo", style: "", count: 0, color: 'purple', similarKey: 'onenote', adjust: -1 },
|
|
58
|
-
{ key: "7z", title: "7-zip", icon: "ZipFolder", style: "", count: 0, color: 'blue', similarKey: 'zip' },
|
|
59
|
-
{ key: "zip", title: "zip", icon: "ZipFolder", style: "", count: 0, color: 'blue', similarKey: 'zip', adjust: -1 },
|
|
51
|
+
{ key: "avi", title: "avi", icon: "MSNVideosSolid", style: "", count: 0, color: 'blue', similarKey: 'video', contentGroup: MediaGroupOffice },
|
|
52
|
+
{ key: "mp4", title: "mp4", icon: "MSNVideosSolid", style: "", count: 0, color: 'blue', similarKey: 'video', contentGroup: MediaGroupOffice, adjust: -1 },
|
|
53
|
+
{ key: "wmf", title: "wmf", icon: "MSNVideosSolid", style: "", count: 0, color: 'blue', similarKey: 'video', contentGroup: MediaGroupOffice, adjust: -2 },
|
|
54
|
+
{ key: "mov", title: "mov", icon: "MSNVideosSolid", style: "", count: 0, color: 'blue', similarKey: 'video', contentGroup: MediaGroupOffice, adjust: -3 },
|
|
55
|
+
{ key: "wmv", title: "wmv", icon: "MSNVideosSolid", style: "", count: 0, color: 'blue', similarKey: 'video', contentGroup: MediaGroupOffice, adjust: -4 },
|
|
56
|
+
{ key: "png", title: "png", icon: "Photo2", style: "", count: 0, color: 'blue', similarKey: 'image', contentGroup: MediaGroupOffice },
|
|
57
|
+
{ key: "gif", title: "gif", icon: "Photo2", style: "", count: 0, color: 'blue', similarKey: 'image', contentGroup: MediaGroupOffice, adjust: -1 },
|
|
58
|
+
{ key: "jpg", title: "jpg", icon: "Photo2", style: "", count: 0, color: 'blue', similarKey: 'image', contentGroup: MediaGroupOffice, adjust: -2 },
|
|
59
|
+
{ key: "jpeg", title: "jpeg", icon: "Photo2", style: "", count: 0, color: 'blue', similarKey: 'image', contentGroup: MediaGroupOffice, adjust: -3 },
|
|
60
60
|
{ key: "dwg", title: "dwg", icon: "PenWorkspace", style: "", count: 0, color: 'black', similarKey: 'dwg' },
|
|
61
61
|
];
|
|
62
62
|
// Keys must be in same order as in StdSharePointSearchTypes
|
|
63
63
|
export const StdSharePointKeys = [
|
|
64
|
+
"docset",
|
|
64
65
|
"page", "news",
|
|
66
|
+
"spitem"
|
|
65
67
|
];
|
|
66
68
|
export const StdSharePointSearchTypes = [
|
|
67
|
-
{ key: "
|
|
68
|
-
{ key: "
|
|
69
|
+
{ key: "docset", title: "docset", icon: "DocumentSet", style: "", count: 0, color: '', similarKey: 'docset', contentGroup: ContentGroupSP },
|
|
70
|
+
{ key: "page", title: "page", icon: "KnowledgeArticle", style: "", count: 0, color: "blue", similarKey: 'page', contentGroup: ContentGroupSP },
|
|
71
|
+
{ key: "news", title: "news", icon: "News", style: "", count: 0, color: "blue", similarKey: 'page', contentGroup: ContentGroupSP },
|
|
72
|
+
{ key: "spitem", title: "spitem", icon: "BulletedList2", style: "", count: 0, color: "blue", similarKey: 'spitem', contentGroup: ContentGroupSP },
|
|
69
73
|
];
|
|
70
74
|
/**
|
|
71
75
|
* Use SearchTypes for addSearchMeta1 && addSearchMeta2 function
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StandardTypes.js","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/StandardTypes.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"StandardTypes.js","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/StandardTypes.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { IAnySourceItem, IItemIsAValues } from "../../SourceList/IAnyContent";
|
|
2
|
+
export declare function addItemIsA(item: IAnySourceItem, ItemIsAThis: IItemIsAValues): IAnySourceItem;
|
|
3
|
+
export declare function addOtherIsAMeta(item: IAnySourceItem): IAnySourceItem;
|
|
4
|
+
//# sourceMappingURL=addItemIsA.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"addItemIsA.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/functions/addItemIsA.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,cAAc,EAAiH,MAAM,8BAA8B,CAAC;AAI7L,wBAAgB,UAAU,CAAC,IAAI,EAAE,cAAc,EAAE,WAAW,EAAE,cAAc,GAAG,cAAc,CAmB5F;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,cAAc,GAAG,cAAc,CAuBpE"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ItemIsADraft, ItemIsAKeys, ItemIsAMajor, ItemIsAValues, ItemIsCodeContent, ItemIsPublished, ItemIsUnPublished } from "../../SourceList/IAnyContent";
|
|
2
|
+
import { ProgrammingFileKeys } from "../Interfaces/ProgrammingFileKeys";
|
|
3
|
+
export function addItemIsA(item, ItemIsAThis) {
|
|
4
|
+
const itemIsAIdx = ItemIsAValues.indexOf(ItemIsAThis);
|
|
5
|
+
if (itemIsAIdx < 0) {
|
|
6
|
+
console.log('WARNING: addItemIsA is invalid!', ItemIsAThis);
|
|
7
|
+
return item;
|
|
8
|
+
}
|
|
9
|
+
else {
|
|
10
|
+
const itemIsAKey = ItemIsAKeys[itemIsAIdx];
|
|
11
|
+
item.searchTextLC = `${ItemIsAThis.toLocaleLowerCase()} || ${item.searchTextLC}`;
|
|
12
|
+
item.meta.push(ItemIsAThis);
|
|
13
|
+
item[`${itemIsAKey}`] = true;
|
|
14
|
+
return item;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
export function addOtherIsAMeta(item) {
|
|
18
|
+
const minorVersion = item.OData__UIVersionString && item.OData__UIVersionString.split('.')[1] !== '0' ? true : false;
|
|
19
|
+
if (minorVersion === true) {
|
|
20
|
+
item = addItemIsA(item, ItemIsADraft);
|
|
21
|
+
}
|
|
22
|
+
else {
|
|
23
|
+
item = addItemIsA(item, ItemIsAMajor);
|
|
24
|
+
}
|
|
25
|
+
;
|
|
26
|
+
if (item.PromotedState === 1) {
|
|
27
|
+
item = addItemIsA(item, ItemIsUnPublished);
|
|
28
|
+
}
|
|
29
|
+
else if (item.PromotedState === 2) {
|
|
30
|
+
item = addItemIsA(item, ItemIsPublished);
|
|
31
|
+
}
|
|
32
|
+
if (item['File_x0020_Type'] && ProgrammingFileKeys.indexOf(item['File_x0020_Type']) > -1) {
|
|
33
|
+
item = addItemIsA(item, ItemIsCodeContent);
|
|
34
|
+
}
|
|
35
|
+
return item;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=addItemIsA.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"addItemIsA.js","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/functions/addItemIsA.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkC,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,aAAa,EAAE,iBAAiB,EAAE,eAAe,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AAC7L,OAAO,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AAGxE,MAAM,UAAU,UAAU,CAAC,IAAoB,EAAE,WAA2B;IAE1E,MAAM,UAAU,GAAG,aAAa,CAAC,OAAO,CAAC,WAA6B,CAAC,CAAC;IAExE,IAAI,UAAU,GAAG,CAAC,EAAE;QAClB,OAAO,CAAC,GAAG,CAAC,kCAAkC,EAAE,WAAW,CAAC,CAAC;QAC7D,OAAO,IAAI,CAAC;KAEb;SAAM;QACL,MAAM,UAAU,GAAG,WAAW,CAAC,UAAU,CAAC,CAAC;QAC3C,IAAI,CAAC,YAAY,GAAG,GAAG,WAAW,CAAC,iBAAiB,EAAE,OAAO,IAAI,CAAC,YAAY,EAAE,CAAC;QACjF,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAE5B,IAAI,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,IAAI,CAAC;QAE7B,OAAO,IAAI,CAAC;KACb;AAGH,CAAC;AAED,MAAM,UAAU,eAAe,CAAC,IAAoB;IAElD,MAAM,YAAY,GAAG,IAAI,CAAC,sBAAsB,IAAI,IAAI,CAAC,sBAAsB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC;IACrH,IAAI,YAAY,KAAK,IAAI,EAAE;QACzB,IAAI,GAAG,UAAU,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC;KAEvC;SAAM;QACL,IAAI,GAAG,UAAU,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC;KACvC;IAAA,CAAC;IAEF,IAAI,IAAI,CAAC,aAAa,KAAK,CAAC,EAAE;QAC5B,IAAI,GAAG,UAAU,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC;KAE5C;SAAM,IAAI,IAAI,CAAC,aAAa,KAAK,CAAC,EAAE;QACnC,IAAI,GAAG,UAAU,CAAC,IAAI,EAAE,eAAe,CAAC,CAAC;KAC1C;IAED,IAAI,IAAI,CAAC,iBAAiB,CAAC,IAAI,mBAAmB,CAAC,OAAO,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE;QACxF,IAAI,GAAG,UAAU,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC;KAC5C;IAED,OAAO,IAAI,CAAC;AAEd,CAAC"}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { ISourceProps } from "../../../../pnpjs/SourceItems/Interface";
|
|
2
|
-
import { IAnySourceItem
|
|
2
|
+
import { IAnySourceItem } from "../../SourceList/IAnyContent";
|
|
3
3
|
import { ISourceSearch } from "../Interfaces/ISourceSearch";
|
|
4
4
|
export declare function addDateTimeFileInfoSearch(item: IAnySourceItem): IAnySourceItem;
|
|
5
|
-
export declare function addItemIsA(item: IAnySourceItem, ItemIsAThis: IItemIsAValues): IAnySourceItem;
|
|
6
|
-
export declare function addOtherIsAMeta(item: IAnySourceItem): IAnySourceItem;
|
|
7
5
|
export declare function addSearchMeta1(items: IAnySourceItem[], sourceProps: ISourceProps, search: ISourceSearch): IAnySourceItem[];
|
|
8
6
|
/**
|
|
9
7
|
* addStandardSearchArrays:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addSearchMeta1.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/functions/addSearchMeta1.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,yCAAyC,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,
|
|
1
|
+
{"version":3,"file":"addSearchMeta1.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/functions/addSearchMeta1.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,yCAAyC,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAI,MAAM,6BAA6B,CAAC;AAI9D,wBAAgB,yBAAyB,CAAG,IAAI,EAAE,cAAc,GAAI,cAAc,CAoCjF;AAED,wBAAgB,cAAc,CAAG,KAAK,EAAE,cAAc,EAAE,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,EAAE,aAAa,GAAI,cAAc,EAAE,CAwU7H;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,uBAAuB,CAAE,IAAI,EAAE,cAAc,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,EAAE,aAAa,GAAI,cAAc,CAehI;AAED;;;;;;;;;;GAUG;AAEH,wBAAgB,oBAAoB,CAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,UAAU,EAAE,MAAM,EAAE,EAAE,WAAW,GAAE,MAA2B,GAAI,cAAc,CA+BjK"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { DefaultOverflowTab } from "../../../../banner/components/EasyPages/epTypes";
|
|
2
|
-
import { ItemIsADraft, ItemIsAKeys, ItemIsAMajor, ItemIsAValues, ItemIsCode, ItemIsPublished, ItemIsUnPublished } from "../../SourceList/IAnyContent";
|
|
3
2
|
import { ItemIsADocSet, ItemIsAFile, ItemIsAFolder, ItemIsANews, ItemIsANewsLink, ItemIsAPage } from "../../SourceList/IAnyContent";
|
|
4
|
-
import {
|
|
3
|
+
import { addItemIsA, addOtherIsAMeta } from "./addItemIsA";
|
|
5
4
|
export function addDateTimeFileInfoSearch(item) {
|
|
6
5
|
//https://stackoverflow.com/a/15191245
|
|
7
6
|
if (item.Created) {
|
|
@@ -31,40 +30,6 @@ export function addDateTimeFileInfoSearch(item) {
|
|
|
31
30
|
item.sourceSearchLC = [];
|
|
32
31
|
return item;
|
|
33
32
|
}
|
|
34
|
-
export function addItemIsA(item, ItemIsAThis) {
|
|
35
|
-
const itemIsAIdx = ItemIsAValues.indexOf(ItemIsAThis);
|
|
36
|
-
if (itemIsAIdx < 0) {
|
|
37
|
-
console.log('WARNING: addItemIsA is invalid!', ItemIsAThis);
|
|
38
|
-
return item;
|
|
39
|
-
}
|
|
40
|
-
else {
|
|
41
|
-
const itemIsAKey = ItemIsAKeys[itemIsAIdx];
|
|
42
|
-
item.searchTextLC = `${ItemIsAThis.toLocaleLowerCase()} || ${item.searchTextLC}`;
|
|
43
|
-
item.meta.push(ItemIsAThis);
|
|
44
|
-
item[`${itemIsAKey}`] = true;
|
|
45
|
-
return item;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
export function addOtherIsAMeta(item) {
|
|
49
|
-
const minorVersion = item.OData__UIVersionString && item.OData__UIVersionString.split('.')[1] !== '0' ? true : false;
|
|
50
|
-
if (minorVersion === true) {
|
|
51
|
-
item = addItemIsA(item, ItemIsADraft);
|
|
52
|
-
}
|
|
53
|
-
else {
|
|
54
|
-
item = addItemIsA(item, ItemIsAMajor);
|
|
55
|
-
}
|
|
56
|
-
;
|
|
57
|
-
if (item.PromotedState === 1) {
|
|
58
|
-
item = addItemIsA(item, ItemIsUnPublished);
|
|
59
|
-
}
|
|
60
|
-
else if (item.PromotedState === 2) {
|
|
61
|
-
item = addItemIsA(item, ItemIsPublished);
|
|
62
|
-
}
|
|
63
|
-
if (item['File_x0020_Type'] && ProgrammingSharePointKeys.indexOf(item['File_x0020_Type']) > -1) {
|
|
64
|
-
item = addItemIsA(item, ItemIsCode);
|
|
65
|
-
}
|
|
66
|
-
return item;
|
|
67
|
-
}
|
|
68
33
|
export function addSearchMeta1(items, sourceProps, search) {
|
|
69
34
|
//searchNest will be an array of prop key arrays... so [ 'Author/Title' ] => [ ["Author","Title"] ]
|
|
70
35
|
const searchNest = [];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addSearchMeta1.js","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/functions/addSearchMeta1.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,iDAAiD,CAAC;AAErF,OAAO,EAAkC,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,eAAe,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AAEtL,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,aAAa,EAAE,WAAW,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AACpI,OAAO,EAAE,yBAAyB,EAAE,MAAM,yCAAyC,CAAC;AAEpF,MAAM,UAAU,yBAAyB,CAAG,IAAoB;IAE9D,sCAAsC;IACtC,IAAK,IAAI,CAAC,OAAO,EAAG;QAClB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC1C,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,CAAC;KACjD;IAED,IAAK,IAAI,CAAC,QAAQ,EAAG;QACnB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC5C,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,cAAc,EAAE,CAAC;KACnD;IAED,IAAK,IAAI,CAAC,kBAAkB,EAAG;QAC7B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;QACvD,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,CAAC;KACvD;IAED,+CAA+C;IAC/C,IAAK,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC,iBAAiB,EAAG;QAAE,IAAI,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,iBAAiB,CAAE;KAAE;IAElH,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;IACrB,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;IAEvB,6BAA6B;IAC7B,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;IACrB,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;IAEvB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;IACpB,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;IAEtB,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;IACvB,IAAI,CAAC,cAAc,GAAG,EAAE,CAAC;IAEzB,OAAO,IAAI,CAAC;AAEd,CAAC;AAED,MAAM,UAAU,UAAU,CAAE,IAAoB,EAAE,WAA2B;IAE3E,MAAM,UAAU,GAAG,aAAa,CAAC,OAAO,CAAE,WAA6B,CAAE,CAAC;IAE1E,IAAK,UAAU,GAAG,CAAC,EAAG;QACpB,OAAO,CAAC,GAAG,CAAE,kCAAkC,EAAE,WAAW,CAAE,CAAC;QAC/D,OAAO,IAAI,CAAC;KAEb;SAAM;QACL,MAAM,UAAU,GAAG,WAAW,CAAE,UAAU,CAAE,CAAC;QAC7C,IAAI,CAAC,YAAY,GAAG,GAAI,WAAW,CAAC,iBAAiB,EAAG,OAAO,IAAI,CAAC,YAAY,EAAE,CAAC;QACnF,IAAI,CAAC,IAAI,CAAC,IAAI,CAAE,WAAW,CAAE,CAAC;QAE9B,IAAI,CAAC,GAAG,UAAU,EAAE,CAAC,GAAG,IAAI,CAAC;QAE7B,OAAO,IAAI,CAAC;KACb;AAGH,CAAC;AAED,MAAM,UAAU,eAAe,CAAE,IAAoB;IAEnD,MAAM,YAAY,GAAG,IAAI,CAAC,sBAAsB,IAAI,IAAI,CAAC,sBAAsB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC;IACrH,IAAK,YAAY,KAAK,IAAI,EAAG;QAC3B,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,YAAY,CAAE,CAAC;KAEzC;SAAM;QACL,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,YAAY,CAAE,CAAC;KACzC;IAAA,CAAC;IAEF,IAAK,IAAI,CAAC,aAAa,KAAK,CAAC,EAAG;QAC9B,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,iBAAiB,CAAE,CAAC;KAE9C;SAAM,IAAK,IAAI,CAAC,aAAa,KAAK,CAAC,EAAG;QACrC,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,eAAe,CAAE,CAAC;KAC5C;IAED,IAAK,IAAI,CAAC,iBAAiB,CAAC,IAAI,yBAAyB,CAAC,OAAO,CAAE,IAAI,CAAC,iBAAiB,CAAC,CAAE,GAAG,CAAC,CAAC,EAAG;QAClG,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,UAAU,CAAE,CAAC;KACvC;IAED,OAAO,IAAI,CAAC;AAEd,CAAC;AAED,MAAM,UAAU,cAAc,CAAG,KAAuB,EAAE,WAAyB,EAAE,MAAqB;IAExG,mGAAmG;IACnG,MAAM,UAAU,GAAe,EAAE,CAAC;IAClC,WAAW,CAAC,WAAW,CAAC,GAAG,CAAE,IAAI,CAAC,EAAE;QAClC,IAAK,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE;YACrD,UAAU,CAAC,IAAI,CAAE,IAAI,CAAC,IAAI,EAAE,CAAC,OAAO,CAAC,GAAG,EAAC,EAAE,CAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAE,CAAE;SAClE;aAAM;YACL,UAAU,CAAC,IAAI,CAAE,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,OAAO,CAAC,GAAG,EAAC,EAAE,CAAE,CAAC,CAAE,CAAE;SACpD;IACH,CAAC,CAAC,CAAC;IAEH,YAAY;IAEZ,KAAK,CAAC,GAAG,CAAG,CAAE,IAAoB,EAAG,EAAE;QACrC,IAAI,WAAW,GAAG,EAAE,CAAC;QACrB,IAAI,UAAU,GAAG,EAAE,CAAC;QACpB,MAAM,UAAU,GAAG,EAAE,CAAC;QAEtB,IAAI,GAAG,yBAAyB,CAAE,IAAI,CAAE,CAAC;QAEzC,IAAK,IAAI,CAAC,iBAAiB,EAAG;YAAE,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,iBAAiB,CAAE;SAAE;QAE3E,MAAM,IAAI,GAAa,EAAE,CAAC;QAE1B,4FAA4F;QAC5F,MAAM,UAAU,GAAY,UAAU,CAAC,GAAG,CAAE,CAAE,SAAmB,EAAE,GAAW,EAAG,EAAE;YAEjF,IAAK,SAAS,CAAC,MAAM,KAAK,CAAC,EAAG;gBAC5B,IAAI,CAAE,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,CAAE,GAAG,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,+DAA+D;gBAC9H,IAAK,KAAK,CAAC,OAAO,CAAE,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,EAAE;oBAC1C,OAAO,GAAG,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,IAAI,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;iBAE9E;qBAAM;oBACL,OAAO,GAAG,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,IAAI,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,EAAE,CAAC;iBACpE;aAEF;iBAAM,IAAK,SAAS,CAAC,MAAM,KAAK,CAAC,EAAG;gBAEnC,gDAAgD;gBAEhD,IAAI,QAAQ,GAAY,KAAK,CAAC;gBAE9B,IAAI;oBACF,IAAK,KAAK,CAAC,OAAO,CAAE,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,EAAE;wBAC1C,8DAA8D;wBAC9D,IAAI,CAAE,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,CAAE,GAAG,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAC,GAAG,CAAE,CAAE,KAAU,EAAG,EAAE,GAAG,OAAO,KAAK,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,2FAA2F;qBAEtN;yBAAM;wBACL,IAAK,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,EAAG;4BAC1B,IAAI,CAAE,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,CAAE,GAAG,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,+DAA+D;yBAC/I;6BAAM;4BACL,2IAA2I;4BAC3I,IAAI,CAAE,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,CAAE,GAAG,KAAK,CAAC;4BAC/C,QAAQ,GAAG,IAAI,CAAC;yBACjB;qBACF;oBAEH;;uBAEG;oBACD,+DAA+D;oBAC/D,6IAA6I;iBAE9I;gBAAC,OAAO,CAAC,EAAE;oBACV,qCAAqC;oBACrC,MAAM,QAAQ,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,CAAC,KAAK,CAAC;oBACnF,IAAI,CAAE,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,CAAE,GAAG,QAAQ,CAAC;oBAClD,OAAO,CAAC,GAAG,CAAE,qBAAqB,EAAE,IAAI,EAAE,WAAW,CAAC,WAAW,EAAE,GAAG,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,EAAG,QAAQ,CAAG,CAAC;oBAC1G,QAAQ,GAAG,IAAI,CAAC;iBACjB;gBAED,IAAK,QAAQ,KAAK,IAAI,EAAG;oBACvB,OAAO,GAAG,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,MAAM,CAAC;iBAChD;qBAAM;oBAEL,kHAAkH;oBAClH,IAAK,KAAK,CAAC,OAAO,CAAE,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAG,EAAE;wBAC3D,IAAI,MAAM,GAAG,GAAG,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,IAAI,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;wBAEpG,4BAA4B;wBAC5B,IAAK,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,KAAK,yBAAyB,EAAG;4BAClE,MAAM,IAAI,uBAAuB,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;yBAAE;wBACvF,OAAO,MAAM,CAAC;qBAEf;yBAAM,IAAK,KAAK,CAAC,OAAO,CAAE,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,EAAI,EAAE,yBAAyB;wBAE9E;;;2BAGG;wBAEH,IAAK,IAAI,CAAE,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,CAAE,EAAG;4BAC5C,MAAM,MAAM,GAAG,GAAG,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,IAAI,IAAI,CAAE,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,CAAE,CAAE,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;4BACxG,OAAO,MAAM,CAAC;yBACf;qBAEF;yBAAM;wBAEL,IAAI,MAAM,GAAG,GAAG,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,IAAI,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,SAAS,CAAC,CAAC,CAAC,CAAG,EAAE,CAAC;wBAE1F,4BAA4B;wBAC5B,IAAK,WAAW,CAAC,WAAW,CAAE,GAAG,CAAE,KAAK,yBAAyB,EAAG;4BAClE,MAAM,IAAI,uBAAuB,IAAI,CAAE,SAAS,CAAC,CAAC,CAAC,CAAE,CAAE,SAAS,CAAC,CAAC,CAAC,CAAG,EAAE,CAAC;yBAAE;wBAE7E,OAAO,MAAM,CAAC;qBACf;iBACF;aAEF;QAEH,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAEhB,8BAA8B;QAC9B,UAAU,CAAC,KAAK,CAAC,MAAM,CAAE,CAAC,GAAG,CAAE,IAAI,CAAC,EAAE;YACpC,IAAK,IAAI,EAAG;gBAAE,IAAI,CAAC,IAAI,CAAE,IAAI,CAAE,CAAC;aAAE;QACpC,CAAC,CAAC,CAAC;QAEH,8FAA8F;QAC9F,MAAM,YAAY,GAAY,WAAW,CAAC,WAAW,CAAC,GAAG,CAAE,IAAI,CAAC,EAAE;YAChE,IAAK,KAAK,CAAC,OAAO,CAAE,IAAI,CAAE,IAAI,CAAE,CAAE,EAAE;gBAClC,OAAO,GAAG,IAAI,CAAE,IAAI,CAAE,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;aAEpC;iBAAM;gBACL,OAAO,GAAG,IAAI,CAAE,IAAI,CAAE,EAAE,CAAC;aAC1B;QACH,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAEhB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC,iBAAiB,EAAE,CAAC;QAErD,IAAI,CAAC,IAAI,GAAG,CAAC,GAAG,IAAI,EAAG,CAAC;QAExB,IAAI,GAAG,uBAAuB,CAAE,IAAI,EAAE,WAAW,EAAE,MAAM,CAAE,CAAC;QAE5D,4CAA4C;QAC5C,uDAAuD;QACvD,kEAAkE;QAClE,qDAAqD;QACrD,4DAA4D;QAC5D,yCAAyC;QACzC,6CAA6C;QAC7C,QAAQ;QACR,QAAQ;QACR,IAAI;QAEJ,2CAA2C;QAC3C,qDAAqD;QACrD,iEAAiE;QACjE,oDAAoD;QACpD,4DAA4D;QAC5D,wCAAwC;QACxC,4CAA4C;QAC5C,QAAQ;QACR,QAAQ;QACR,IAAI;QAEJ,wCAAwC;QACxC,uDAAuD;QACvD,kEAAkE;QAClE,qDAAqD;QACrD,4DAA4D;QAC5D,yCAAyC;QACzC,6CAA6C;QAC7C,QAAQ;QACR,QAAQ;QACR,IAAI;QAEJ,iEAAiE;QAEjE,IAAI,CAAC,eAAe,GAAG,EAAE,CAAC,CAAC,+CAA+C;QAE1E,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QACjE,IAAK,IAAI,CAAC,iBAAiB,CAAC,EAAG,EAAG,mCAAmC;YACnE,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,iBAAiB,CAAC,CAAE,CAAE,mCAAmC;YAC1E,WAAW,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,qBAAqB,CAAC,CAAE,mCAAmC;YACrH,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,IAAI,EAAE,EAAC,EAAE,CAAC,CAAC,CAAE,mCAAmC;YAC5G,UAAU,GAAG,EAAE,CAAC;YAChB,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,WAAW,CAAE,CAAC;YAEzC,gHAAgH;SAC/G;aAAM,IAAK,IAAI,CAAC,oBAAoB,KAAK,CAAC,IAAI,MAAM,GAAG,CAAC,CAAC,EAAG;YAC3D,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,CAAE,MAAM,GAAG,CAAC,CAAE,CAAC;YACjD,IAAK,IAAI,CAAC,IAAI,KAAK,MAAM,EAAG;gBAC1B,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC;gBACnB,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC;gBACzB,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,OAAO,CAAC,OAAO,EAAC,EAAE,CAAC,CAAC,CAAE,mCAAmC;gBACpG,UAAU,GAAG,IAAI,CAAC,WAAW,CAAC;gBAE9B,IAAK,IAAI,CAAC,IAAI,CAAC,wBAAwB,KAAK,IAAI,EAAG;oBACjD,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,eAAe,CAAE,CAAC;iBAE5C;qBAAM,IAAK,IAAI,CAAC,aAAa,KAAK,CAAC,IAAI,IAAI,CAAC,aAAa,KAAK,CAAC,EAAG;oBACjE,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,WAAW,CAAE,CAAC;iBAExC;qBAAM;oBACL,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,WAAW,CAAE,CAAC;iBAExC;aAEF;YAED,wBAAwB;SACzB;aAAM,IAAK,CAAC,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,oBAAoB,KAAK,CAAC,EAAG;YAE1D,MAAM,eAAe,GAAG,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YAExF,IAAK,eAAe,CAAC,OAAO,CAAE,cAAc,CAAE,GAAG,CAAC,CAAC,EAAG;gBACpD,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;gBACrB,IAAI,CAAC,iBAAiB,CAAC,GAAG,QAAQ,CAAC;gBACnC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,CAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC;gBACxD,UAAU,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,CAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC;gBACvD,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,aAAa,CAAE,CAAC;aAE1C;iBAAM;gBACL,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;gBACrB,IAAI,CAAC,iBAAiB,CAAC,GAAG,QAAQ,CAAC;gBACnC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,CAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,iBAAiB;gBAC1E,MAAM,OAAO,GAAG,GAAG,WAAW,CAAC,MAAM,GAAG,WAAW,CAAC,eAAe,CAAC,CAAC,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC;gBACzG,MAAM,gBAAgB,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAE,OAAO,CAAE,KAAK,CAAC,CAAC,CAAC;oBAC9D,IAAI,CAAC,OAAO,CAAC,SAAS,CAAE,OAAO,CAAC,MAAM,CAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC;gBAC1D,UAAU,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,CAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,gBAAgB,CAAC,SAAS,CAAE,CAAC,EAAE,gBAAgB,CAAC,WAAW,CAAE,IAAI,CAAC,WAAW,CAAE,GAAE,CAAC,CAAE,CAAC;gBACzI,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,aAAa,CAAE,CAAC;aAE1C;SAEF;aAAM;YACL,IAAI,CAAC,IAAI,GAAG,WAAW,CAAC,OAAO,CAAC;YAChC,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC;YACzB,UAAU,GAAG,wBAAwB,CAAC;SAEvC;QAED,kCAAkC;QAClC,IAAK,IAAI,CAAC,oBAAoB,KAAK,CAAC,IAAI,IAAI,CAAC,oBAAoB,KAAK,CAAC,EAAG;YACxE,MAAM,MAAM,GAAW,GAAG,WAAW,CAAC,MAAM,GAAG,WAAW,CAAC,eAAe,CAAC,CAAC,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,EAAE,CAAA;YAC/G,MAAM,YAAY,GAAW,IAAI,CAAC,OAAO,IAAI,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAE,MAAM,EAAE,EAAE,CAAE,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,WAAW,EAAE,EAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;YACjI,MAAM,UAAU,GAAa,YAAY,CAAC,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;YAClJ,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;YACjC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;SAC9B;QAGD,IAAI,GAAG,eAAe,CAAE,IAAI,CAAE,CAAC;QAE/B,IAAI,CAAC,WAAW,GAAG,GAAG,WAAW,EAAE,CAAC;QACpC,IAAI,CAAC,UAAU,GAAG,GAAG,UAAU,EAAE,CAAC;QAClC,IAAI,CAAC,UAAU,GAAG,GAAG,UAAU,EAAE,CAAC;QAOlC;;WAEG;QAEH,qGAAqG;QACrG,mCAAmC;QACnC,IAAI;QAEJ,IAAI,CAAC,MAAM,GAAG,WAAW,CAAC,GAAG,CAAC;QAE9B,uCAAuC;QACvC,uCAAuC;QACvC,IAAI;QAEJ;;WAEG;QAEH,4EAA4E;QAC5E,2CAA2C;QAC3C,sCAAsC;QACtC,yFAAyF;QACzF,IAAI;QAEJ,sDAAsD;QACtD,+BAA+B;QAC/B,0DAA0D;QAC1D,+GAA+G;QAC/G,6DAA6D;QAC7D,WAAW;QACX,8BAA8B;QAC9B,iCAAiC;QACjC,IAAI;QAEJ,mCAAmC;QACnC,sBAAsB;QACtB,wHAAwH;QACxH,+IAA+I;QAC/I,qBAAqB;QACrB,IAAI;QAGJ;;WAEG;QACH,4FAA4F;QAC5F,sEAAsE;QACtE,qLAAqL;QACrL,2CAA2C;QAE3C,wBAAwB;QACxB,2FAA2F;QAC3F,8DAA8D;QAC9D,sGAAsG;QAEtG,IAAI;QAEJ,8DAA8D;QAC9D,gCAAgC;QAChC,mFAAmF;QACnF,IAAI;QAGJ,6GAA6G;QAC7G,6CAA6C;QAE7C,kCAAkC;QAClC,qEAAqE;QACrE,IAAI;QACJ,mFAAmF;QAEnF,uCAAuC;QACvC,qCAAqC;QACrC,qCAAqC;IAEvC,CAAC,CAAC,CAAC;IAEH,OAAO,KAAK,CAAC;AAEf,CAAC;AAED;;;;;;;;;;GAUG;AACH,MAAM,UAAU,uBAAuB,CAAE,IAAoB,EAAE,WAAyB,EAAE,MAAqB;IAE7G,wCAAwC;IACxC,IAAK,MAAM,IAAI,MAAM,CAAC,GAAG,IAAI,MAAM,CAAC,GAAG,CAAC,MAAM;QAAG,IAAI,GAAG,oBAAoB,CAAE,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,CAAC,QAAQ,EAAE,WAAW,CAAC,WAAW,CAAE,CAAC;IAC7J,IAAK,MAAM,IAAI,MAAM,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM;QAAG,IAAI,GAAG,oBAAoB,CAAE,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,IAAI,CAAC,QAAQ,EAAE,WAAW,CAAC,WAAW,CAAE,CAAC;IAClK,IAAK,MAAM,IAAI,MAAM,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM;QAAG,IAAI,GAAG,oBAAoB,CAAE,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,IAAI,CAAC,QAAQ,EAAE,WAAW,CAAC,WAAW,CAAE,CAAC;IAElK,IAAK,WAAW,CAAC,KAAK,IAAI,WAAW,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;QAAG,IAAI,GAAG,oBAAoB,CAAE,IAAI,EAAE,OAAO,EAAE,WAAW,CAAC,KAAK,EAAE,EAAE,EAAE,WAAW,CAAC,WAAW,CAAE,CAAC;IACtJ,IAAK,WAAW,CAAC,KAAK,IAAI,WAAW,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;QAAG,IAAI,GAAG,oBAAoB,CAAE,IAAI,EAAE,OAAO,EAAE,WAAW,CAAC,KAAK,EAAE,EAAE,EAAE,WAAW,CAAC,WAAW,CAAE,CAAC;IACtJ,IAAK,WAAW,CAAC,KAAK,IAAI,WAAW,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;QAAG,IAAI,GAAG,oBAAoB,CAAE,IAAI,EAAE,OAAO,EAAE,WAAW,CAAC,KAAK,EAAE,EAAE,EAAE,WAAW,CAAC,WAAW,CAAE,CAAC;IACtJ,IAAK,WAAW,CAAC,KAAK,IAAI,WAAW,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;QAAG,IAAI,GAAG,oBAAoB,CAAE,IAAI,EAAE,OAAO,EAAE,WAAW,CAAC,KAAK,EAAE,EAAE,EAAE,WAAW,CAAC,WAAW,CAAE,CAAC;IACtJ,IAAK,WAAW,CAAC,KAAK,IAAI,WAAW,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;QAAG,IAAI,GAAG,oBAAoB,CAAE,IAAI,EAAE,OAAO,EAAE,WAAW,CAAC,KAAK,EAAE,EAAE,EAAE,WAAW,CAAC,WAAW,CAAE,CAAC;IAEtJ,OAAO,IAAI,CAAC;AAEd,CAAC;AAED;;;;;;;;;;GAUG;AAEH,MAAM,UAAU,oBAAoB,CAAE,IAAS,EAAE,GAAW,EAAE,QAAkB,EAAE,UAAoB,EAAE,cAAsB,kBAAkB;IAE9I,IAAK,CAAC,GAAG;QAAG,OAAO,IAAI,CAAC;IACxB,IAAK,CAAC,IAAI,CAAE,GAAG,CAAC;QAAG,IAAI,CAAE,GAAG,CAAE,GAAG,EAAE,CAAC;IACpC,IAAK,CAAC,IAAI,CAAC,IAAI;QAAG,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC,CAAE,iGAAiG;IAEpI,IAAK,CAAC,IAAI,CAAE,GAAG,GAAG,IAAI,CAAE;QAAG,IAAI,CAAE,GAAG,GAAG,IAAI,CAAE,GAAG,EAAE,CAAC;IACjD,kEAAkE;IAClE,IAAK,CAAC,IAAI,CAAE,GAAG,GAAG,QAAQ,CAAE;QAAG,IAAI,CAAE,GAAG,GAAG,QAAQ,CAAE,GAAG,EAAE,CAAC;IAC7D,IAAK,CAAC,IAAI,CAAE,GAAG,GAAG,UAAU,CAAE;QAAG,IAAI,CAAE,GAAG,GAAG,UAAU,CAAE,GAAG,EAAE,CAAC;IAE/D,QAAQ,CAAC,GAAG,CAAE,CAAE,OAAe,EAAE,GAAW,EAAG,EAAE;QAC/C,kGAAkG;QAClG,MAAM,SAAS,GAAG,UAAU,IAAI,UAAU,CAAC,MAAM,GAAG,CAAC,IAAI,UAAU,CAAC,MAAM,IAAI,GAAG,CAAC,CAAC,CAAC,UAAU,CAAE,GAAG,CAAE,CAAC,CAAC,CAAC,OAAO,CAAC,iBAAiB,EAAE,CAAC;QACpI,IAAK,IAAI,CAAC,YAAY,CAAC,OAAO,CAAE,SAAS,CAAE,GAAG,CAAE,CAAC,EAAG;YAClD,IAAI,CAAC,GAAG,GAAG,QAAQ,CAAE,CAAC,IAAI,CAAE,OAAO,CAAE,CAAC;YACtC,IAAI,CAAC,GAAG,GAAG,UAAU,CAAE,CAAC,IAAI,CAAE,SAAS,CAAE,CAAC;YAE1C,sHAAsH;YACtH,IAAI,CAAC,IAAI,CAAC,IAAI,CAAE,OAAO,CAAE,CAAC;SAC3B;IACH,CAAC,CAAC,CAAC;IAEH,kEAAkE;IAClE,IAAK,IAAI,CAAC,GAAG,GAAG,QAAQ,CAAE,CAAC,MAAM,KAAK,CAAC,EAAG;QACxC,IAAI,CAAC,GAAG,GAAG,QAAQ,CAAE,CAAC,IAAI,CAAE,WAAW,CAAE,CAAC;QAC1C,IAAI,CAAC,GAAG,GAAG,UAAU,CAAE,CAAC,IAAI,CAAE,WAAW,CAAC,iBAAiB,EAAE,CAAE,CAAC;KACjE;IAED,OAAO,IAAI,CAAC;AAEd,CAAC"}
|
|
1
|
+
{"version":3,"file":"addSearchMeta1.js","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/functions/addSearchMeta1.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addSearchMeta2.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/functions/addSearchMeta2.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"addSearchMeta2.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/functions/addSearchMeta2.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAG1D;;;;;GAKG;AAEH,wBAAgB,cAAc,CAAC,KAAK,EAAE,cAAc,EAAE,EAAE,WAAW,EAAE,YAAY,GAAG,cAAc,EAAE,CAiDnG"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { check4Gulp } from "@mikezimm/fps-pnp2/lib/services/sp/CheckGulping";
|
|
2
|
+
import { addItemIsA } from "./addItemIsA";
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* @param items
|
|
@@ -42,6 +43,9 @@ export function addSearchMeta2(items, SearchTypes) {
|
|
|
42
43
|
if (SearchTypes.objs[searchTypeIdx]) {
|
|
43
44
|
const adjustIdx = SearchTypes.objs[searchTypeIdx].adjust ? SearchTypes.objs[searchTypeIdx].adjust : 0;
|
|
44
45
|
typeIdx = searchTypeIdx + adjustIdx;
|
|
46
|
+
if (SearchTypes.objs[searchTypeIdx].contentGroup)
|
|
47
|
+
item.contentGroup = SearchTypes.objs[searchTypeIdx].contentGroup;
|
|
48
|
+
item = addItemIsA(item, `ItemIs${SearchTypes.objs[searchTypeIdx].contentGroup}Content`);
|
|
45
49
|
}
|
|
46
50
|
// if ( item.type === 'entity' ) {
|
|
47
51
|
// // console.log('found Entity:', item.type, item.typeIdx, item );
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addSearchMeta2.js","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/functions/addSearchMeta2.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,iDAAiD,CAAC;
|
|
1
|
+
{"version":3,"file":"addSearchMeta2.js","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/functions/addSearchMeta2.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,iDAAiD,CAAC;AAG7E,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE1C;;;;;GAKG;AAEH,MAAM,UAAU,cAAc,CAAC,KAAuB,EAAE,WAAyB;IAE/E,KAAK,CAAC,GAAG,CAAC,CAAC,IAAoB,EAAE,EAAE;QAEjC,IAAI,EAAE,WAAW,EAAE,UAAU,EAAE,UAAU,EAAE,GAAG,IAAI,CAAC;QACnD;;WAEG;QACH,4FAA4F;QAC5F,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,MAAM,EAAE;YAAE,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC;SAAE;QAC/D,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,WAAW,EAAE;YAAE,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC;SAAE,CAAC,uDAAuD;QAC9K,IAAI,CAAC,UAAU,EAAE;YAAE,UAAU,GAAG,EAAE,CAAC;SAAE;QAErC,IAAI,CAAC,UAAU,EAAE;YACf,IAAI,IAAI,CAAC,wBAAwB,EAAE;gBAAE,UAAU,GAAG,IAAI,CAAC,wBAAwB,CAAC;aAAE;iBAC7E,IAAI,IAAI,CAAC,OAAO,EAAE;gBAAE,UAAU,GAAG,IAAI,CAAC,OAAO,CAAC;aAAE;iBAChD,IAAI,IAAI,CAAC,wBAAwB,CAAC,EAAE;gBAAE,UAAU,GAAG,IAAI,CAAC,wBAAwB,CAAC,CAAC;aAAE;SAE1F;QAED,IAAI,aAAa,GAAG,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACxD,IAAI,OAAO,GAAG,aAAa,CAAC;QAC5B,IAAI,aAAa,KAAK,CAAC,CAAC,EAAE;YACxB,IAAK,UAAU,EAAE,KAAK,IAAI;gBAAG,OAAO,CAAC,GAAG,CAAC,kCAAkC,EAAE,IAAI,CAAC,IAAI,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;SAC3G;QAED,oGAAoG;QACpG,IAAK,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,EAAG;YACrC,MAAM,SAAS,GAAG,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;YACtG,OAAO,GAAG,aAAa,GAAG,SAAS,CAAC;YACpC,IAAK,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,YAAY;gBAAG,IAAI,CAAC,YAAY,GAAG,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,YAAY,CAAC;YACrH,IAAI,GAAG,UAAU,CAAE,IAAI,EAAE,SAAS,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,YAAY,SAAS,CAAE,CAAC;SAC3F;QAGD,kCAAkC;QAClC,qEAAqE;QACrE,IAAI;QACJ,IAAI,CAAC,OAAO,GAAG,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QACpE,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;QAEnC,IAAI,CAAC,WAAW,GAAG,GAAG,WAAW,EAAE,CAAC;QACpC,IAAI,CAAC,UAAU,GAAG,GAAG,UAAU,EAAE,CAAC;QAClC,IAAI,CAAC,UAAU,GAAG,GAAG,UAAU,EAAE,CAAC;IAEpC,CAAC,CAAC,CAAC;IAEH,OAAO,KAAK,CAAC;AAEf,CAAC"}
|
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
* Originally copied from IAnyContent in ALVFinMan.
|
|
3
3
|
* Meant to be parent to be extended.
|
|
4
4
|
*/
|
|
5
|
+
import { IContentGroup } from "../SearchPage/Interfaces/IContentGroup";
|
|
5
6
|
/**
|
|
6
7
|
* WARNING
|
|
7
8
|
* Constants, ItemIsAValues, IItemIsAValues, ItemIsAKeys AND IAnySourceItem MUST BE IN SYNC AND IN ORDER
|
|
8
9
|
*/
|
|
9
|
-
export type IItemIsAValues = 'DocSetItem' | 'FileItem' | 'FolderItem' | 'PageItem' | 'NewsItem' | 'NewsLinkItem' | 'ItemIsADraft' | 'ItemIsAMajor' | 'ItemIsPublished' | 'ItemIsUnPublished' | '
|
|
10
|
+
export type IItemIsAValues = 'DocSetItem' | 'FileItem' | 'FolderItem' | 'PageItem' | 'NewsItem' | 'NewsLinkItem' | 'ItemIsADraft' | 'ItemIsAMajor' | 'ItemIsPublished' | 'ItemIsUnPublished' | 'ItemIsCodeContent' | 'ItemIsOfficeContent' | 'ItemIsDataContent' | 'ItemIsMediaContent' | 'ItemIsSharePointContent';
|
|
10
11
|
/**
|
|
11
12
|
* WARNING
|
|
12
13
|
* Constants, ItemIsAValues, IItemIsAValues, ItemIsAKeys AND IAnySourceItem MUST BE IN SYNC AND IN ORDER
|
|
@@ -21,7 +22,11 @@ export declare const ItemIsADraft: IItemIsAValues;
|
|
|
21
22
|
export declare const ItemIsAMajor: IItemIsAValues;
|
|
22
23
|
export declare const ItemIsPublished: IItemIsAValues;
|
|
23
24
|
export declare const ItemIsUnPublished: IItemIsAValues;
|
|
24
|
-
export declare const
|
|
25
|
+
export declare const ItemIsCodeContent: IItemIsAValues;
|
|
26
|
+
export declare const ItemIsOfficeContent: IItemIsAValues;
|
|
27
|
+
export declare const ItemIsDataContent: IItemIsAValues;
|
|
28
|
+
export declare const ItemIsMediaContent: IItemIsAValues;
|
|
29
|
+
export declare const ItemIsSharePointContent: IItemIsAValues;
|
|
25
30
|
/**
|
|
26
31
|
* WARNING
|
|
27
32
|
* Constants, ItemIsAValues, IItemIsAValues, ItemIsAKeys AND IAnySourceItem MUST BE IN SYNC AND IN ORDER
|
|
@@ -31,7 +36,7 @@ export declare const ItemIsAValues: IItemIsAValues[];
|
|
|
31
36
|
* WARNING
|
|
32
37
|
* Constants, ItemIsAValues, IItemIsAValues, ItemIsAKeys AND IAnySourceItem MUST BE IN SYNC AND IN ORDER
|
|
33
38
|
*/
|
|
34
|
-
export type IItemIsAKeys = 'itemIsADocSet' | 'itemIsAFile' | 'itemIsAFolder' | 'itemIsAPage' | 'itemIsANews' | 'itemIsANewsLink' | 'itemIsADraft' | 'itemIsAMajor' | 'itemIsPublished' | 'itemIsUnPublished' | '
|
|
39
|
+
export type IItemIsAKeys = 'itemIsADocSet' | 'itemIsAFile' | 'itemIsAFolder' | 'itemIsAPage' | 'itemIsANews' | 'itemIsANewsLink' | 'itemIsADraft' | 'itemIsAMajor' | 'itemIsPublished' | 'itemIsUnPublished' | 'itemIsCodeContent' | 'itemIsOfficeContent' | 'itemIsDataContent' | 'itemIsMediaContent' | 'itemIsSharePointContent';
|
|
35
40
|
/**
|
|
36
41
|
* WARNING
|
|
37
42
|
* Constants, ItemIsAValues, IItemIsAValues, ItemIsAKeys AND IAnySourceItem MUST BE IN SYNC AND IN ORDER
|
|
@@ -92,6 +97,11 @@ export interface IAnySourceItem extends Partial<any> {
|
|
|
92
97
|
itemIsAMajor?: boolean;
|
|
93
98
|
itemIsPublished?: boolean;
|
|
94
99
|
itemIsUnPublished?: boolean;
|
|
95
|
-
|
|
100
|
+
itemIsCodeContent?: boolean;
|
|
101
|
+
itemIsOfficeContent?: boolean;
|
|
102
|
+
itemIsDataContent?: boolean;
|
|
103
|
+
itemIsMediaContent?: boolean;
|
|
104
|
+
itemIsSharePointContent?: boolean;
|
|
105
|
+
contentGroup?: IContentGroup;
|
|
96
106
|
}
|
|
97
107
|
//# sourceMappingURL=IAnyContent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IAnyContent.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/SourceList/IAnyContent.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,YAAY,GAAG,UAAU,GAAG,YAAY,GACrE,UAAU,GAAG,UAAU,GAAG,cAAc,GACxC,cAAc,GAAG,cAAc,GAAG,iBAAiB,GAAG,mBAAmB,GAAG,
|
|
1
|
+
{"version":3,"file":"IAnyContent.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/SourceList/IAnyContent.ts"],"names":[],"mappings":"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"}
|
|
@@ -16,7 +16,11 @@ export const ItemIsADraft = `ItemIsADraft`;
|
|
|
16
16
|
export const ItemIsAMajor = `ItemIsAMajor`;
|
|
17
17
|
export const ItemIsPublished = `ItemIsPublished`;
|
|
18
18
|
export const ItemIsUnPublished = `ItemIsUnPublished`;
|
|
19
|
-
export const
|
|
19
|
+
export const ItemIsCodeContent = `ItemIsCodeContent`;
|
|
20
|
+
export const ItemIsOfficeContent = `ItemIsOfficeContent`;
|
|
21
|
+
export const ItemIsDataContent = `ItemIsDataContent`;
|
|
22
|
+
export const ItemIsMediaContent = `ItemIsMediaContent`;
|
|
23
|
+
export const ItemIsSharePointContent = `ItemIsSharePointContent`;
|
|
20
24
|
/**
|
|
21
25
|
* WARNING
|
|
22
26
|
* Constants, ItemIsAValues, IItemIsAValues, ItemIsAKeys AND IAnySourceItem MUST BE IN SYNC AND IN ORDER
|
|
@@ -25,7 +29,7 @@ export const ItemIsAValues = [
|
|
|
25
29
|
'DocSetItem', 'FileItem', 'FolderItem',
|
|
26
30
|
'PageItem', 'NewsItem', 'NewsLinkItem',
|
|
27
31
|
'ItemIsADraft', 'ItemIsAMajor', 'ItemIsPublished', 'ItemIsUnPublished',
|
|
28
|
-
'
|
|
32
|
+
'ItemIsCodeContent', 'ItemIsOfficeContent', 'ItemIsDataContent', 'ItemIsMediaContent', 'ItemIsSharePointContent',
|
|
29
33
|
];
|
|
30
34
|
/**
|
|
31
35
|
* WARNING
|
|
@@ -35,6 +39,6 @@ export const ItemIsAKeys = [
|
|
|
35
39
|
'itemIsADocSet', 'itemIsAFile', 'itemIsAFolder',
|
|
36
40
|
'itemIsAPage', 'itemIsANews', 'itemIsANewsLink',
|
|
37
41
|
'itemIsADraft', 'itemIsAMajor', 'itemIsPublished', 'itemIsUnPublished',
|
|
38
|
-
'
|
|
42
|
+
'itemIsCodeContent',
|
|
39
43
|
];
|
|
40
44
|
//# sourceMappingURL=IAnyContent.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IAnyContent.js","sourceRoot":"","sources":["../../../../src/components/molecules/SourceList/IAnyContent.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"IAnyContent.js","sourceRoot":"","sources":["../../../../src/components/molecules/SourceList/IAnyContent.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAcH;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAoB,YAAY,CAAC;AAC3D,MAAM,CAAC,MAAM,WAAW,GAAoB,UAAU,CAAC;AACvD,MAAM,CAAC,MAAM,aAAa,GAAoB,YAAY,CAAC;AAE3D,MAAM,CAAC,MAAM,WAAW,GAAoB,UAAU,CAAC;AACvD,MAAM,CAAC,MAAM,WAAW,GAAoB,UAAU,CAAC;AACvD,MAAM,CAAC,MAAM,eAAe,GAAoB,cAAc,CAAC;AAE/D,MAAM,CAAC,MAAM,YAAY,GAAoB,cAAc,CAAC;AAC5D,MAAM,CAAC,MAAM,YAAY,GAAoB,cAAc,CAAC;AAC5D,MAAM,CAAC,MAAM,eAAe,GAAoB,iBAAiB,CAAC;AAClE,MAAM,CAAC,MAAM,iBAAiB,GAAoB,mBAAmB,CAAC;AAEtE,MAAM,CAAC,MAAM,iBAAiB,GAAoB,mBAAmB,CAAC;AACtE,MAAM,CAAC,MAAM,mBAAmB,GAAoB,qBAAqB,CAAC;AAC1E,MAAM,CAAC,MAAM,iBAAiB,GAAoB,mBAAmB,CAAC;AACtE,MAAM,CAAC,MAAM,kBAAkB,GAAoB,oBAAoB,CAAC;AACxE,MAAM,CAAC,MAAM,uBAAuB,GAAoB,yBAAyB,CAAC;AAElF;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAqB;IAC7C,YAAY,EAAG,UAAU,EAAG,YAAY;IACxC,UAAU,EAAG,UAAU,EAAG,cAAc;IACxC,cAAc,EAAG,cAAc,EAAG,iBAAiB,EAAG,mBAAmB;IACzE,mBAAmB,EAAE,qBAAqB,EAAG,mBAAmB,EAAG,oBAAoB,EAAG,yBAAyB;CACpH,CAAC;AAWF;;;GAGG;AACH,MAAM,CAAC,MAAM,WAAW,GAAmB;IACzC,eAAe,EAAG,aAAa,EAAG,eAAe;IACjD,aAAa,EAAG,aAAa,EAAG,iBAAiB;IACjD,cAAc,EAAG,cAAc,EAAG,iBAAiB,EAAG,mBAAmB;IACzE,mBAAmB;CACpB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ISearchType, ISearchTypes } from "./ISearchTypes";
|
|
2
|
-
export declare const XProgrammingSharePointKeys: string[];
|
|
3
|
-
export declare const XProgrammingSharePointSearchTypes: ISearchType[];
|
|
4
|
-
export declare const ProgrammingSharePointKeys: string[];
|
|
5
|
-
export declare const ProgrammingSharePointSearchTypes: ISearchType[];
|
|
6
|
-
/**
|
|
7
|
-
* Use SearchTypes for addSearchMeta1 && addSearchMeta2 function
|
|
8
|
-
* -- if you do not have a consolidated search page (with multiple sources)
|
|
9
|
-
*/
|
|
10
|
-
export declare const MAXSearchTypes: ISearchTypes;
|
|
11
|
-
//# sourceMappingURL=ProgrammingSharePointKeys.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ProgrammingSharePointKeys.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/ProgrammingSharePointKeys.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAM3D,eAAO,MAAM,0BAA0B,EAAE,MAAM,EAE9C,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE,WAAW,EAK1D,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,MAAM,EAG7C,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,WAAW,EASzD,CAAC;AACF;;;GAGG;AAEH,eAAO,MAAM,cAAc,EAAE,YAe5B,CAAC"}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { StdSharePointKeys, MediaFileKeys, StdFileKeys, StdSharePointSearchTypes, MediaFileSearchTypes, StdFileSearchTypes } from "./StandardTypes";
|
|
2
|
-
// Keys must be in same order as in StdSharePointSearchTypes
|
|
3
|
-
export const XProgrammingSharePointKeys = [
|
|
4
|
-
"ts", "md", "py", "vba"
|
|
5
|
-
];
|
|
6
|
-
export const XProgrammingSharePointSearchTypes = [
|
|
7
|
-
{ key: "ts", title: "ts", icon: "TypeScriptLanguage", style: "", count: 0, color: "blue", similarKey: 'ts' },
|
|
8
|
-
{ key: "md", title: "md", icon: "MarkDownLanguage", style: "", count: 0, color: "blue", similarKey: 'md' },
|
|
9
|
-
{ key: "py", title: "py", icon: "PythonLanguage", style: "", count: 0, color: "blue", similarKey: 'py' },
|
|
10
|
-
{ key: "vba", title: "vba", icon: "VisualBasicLanguage", style: "", count: 0, color: "blue", similarKey: 'vba' },
|
|
11
|
-
];
|
|
12
|
-
export const ProgrammingSharePointKeys = [
|
|
13
|
-
"js", "html", "css",
|
|
14
|
-
"json", "xml", "exe", "ps1"
|
|
15
|
-
];
|
|
16
|
-
export const ProgrammingSharePointSearchTypes = [
|
|
17
|
-
{ key: "js", title: "js", icon: "JS", style: "", count: 0, color: "blue", similarKey: 'js' },
|
|
18
|
-
{ key: "html", title: "html", icon: "FileHTML", style: "", count: 0, color: "blue", similarKey: 'html' },
|
|
19
|
-
{ key: "css", title: "css", icon: "CSS", style: "", count: 0, color: "blue", similarKey: 'css' },
|
|
20
|
-
{ key: "json", title: "json", icon: "Code", style: "", count: 0, color: "blue", similarKey: 'json' },
|
|
21
|
-
{ key: "xml", title: "xml", icon: "CalculatorMultiply", style: "", count: 0, color: "blue", similarKey: 'xml' },
|
|
22
|
-
{ key: "exe", title: "exe", icon: "CSharpLanguage", style: "", count: 0, color: "blue", similarKey: 'exe' },
|
|
23
|
-
{ key: "ps1", title: "ps1", icon: "PowerShell2", style: "", count: 0, color: "blue", similarKey: 'ps1' },
|
|
24
|
-
];
|
|
25
|
-
/**
|
|
26
|
-
* Use SearchTypes for addSearchMeta1 && addSearchMeta2 function
|
|
27
|
-
* -- if you do not have a consolidated search page (with multiple sources)
|
|
28
|
-
*/
|
|
29
|
-
export const MAXSearchTypes = {
|
|
30
|
-
keys: [
|
|
31
|
-
...StdSharePointKeys,
|
|
32
|
-
...StdFileKeys,
|
|
33
|
-
...MediaFileKeys,
|
|
34
|
-
...ProgrammingSharePointKeys,
|
|
35
|
-
...XProgrammingSharePointKeys,
|
|
36
|
-
],
|
|
37
|
-
objs: [
|
|
38
|
-
...StdSharePointSearchTypes,
|
|
39
|
-
...StdFileSearchTypes,
|
|
40
|
-
...MediaFileSearchTypes,
|
|
41
|
-
...ProgrammingSharePointSearchTypes,
|
|
42
|
-
...XProgrammingSharePointSearchTypes,
|
|
43
|
-
]
|
|
44
|
-
};
|
|
45
|
-
//# sourceMappingURL=ProgrammingSharePointKeys.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ProgrammingSharePointKeys.js","sourceRoot":"","sources":["../../../../../src/components/molecules/SearchPage/Interfaces/ProgrammingSharePointKeys.ts"],"names":[],"mappings":"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"}
|