Skip to content

Commit fd9376c

Browse files
committed
refactor: transform functional lib into class object
1 parent 3ae2c3f commit fd9376c

18 files changed

+1201
-669
lines changed

examples/index.ts

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Models
2+
export * from './models/animal';
3+
export * from './models/dummy';
4+
export * from './models/employee';
5+
export * from './models/gender';
6+
export * from './models/human';
7+
export * from './models/living-being';
8+
export * from './models/organization';
9+
export * from './models/panther';
10+
export * from './models/phone-number';
11+
export * from './models/snake';
12+
export * from './models/society';
13+
export * from './models/status';
14+
export * from './models/unknown-animal';
15+
export * from './models/zoo';
16+
17+
// Json
18+
export * from './json/data';

examples/json/data.ts

+11-13
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import { Zoo } from '../models/zoo';
1010
import { PhoneNumber } from '../models/phone-number';
1111

1212
export const data: any = {
13-
_id: '1',
14-
_name: 'Zoos Organization',
13+
id: '1',
14+
name: 'Zoos Organization',
1515
zoos: [
1616
{
1717
id: 15,
@@ -149,17 +149,17 @@ export const data: any = {
149149
unknownAnimals: {}
150150
}
151151
],
152-
_zoosName: {
152+
zoosName: {
153153
'15': 'The Greatest Zoo',
154154
'16': 'Zoo Zoo'
155155
},
156-
_mainShareholder: {
156+
mainShareholder: {
157157
humanId: 100,
158158
name: 'Elon Musk',
159159
birthDate: '1971-06-28T22:00:00.000Z',
160160
gender: 1
161161
},
162-
_secondaryShareholder: null
162+
secondaryShareholder: null
163163
};
164164

165165
const bob = new Employee(
@@ -208,7 +208,6 @@ const fried = new Employee(
208208
new Date(data.zoos[0].employees[3].birthDate)
209209
);
210210
fried.email = data.zoos[0].employees[3].email;
211-
fried.phoneNumber = data.zoos[0].employees[3].phoneNumber;
212211

213212
const bagheera = new Panther(data.zoos[0].Animals[0].name, data.zoos[0].Animals[0].isSpeckled);
214213
bagheera.color = data.zoos[0].Animals[0].color;
@@ -238,7 +237,6 @@ ka.numberOfPaws = data.zoos[0].Animals[2].numberOfPaws;
238237

239238
const schrodinger = new Panther(data.zoos[0].Animals[3].name, data.zoos[0].Animals[3].isSpeckled);
240239
schrodinger.color = data.zoos[0].Animals[3].color;
241-
schrodinger.birthDate = data.zoos[0].Animals[3].birthDate;
242240
schrodinger.gender = Gender.Male;
243241
schrodinger.id = data.zoos[0].Animals[3].id;
244242
schrodinger.numberOfPaws = data.zoos[0].Animals[3].numberOfPaws;
@@ -284,15 +282,15 @@ zooZoo.name = data.zoos[1].name;
284282
zooZoo.unknownAnimals = {};
285283

286284
const elonMusk = new Human(
287-
data._mainShareholder.name,
288-
data._mainShareholder.humanId,
289-
data._mainShareholder.gender,
290-
new Date(data._mainShareholder.birthDate)
285+
data.mainShareholder.name,
286+
data.mainShareholder.humanId,
287+
data.mainShareholder.gender,
288+
new Date(data.mainShareholder.birthDate)
291289
);
292290

293291
const organization = new Organization();
294-
organization.id = data._id;
295-
organization.name = data._name;
292+
organization.id = data.id;
293+
organization.name = data.name;
296294
organization.zoos = [greatZoo, zooZoo];
297295
organization.zoosName = {};
298296
organization.zoosName[greatZoo.id] = greatZoo.name;

examples/models/organization.ts

+5-7
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,19 @@ import { Human } from './human';
33
import { Society } from './society';
44
import { Zoo } from './zoo';
55

6-
const prefixWithUnderscore = (propertyName: string) => `_${propertyName}`;
7-
8-
@JsonObject({ formatPropertyNames: prefixWithUnderscore })
6+
@JsonObject()
97
export class Organization extends Society {
108
@JsonProperty({ name: 'zoos', type: Zoo }) zoos: Array<Zoo>;
119
@JsonProperty({ isDictionary: true })
1210
zoosName: { [id: string]: string };
1311
@JsonProperty({
14-
name: ['_mainShareholder', '_secondaryShareholder', '_thirdShareholder'],
12+
name: ['mainShareholder', 'secondaryShareholder', 'thirdShareholder'],
1513
type: Human,
1614
beforeDeserialize: value => Object.values(value),
1715
afterSerialize: value => ({
18-
_mainShareholder: value[0],
19-
_secondaryShareholder: value[1],
20-
_thirdShareholder: value[2]
16+
mainShareholder: value[0],
17+
secondaryShareholder: value[1],
18+
thirdShareholder: value[2]
2119
})
2220
})
2321
shareholders: Array<Human | null | undefined>;

jest.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module.exports = {
22
coverageReporters: ['text', 'lcov'],
3-
coveragePathIgnorePatterns: ['examples'],
3+
coveragePathIgnorePatterns: ['examples', '/node_modules/'],
4+
coverageProvider: 'v8',
45
reporters: ['default', 'jest-junit'],
56
roots: ['spec'],
67
transform: {

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"types": "dist/index.d.ts",
99
"scripts": {
1010
"build": "rollup -c",
11-
"cover": "jest --coverage",
11+
"cover": "rimraf coverage && jest --coverage",
1212
"lint": "eslint . --ext .ts --fix",
1313
"lint:ci": "eslint . --ext .ts",
1414
"postbuild": "npm run types",
1515
"prebuild": "rimraf dist",
1616
"test": "jest",
17-
"test:ci": "jest --reporters=default --reporters=jest-junit --coverage --coverageReporters=lcov --coverageReporters=text-lcov",
17+
"test:ci": "jest --coverage",
1818
"types": "tsc src/index.ts -d --emitDeclarationOnly --declarationDir dist"
1919
},
2020
"repository": {

spec/helpers.spec.ts

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
import {
2+
isNumber,
3+
isString,
4+
isBoolean,
5+
isObject,
6+
isArray,
7+
isDateObject,
8+
isDateValue,
9+
isNullish,
10+
tryParse
11+
} from '../src/helpers';
12+
13+
const values = [
14+
undefined,
15+
null,
16+
4,
17+
'4',
18+
'test',
19+
false,
20+
true,
21+
new Date(),
22+
new Date().toISOString(),
23+
[],
24+
[4],
25+
{},
26+
{ test: 'test' }
27+
];
28+
29+
const test = (fn: Function, ...trueIndexes: Array<number>): void => {
30+
values.forEach((value, i) => {
31+
const result = trueIndexes.includes(i) ? true : false;
32+
expect(fn(value)).toBe(result);
33+
});
34+
};
35+
36+
describe('Helpers', () => {
37+
describe('Type check', () => {
38+
it('should return true for string and false otherwise', () => {
39+
test(isString, 3, 4, 8);
40+
});
41+
42+
it('should return true for number and false otherwise', () => {
43+
test(isNumber, 2);
44+
});
45+
46+
it('should return true for boolean and false otherwise', () => {
47+
test(isBoolean, 5, 6);
48+
});
49+
50+
it('should return true for object and false otherwise', () => {
51+
test(isObject, 7, 11, 12);
52+
});
53+
54+
it('should return true for array and false otherwise', () => {
55+
test(isArray, 9, 10);
56+
});
57+
58+
it('should return true for date object and false otherwise', () => {
59+
test(isDateObject, 7);
60+
});
61+
62+
it('should return true for date value and false otherwise', () => {
63+
test(isDateValue, 2, 3, 8);
64+
});
65+
66+
it('should return true for nullish and false otherwise', () => {
67+
test(isNullish, 0, 1);
68+
});
69+
});
70+
71+
describe('tryParse', () => {
72+
it('should return parsed json for object string', () => {
73+
// no need to test undefined value because JSON does not support it
74+
const obj = {
75+
test: 'test',
76+
value: 4,
77+
array: ['4', 4, false],
78+
bool: false,
79+
subObj: { test: 'test' },
80+
date: new Date().toISOString(),
81+
n: null
82+
};
83+
84+
const string = JSON.stringify(obj);
85+
const parsed = tryParse(string);
86+
expect(parsed).toStrictEqual(obj);
87+
});
88+
89+
it('should return the given value', () => {
90+
values.slice(1).forEach(value => {
91+
expect(tryParse(value)).toStrictEqual(value);
92+
});
93+
});
94+
});
95+
});

0 commit comments

Comments
 (0)