forked from multitheftauto/wiki.multitheftauto.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.ts
More file actions
118 lines (100 loc) · 3.14 KB
/
functions.ts
File metadata and controls
118 lines (100 loc) · 3.14 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import { getCollection } from 'astro:content';
import path from 'path';
import type { FunctionType } from './types';
type FunctionItem = Awaited<ReturnType<typeof getCollection>>[number];
// Define a structure for function parameters
type FunctionParameter = {
name: string;
type: string;
description?: string;
optional?: boolean;
};
// Define a structure for the details expected within shared/client/server
type FunctionDetails = {
description?: string;
pair?: boolean;
examples?: { code: string; description?: string }[];
notes?: string[];
important_notes?: string[];
parameters?: FunctionParameter[];
};
type FunctionsByCategory = {
[folder: string]: FunctionItem[];
};
type FunctionsByTypeByCategory = {
[key in FunctionType]: FunctionsByCategory;
};
export type FunctionData = {
shared?: any;
client?: any;
server?: any;
};
export type TypedFunctionData = {
shared?: FunctionDetails;
client?: FunctionDetails;
server?: FunctionDetails;
};
export const functionTypePrettyName = {
'client': 'Client-side',
'server': 'Server-side',
'shared': 'Shared',
} as const;
function getFunctionType(data: FunctionData): FunctionType {
if (data.shared) return 'shared';
if (data.client) return 'client';
return 'server';
}
function getFunctionTypePretty(data: FunctionData): string {
const funcType = getFunctionType(data);
return functionTypePrettyName[funcType];
}
export type FunctionInfo = {
description: string;
type: FunctionType;
typePretty: string;
pair: boolean;
examples: { code: string; description?: string }[];
notes?: string[];
important_notes?: string[];
parameters?: FunctionParameter[];
};
export function getFunctionInfo(data: TypedFunctionData): FunctionInfo {
const type = getFunctionType(data);
const details = data[type] ?? {};
return {
description: details.description || '',
type: type,
typePretty: getFunctionTypePretty(data),
pair: details.pair || false,
examples: details.examples || [],
notes: details.notes || [],
important_notes: details.important_notes || [],
parameters: details.parameters || [],
};
}
const functionsCollection = await getCollection('functions');
let functionsByCategory: FunctionsByCategory = {};
let functionsByTypeByCategory: FunctionsByTypeByCategory = {
shared: {},
client: {},
server: {}
};
for (let func of functionsCollection) {
const normalizedPath = path.normalize(func.id);
const folder = path.basename(path.dirname(normalizedPath));
if (!functionsByCategory[folder]) {
functionsByCategory[folder] = [];
}
functionsByCategory[folder].push(func);
const funcType = getFunctionType(func.data);
if (!functionsByTypeByCategory[funcType]?.[folder]) {
functionsByTypeByCategory[funcType][folder] = [];
}
functionsByTypeByCategory[funcType][folder].push(func);
}
export function getFunctionsByCategory(): FunctionsByCategory {
return functionsByCategory;
}
export function getFunctionsByTypeByCategory(): FunctionsByTypeByCategory {
return functionsByTypeByCategory;
}