-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathother.ts
171 lines (156 loc) · 3.7 KB
/
other.ts
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/**
* Assorted type definitions
*/
import type {
DefaultOptions,
JobOptions,
} from 'gatsby-plugin-component-to-image/lib/types';
import type { ProjectCategory } from './content/projects.ts';
import type { RoleCategory } from './content/roles.ts';
import type {
AbsolutePathString,
BgColorString,
UrlString,
} from './strings.ts';
/**
* Config object used to define site metadata
*/
export interface SiteMetadataConfig {
iconPath: string;
siteUrl: UrlString;
sourceUrl: UrlString;
author: {
name: {
first: Capitalize<string>;
last: Capitalize<string>;
};
jobTitle: Capitalize<string>;
alumniOf: Capitalize<string>;
imageUrl: UrlString;
username: {
linkedin: string;
github: string;
x: string;
};
location: {
city: Capitalize<string>;
state: Capitalize<string>;
country: Capitalize<string>;
};
};
}
/**
* Metadata for a single page
*/
export interface PageMetadata {
title: string;
shortTitle: string;
description: string;
}
/**
* Page metadata added to the pageContext of pages when they are created
*/
export interface PageMetadataProp {
pageMetadata: PageMetadata;
}
/**
* Config object used to define page metadata
*/
export interface PagesMetadataConfig {
[pagePath: AbsolutePathString]: PageMetadata;
}
/**
* An enumeration of possible social image types
*/
export enum SocialImageType {
OpenGraph = 'og',
X = 'x',
}
/**
* Config object used to define settings for generating social images
*/
export interface SocialImagesGenerationConfig {
defaults: Partial<DefaultOptions>;
types: {
[SocialImageType.OpenGraph]: Pick<JobOptions, 'size'> &
Partial<Omit<JobOptions, 'size'>>;
[SocialImageType.X]: Pick<JobOptions, 'size'> &
Partial<Omit<JobOptions, 'size'>>;
};
}
/**
* Social image metadata added to the pageContext of pages when they are created
*/
export interface SocialImagesMetadataProp {
socialImagesMetadata: {
[SocialImageType.OpenGraph]: JobOptions;
[SocialImageType.X]: JobOptions;
};
}
/**
* Image metadata added to the pageContext of {@link https://github.com/jerboa88/gatsby-plugin-component-to-image | gatsby-plugin-component-to-image} components when they are created
*/
export interface ImageMetadataProp {
imageMetadata: JobOptions;
}
/**
* An enumeration of possible theme types
*/
export enum ThemeType {
Light = 'light',
Dark = 'dark',
}
/**
* Colors for a single theme
*/
export type Theme = {
primary: string;
secondary: string;
accent: string;
neutral: string;
info: string;
success: string;
warning: string;
error: string;
'base-100': string;
'base-200': string;
'base-300': string;
'base-content': string;
'primary-content'?: string;
'secondary-content'?: string;
'accent-content'?: string;
'neutral-content': string;
'info-content'?: string;
'success-content'?: string;
'warning-content'?: string;
'error-content'?: string;
};
/**
* Config object used to define themes
*/
export interface ThemesConfig {
[ThemeType.Light]: Theme;
[ThemeType.Dark]: Theme;
}
/**
* Config object used to define color mappings
*/
export interface ColorMappingsConfig {
default: BgColorString;
projectCategory: Record<ProjectCategory, BgColorString>;
roleCategory: Record<RoleCategory, BgColorString>;
}
/**
* A function that sorts two values of the same type
*
* @typeParam T - The type of the values to sort
* @returns A negative number if a should be sorted before b, a positive number if a should be sorted after b, or 0 if they are equal
*/
export type SortFn<T> = (a: T, b: T) => number;
/**
* A function that filters a value of a certain type
*
* @typeParam T - The type of the value to filter
* @returns True if the value should be included, false otherwise
*/
export type FilterFn<T> = (value: T) => boolean;