-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.ts
229 lines (206 loc) · 5.92 KB
/
types.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import { ThemePropT } from "@rmwc/types";
import config from "./config";
// general types
/** unix timestamp or iso string? */
type TTimestamp = Date;
// vote types
export interface IVoteBase {
id: string;
title: string;
description: string;
image: string;
end: Date;
items: string[];
result?: number[];
chartInfo?: Record<string, unknown>;
}
export interface IVoteConsensus extends IVoteBase {
type: "consensus";
vote?: number[];
}
export interface IVoteRadio extends IVoteBase {
type: "radio";
vote?: number;
}
export type TVote = IVoteConsensus | IVoteRadio;
export type TVoteWithResult<Vote extends TVote = TVote> = Vote & {
result: NonNullable<Vote["result"]>;
};
export type IVoteWithChartInfo<
Vote extends TVote,
ChartName extends string,
ChartInfo = unknown
> = Vote & {
chartInfo: Record<ChartName, ChartInfo>;
};
export type TWithVoteProp<Vote extends TVote = TVote, T = unknown> = T & {
vote: Vote;
};
// border control types
export interface IBorderCrossing {
action: "enter" | "leave";
timestamp: TTimestamp;
customsTransaction?: ICustomsTransaction;
}
// product types
/** Default resolution is one hour */
export interface IProductStatsExtract {
sales: number;
netRevenue: number;
grossRevenue: number;
startTime: TTimestamp;
}
export interface IProduct {
id: string;
name: string;
price: number;
todaySales: number;
totalGrossRevenue: number;
totalSales: number;
totalSalesPerDay: number;
stats: IProductStatsExtract[];
}
// bank types
export interface IBankAccount {
id: string;
balance: number;
/** amount of virtual money that can be changed back to real money */
redemptionBalance: number;
transactions: ITransaction[];
}
// company types
export interface IEmploymentInfo {
company: ICompanyUser;
employee: ICitizenUser;
/** virtual currency per hour */
salary: number;
/** working hours as per day */
hours: number;
/** undefined if citizen is not currently working */
activeSince: undefined | TTimestamp;
worktimeToday: number;
worktimeYesterday: number;
}
/** Default resolution is one hour */
export interface IFinancesExtract {
staff: number;
netRevenue: number;
profit: number;
startTime: TTimestamp;
}
// user types
interface IBaseUser {
// four hexadecimal characters
id: string;
bankAccount: IBankAccount;
}
export interface IGuestUser extends IBaseUser {
type: "guest";
enter: TTimestamp;
leave: TTimestamp;
}
export interface ICitizenUser extends IBaseUser {
type: "citizen";
firstName: string;
lastName: string;
name: string;
image: string;
employment?: IEmploymentInfo;
}
export interface ICompanyUser extends IBaseUser {
type: "company";
name: string;
employer: IEmploymentInfo;
employees: IEmploymentInfo[];
products: IProduct[];
image: string;
finances: IFinancesExtract[];
}
export type TUser = IGuestUser | ICitizenUser | ICompanyUser;
export type TUserSignature = Pick<TUser, "type" | "id">;
export type TQrToUser = (qr: string) => TUser;
// transaction types
interface IBaseTransaction {
date: string;
id: string;
}
export interface ITransferTransaction extends IBaseTransaction {
type: "transfer";
sender: ICitizenUser | IGuestUser;
receiver: ICitizenUser | IGuestUser;
value: number;
purpose: string;
}
export interface IChangeTransaction extends IBaseTransaction {
type: "change";
user: ICitizenUser | IGuestUser;
baseCurrency: keyof typeof config.currencies;
baseValue: number;
targetCurrency: keyof typeof config.currencies;
targetValue: number;
}
export interface IPurchaseTransaction extends IBaseTransaction {
type: "purchase";
customer: TUser;
vendor: ICompanyUser;
grossPrice: number;
netPrice: number;
tax: number;
items: [number, IProduct][];
discount: number;
additionalInfo?: string;
}
export interface ICustomsTransaction extends IBaseTransaction {
type: "customs";
user: ICompanyUser | ICitizenUser;
customs: number;
}
export interface ISalaryTransaction extends IBaseTransaction {
type: "salary";
grossValue: number;
netValue: number;
tax: number;
/** workStart and workEnd are either both timestamps or undefined. If they are undefined, it is a bonus payment */
workStart: TTimestamp | undefined;
/** workStart and workEnd are either both timestamps or undefined. If they are undefined, it is a bonus payment */
workEnd: TTimestamp | undefined;
}
export type ITransaction =
| ITransferTransaction
| IChangeTransaction
| IPurchaseTransaction
| ICustomsTransaction
| ISalaryTransaction;
// helper types
/** resolves to unknwon, if T = any, and never otherwise */
type TValidToNever<T> = T extends string
? T extends number
? unknown
: never
: never;
export type TIsAny<T> = [TValidToNever<T>] extends [never] ? false : true;
export type TNullable<T> = T | null;
// types for rmwc wrappers
export type TWithThemeProp<T = unknown> = T & { theme?: ThemePropT };
// helper functions
export const isNumberArray = (arr: unknown): arr is number[] =>
Array.isArray(arr) && arr.every((item) => typeof item === "number");
export const isStringArray = (arr: unknown): arr is string[] =>
Array.isArray(arr) && arr.every((item) => typeof item === "string");
export const isObject = (obj: unknown): obj is Record<string, unknown> =>
typeof obj === "object" && obj !== null;
export function inOperator<K extends PropertyKey, O>(
key: K,
obj: O
): obj is O & Record<K, unknown> {
return typeof obj === "object" && obj !== null && key in obj;
}
export function checkPropertyType<K extends PropertyKey, O, T>(
key: K,
obj: O,
isType: (toCheck: unknown) => toCheck is T
): obj is O & Record<K, T> {
if (!inOperator(key, obj)) return false;
if (!isType(obj[key])) return false;
return true;
}