-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhouseplans.ts
459 lines (415 loc) · 11.3 KB
/
houseplans.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
import { FilterParameters } from '@/app/items/types'
import axios from 'axios'
import { parse } from 'node-html-parser'
export interface SdkOptions {
/**
* Whether to enable debug mode
*/
debug?: boolean
}
interface BedroomSearchParams {
/**
* Whether or not to include 1-bedroom houses in the search results
*/
bd1?: boolean
/**
* Whether or not to include 2-bedroom houses in the search results
*/
bd2?: boolean
/**
* Whether or not to include 3-bedroom houses in the search results
*/
bd3?: boolean
/**
* Whether or not to include 4-bedroom houses in the search results
*/
bd4?: boolean
/**
* Whether or not to include 5-bedroom or larger houses in the search results
*/
bd5p?: boolean
}
interface BathroomSearchParams {
/**
* Whether or not to include 1-bathroom houses in the search results
*/
ba1?: boolean
/**
* Whether or not to include 1.5-bathroom houses in the search results
*/
ba1h?: boolean
/**
* Whether or not to include 2-bathroom houses in the search results
*/
ba2?: boolean
/**
* Whether or not to include 2.5-bathroom houses in the search results
*/
ba2h?: boolean
/**
* Whether or not to include 3-bathroom houses in the search results
*/
ba3?: boolean
/**
* Whether or not to include 3.5-bathroom houses in the search results
*/
ba3h?: boolean
/**
* Whether or not to include 4-bathroom or larger houses in the search results
*/
ba4p?: boolean
}
interface StorySearchParams {
/**
* Whether or not to include single-story houses in the search results
*/
s1?: boolean
/**
* Whether or not to include two-story houses in the search results
*/
s2?: boolean
/**
* Whether or not to include three-story or higher houses in the search results
*/
s3p?: boolean
}
interface GarageSearchParams {
/**
* Whether or not to include houses with 1-car garages in the search results
*/
g1?: boolean
/**
* Whether or not to include houses with 2-car garages in the search results
*/
g2?: boolean
/**
* Whether or not to include houses with 3-car or higher garages in the search results
*/
g3p?: boolean
}
interface DimensionSearchParams {
/**
* The minimum depth of the house (ft)
*/
mndp?: number
/**
* The minimum square footage of the house
*/
mnsqft?: number
/**
* The minimum width of the house (ft)
*/
mnwd?: number
/**
* The maximum depth of the house (ft)
*/
mxdp?: number
/**
* The maximum square footage of the house
*/
mxsqft?: number
/**
* The maximum width of the house (ft)
*/
mxwd?: number
}
const FEATURE_POST_NAMES = [
'sy', // Architectural Styles
'bf', // Bedroom & Bath Features
'kf', // Kitchen Features
'os', // Outdoor Features
'mf', // Other Features
] as const
const ARCHITECTURE_STYLES = [
'as', // Adobe / Southwestern
'br', // Barndominium
'be', // Beach
'bu', // Bungalow
'cb', // Cabin
'cl', // Classical
'co', // Colonial
'cp', // Contemporary
'ct', // Cottage
'cu', // Country
'cr', // Craftsman
'eu', // European
'fh', // Farmhouse
'lo', // Log
'me', // Mediterranean
'mo', // Modern
'pr', // Prairie
'ra', // Ranch
'so', // Southern
'tr', // Traditional
'tu', // Tudor
'vi', // Victorian
] as const
const BEDROOM_BATHROOM_FEATURES = [
'cbn', // Cabana
'2ms', // 2 Master Suites
'frp', // Fireplace
'fdn', // Formal Dining Room
'flr', // Formal Living Room / Parlor
'gsu', // Guest Suite
'llb', // Lower Level Bedrooms
'mfb', // Main Floor Bedrooms
'mfm', // Main Floor Master Bedroom
'spb', // Split Bedrooms
'ubb', // Upstairs Bedrooms
'umb', // Upstairs Master Bedrooms
'wic', // Walk In Closet
] as const
const KITCHEN_FEATURES = [
'nok', // Breakfast Nook
'peb', // Eating Bar
'kis', // Kitchen Island
'kit', // Kitchenette Wet Bar
'wnp', // Walk In Pantry Cabinet Pantry
'bsp', // Butler's Pantry
] as const
const OUTDOOR_FEATURES = [
'blc', // Balcony
'brz', // Breezeway
'cty', // Courtyard
'cfp', // Covered Front Porch
'crp', // Covered Rear Porch
'dck', // Deck
'gds', // Grill Deck Sundeck
'odf', // Outdoor Fireplace
'okg', // Outdoor Kitchen Grill
'srp', // Screened Porch
'wap', // Wrap Around Porch
] as const
const OTHER_FEATURES = [
'elv', // Elevator
'emn', // Empty Nester
'tsj', // Jack & Jill Bath
'svh', // Suited For Vacation Home
'wca', // Wheelchair Adaptable
] as const
export const COLLECTIONS = [
'angled-garage',
'carport-plans',
'family-style-house-plans',
'house-plans-with-metal-roofs',
'lots-of-windows',
'mid-century-modern-house-plans',
'open-floor-plans',
'plans-with-safe-rooms',
'porte-cochere',
'simple-house-plans',
'space-efficient-',
'special-features-house-plans',
'tiny-house-plans-and-micro-cottages',
'unusual-unique',
'vacation-home-plans',
] as const
type ArchitectureStyle = (typeof ARCHITECTURE_STYLES)[number]
type BedroomBathroomFeature = (typeof BEDROOM_BATHROOM_FEATURES)[number]
type KitchenFeature = (typeof KITCHEN_FEATURES)[number]
type OutdoorFeature = (typeof OUTDOOR_FEATURES)[number]
type OtherFeature = (typeof OTHER_FEATURES)[number]
type Collection = (typeof COLLECTIONS)[number]
type ArchitectureSearchParams = Partial<Record<ArchitectureStyle, boolean>>
type BedroomBathroomSearchParams = Partial<
Record<BedroomBathroomFeature, boolean>
>
type KitchenSearchParams = Partial<Record<KitchenFeature, boolean>>
type OutdoorSearchParams = Partial<Record<OutdoorFeature, boolean>>
type OtherSearchParams = Partial<Record<OtherFeature, boolean>>
export interface SearchParams
extends FilterParameters,
BedroomSearchParams,
BathroomSearchParams,
StorySearchParams,
GarageSearchParams,
DimensionSearchParams,
ArchitectureSearchParams,
BedroomBathroomSearchParams,
KitchenSearchParams,
OutdoorSearchParams,
OtherSearchParams {
collection?: Collection
}
type SearchFeaturePostName = (typeof FEATURE_POST_NAMES)[number]
export interface HousePlanSearchResponseData {
id: number
key: string
productId: number
number: string
bedrooms: number
bathrooms: string
width: string
height: string
squarefeet: number
stories: number
slug: string
thumbnailUrl: string
thumbnailAlt: string
price: string
}
export interface SearchResponseData {
results: HousePlanSearchResponseData[]
}
export interface HousePlanResponseData {
'@context': string
'@type': 'Product'
brand: {
'@type': 'Brand'
name: string
}
description: string
image: string
name: string
productID: string
sku: string
slug: string
offers: {
'@type': 'Offer'
url: string
price: string
priceCurrency: string
itemCondition: string
availability: string
}
}
const HOUSE_PLANS_API = 'https://www.houseplans.com/search/search.json'
const getSelectedFeatureNames = <Feature extends string>(
featureNames: readonly Feature[],
params: SearchParams,
): Feature[] => {
const validFeatures = new Set<string>(featureNames)
const selectedFeatures = Object.entries(params)
// filter down to the features that are explicitly `true`
.filter(
(param): param is [Feature, true] =>
validFeatures.has(param[0]) && Boolean(param[1]),
)
// we only need the feature names
.map(([filter]) => filter)
return selectedFeatures
}
const addFeatureFormData = <Feature extends string>(
formData: FormData,
paramName: SearchFeaturePostName,
features: Feature[],
) => {
features.forEach((feature) => {
formData.append(`${paramName}[]`, feature)
})
}
/**
* Add all the search params that aren't folded into the `FEATURE_POST_NAMES` as
* top-level params
*/
const addFormData = (formData: FormData, searchParams: SearchParams) => {
const allFeatureNames = new Set<string>([
...ARCHITECTURE_STYLES,
...BEDROOM_BATHROOM_FEATURES,
...KITCHEN_FEATURES,
...OUTDOOR_FEATURES,
...OTHER_FEATURES,
])
Object.entries(searchParams).forEach(([paramName, paramValue]) => {
if (!allFeatureNames.has(paramName) && paramValue !== undefined) {
formData.append(paramName, paramValue.toString())
}
})
}
/**
* Given the search params, build a `FormData` object to send to the House Plans API
* @returns
*/
export const getSearchFormData = (params: SearchParams): FormData => {
const architectureStyles = getSelectedFeatureNames<ArchitectureStyle>(
ARCHITECTURE_STYLES,
params,
)
const bedroomBathroomFeatures =
getSelectedFeatureNames<BedroomBathroomFeature>(
BEDROOM_BATHROOM_FEATURES,
params,
)
const kitchenFeatures = getSelectedFeatureNames<KitchenFeature>(
KITCHEN_FEATURES,
params,
)
const outdoorFeatures = getSelectedFeatureNames<OutdoorFeature>(
OUTDOOR_FEATURES,
params,
)
const otherFeatures = getSelectedFeatureNames<OtherFeature>(
OTHER_FEATURES,
params,
)
const searchFormData = new FormData()
addFormData(searchFormData, params)
addFeatureFormData(searchFormData, 'sy', architectureStyles)
addFeatureFormData(searchFormData, 'bf', bedroomBathroomFeatures)
addFeatureFormData(searchFormData, 'kf', kitchenFeatures)
addFeatureFormData(searchFormData, 'os', outdoorFeatures)
addFeatureFormData(searchFormData, 'mf', otherFeatures)
searchFormData.append('p', '1')
searchFormData.append('s', 'MOST_POPULAR')
return searchFormData
}
export default class HousePlans {
_debug: boolean = false
constructor(options?: SdkOptions) {
this._debug = Boolean(options?.debug)
}
/**
* Search for floor plans based on the search parameters
* @param params The search parameters to filter the floor plans by
*/
async plans(params: SearchParams): Promise<SearchResponseData> {
const { collection, ...searchParams } = params
const postData = getSearchFormData(searchParams)
if (this._debug) {
console.log('House Plans request post data:', [...postData.entries()])
}
try {
const searchType = collection ? `collection/${collection}` : 'search'
const { data } = await axios.post<SearchResponseData>(
`https://www.houseplans.com/${searchType}/search.json`,
postData,
)
if (this._debug) {
console.log('House Plans search results:', data)
}
return data
} catch (error) {
console.error('Error searching for house plans:', error, params)
return { results: [] }
}
}
/**
* Retrieve a single house plan by its slug
* @param planNumber The number of the house plan to retrieve
*/
async plan(planNumber: string): Promise<HousePlanResponseData> {
const url = `https://www.houseplans.com/search?hwpn=${planNumber}`
if (this._debug) {
console.log('House Plans single plan request URL:', url)
}
try {
const { data: html } = await axios.get<string>(url)
const root = parse(html)
// Find the <script> tag with type="application/ld+json"
const jsonLdScript = root.querySelector(
'head script[type="application/ld+json"]',
)?.textContent
if (!jsonLdScript) {
throw new Error('No JSON-LD data found on the page.')
}
const housePlanData: HousePlanResponseData = JSON.parse(jsonLdScript)
if (this._debug) {
console.log('House Plans single plan data:', housePlanData)
}
return housePlanData
} catch (error) {
console.error('Error fetching plan details:', error, url)
throw error
}
}
}