← back to Greenland China
greenland: fix sku/color field-mapping + colorway parser
7a9094b315f3a7a42bad6837b662411fe4807096 · 2026-07-01 10:45:41 -0700 · Steve
- scrape.js: derive real SKU (code-looking name > colorway model > code > GL-<id>);
read real colorway keys {model, colorDescription, thumbnail, imgs}; add collection/color
- staging: patch 3 mis-mapped rows (862/260/262) from live detail — dupe 'JUNGLE PULSE' gone, 800/800 unique SKUs
- viewer: color=r.color (was r.code, which is a style code not a color); pass collection
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Files touched
M scripts/scrape.jsM staging/greenland.jsonlM viewer/server.js
Diff
commit 7a9094b315f3a7a42bad6837b662411fe4807096
Author: Steve <steve@designerwallcoverings.com>
Date: Wed Jul 1 10:45:41 2026 -0700
greenland: fix sku/color field-mapping + colorway parser
- scrape.js: derive real SKU (code-looking name > colorway model > code > GL-<id>);
read real colorway keys {model, colorDescription, thumbnail, imgs}; add collection/color
- staging: patch 3 mis-mapped rows (862/260/262) from live detail — dupe 'JUNGLE PULSE' gone, 800/800 unique SKUs
- viewer: color=r.color (was r.code, which is a style code not a color); pass collection
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
scripts/scrape.js | 31 ++++++++++++++++++++++++-------
staging/greenland.jsonl | 6 +++---
viewer/server.js | 5 +++--
3 files changed, 30 insertions(+), 12 deletions(-)
diff --git a/scripts/scrape.js b/scripts/scrape.js
index 694fd51..3cde6bb 100644
--- a/scripts/scrape.js
+++ b/scripts/scrape.js
@@ -94,11 +94,13 @@ async function main() {
const u = asImage(r.img || r.image || r.url || r.fileName || r);
if (u) images.push(u);
}
+ // colorway objects use keys {color(int), colorDescription, model, thumbnail, imgs}
const colorways = [];
for (const s of (Array.isArray(d.skus) ? d.skus : [])) {
- const u = asImage(s.img || s.image || s.coverImg || s.fileName);
- if (u) images.push(u);
- colorways.push({ id: s.id, color: s.color || s.colorName || s.name || null, code: s.code || null, image: u });
+ const thumb = asImage(s.thumbnail || s.img || s.image || s.coverImg || s.fileName);
+ if (thumb) images.push(thumb);
+ for (const im of (Array.isArray(s.imgs) ? s.imgs : [])) { const u = asImage(im); if (u) images.push(u); }
+ colorways.push({ id: s.id, model: s.model || null, color: s.colorDescription || s.colorName || null, image: thumb });
}
const uniqImages = [...new Set(images.filter(Boolean))];
@@ -114,6 +116,19 @@ async function main() {
.map((c) => `${c.compositionName}${c.percentage ? ' ' + c.percentage + '%' : ''}`)
.join(', ') || null;
+ // derive a real SKU: the vendor's `code` is sometimes a color ("Warm White") or a collection
+ // name ("JUNGLE PULSE") instead of a style code, and occasionally the style code lands in `name`.
+ // Prefer a code-looking `name`, else the first colorway model, else a code-looking `code`, else GL-<id>.
+ const codeRe = /^[A-Z]{1,4}-?\d/i;
+ const rawName = lr.name || d.name || null;
+ const rawCode = lr.code || d.code || null;
+ const firstModel = colorways.map((c) => c.model).find((m) => m && codeRe.test(m));
+ let sku, pattern, collection = null, colorName = null;
+ if (codeRe.test(rawName || '')) { sku = rawName; pattern = rawName; colorName = rawCode; }
+ else if (firstModel) { sku = firstModel; pattern = rawName; collection = (rawCode && !codeRe.test(rawCode)) ? rawCode : null; }
+ else if (codeRe.test(rawCode || '')) { sku = rawCode; pattern = rawName; }
+ else { sku = 'GL-' + id; pattern = rawName; collection = rawCode; }
+
const catName = lr.categoryName || d.categoryName || null;
catCount[catName || 'Uncategorized'] = (catCount[catName || 'Uncategorized'] || 0) + 1;
@@ -121,10 +136,12 @@ async function main() {
source: 'greenland',
id,
// NOTE: vendor stores pattern in `name`, color/code in `code` (sometimes swapped) — keep both raw
- name: lr.name || d.name || null,
- code: lr.code || d.code || null,
- sku: d.code || lr.code || lr.name || String(id), // mfr code is the closest thing to a SKU
- pattern: lr.name || d.name || null,
+ name: rawName,
+ code: rawCode,
+ sku, // derived (see codeRe logic above)
+ pattern,
+ collection, // vendor collection name, when `code` held one
+ color: colorName, // real color name, when `code` held one
category_id: lr.categoryId || d.categoryId || null,
category: catName,
wall_class: wallClass.length ? wallClass : null, // Cork / Natural / Textile etc.
diff --git a/staging/greenland.jsonl b/staging/greenland.jsonl
index 360d180..b377a4f 100644
--- a/staging/greenland.jsonl
+++ b/staging/greenland.jsonl
@@ -1,4 +1,4 @@
-{"source":"greenland","id":862,"name":"S300NQ8319","code":"Warm White","sku":"Warm White","pattern":"S300NQ8319","category_id":1,"category":"Wallcovering","wall_class":["Cork"],"wall_type":["Top 100 Cork& Wood"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":40,"name":"Cork","type":"wallClass"},{"id":292,"name":"Top 100 Cork& Wood","type":"wallType"}],"use":"Wallcovering","width":"91.5 cm/36''","repeat":null,"minimum_order":"5.5 meters / 6 yards","fire_rating":"ASTM E84 Class A","backing":"Non Woven","weight":270,"composition":null,"unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=NQ8319_20260612021953.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=NQ8319_20260612021953.jpg"],"image_count":1,"colorways":null,"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=862","detail_ok":true}
+{"source":"greenland","id":862,"name":"S300NQ8319","code":"Warm White","sku":"S300NQ8319","pattern":"S300NQ8319","category_id":1,"category":"Wallcovering","wall_class":["Cork"],"wall_type":["Top 100 Cork& Wood"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":40,"name":"Cork","type":"wallClass"},{"id":292,"name":"Top 100 Cork& Wood","type":"wallType"}],"use":"Wallcovering","width":"91.5 cm/36''","repeat":null,"minimum_order":"5.5 meters / 6 yards","fire_rating":"ASTM E84 Class A","backing":"Non Woven","weight":270,"composition":null,"unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=NQ8319_20260612021953.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=NQ8319_20260612021953.jpg"],"image_count":1,"colorways":null,"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=862","detail_ok":true,"color":"Warm White","collection":null,"_sku_fixed":true}
{"source":"greenland","id":579,"name":"Vertical Essence","code":"V020P1455","sku":"V020P1455","pattern":"Vertical Essence","category_id":1,"category":"Wallcovering","wall_class":["Vinyl"],"wall_type":null,"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":274,"name":"Vinyl","type":"wallClass"},{"id":285,"name":"V020","type":"newClass"}],"use":"Wallcovering","width":"137 cm/54''","repeat":null,"minimum_order":"10 meter/11 yard","fire_rating":"ASTM E84 Class A","backing":"Non Woven","weight":990,"composition":null,"unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=P1455_20260609060337.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=P1455_20260609060337.jpg"],"image_count":1,"colorways":null,"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=579","detail_ok":true}
{"source":"greenland","id":646,"name":"Art Paint","code":"V020P1449","sku":"V020P1449","pattern":"Art Paint","category_id":1,"category":"Wallcovering","wall_class":["Vinyl"],"wall_type":null,"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":274,"name":"Vinyl","type":"wallClass"},{"id":285,"name":"V020","type":"newClass"}],"use":"Wallcovering","width":"137 cm/54''","repeat":null,"minimum_order":"10 meter/11 yard","fire_rating":"ASTM E84 Class A","backing":"Non Woven","weight":560,"composition":null,"unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=P1449_20260609083228.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=P1449_20260609083228.jpg"],"image_count":1,"colorways":null,"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=646","detail_ok":true}
{"source":"greenland","id":658,"name":"Art Paint","code":"V020P1447","sku":"V020P1447","pattern":"Art Paint","category_id":1,"category":"Wallcovering","wall_class":["Vinyl"],"wall_type":null,"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":274,"name":"Vinyl","type":"wallClass"},{"id":285,"name":"V020","type":"newClass"}],"use":"Wallcovering","width":"137 cm/54''","repeat":null,"minimum_order":"10 meter/11 yard","fire_rating":"ASTM E84 Class A","backing":"Non Woven","weight":560,"composition":null,"unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=P1447_20260609090551.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=P1447_20260609090551.jpg"],"image_count":1,"colorways":null,"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=658","detail_ok":true}
@@ -683,8 +683,8 @@
{"source":"greenland","id":275,"name":"Wool","code":"T173-3","sku":"T173-3","pattern":"Wool","category_id":1,"category":"Wallcovering","wall_class":["Wool"],"wall_type":["T173"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":30,"name":"Wool","type":"wallClass"},{"id":265,"name":"T173","type":"wallType"}],"use":"Wallcovering","width":"137 cm/54''","repeat":null,"minimum_order":"10 meter/11 yard","fire_rating":null,"backing":"Non Woven","weight":380,"composition":"wool 100%","unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=TF1341_20240615032756.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=TF1341_20240615032756.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=TF1341_20240615060143.jpg"],"image_count":2,"colorways":[{"id":3618,"color":1,"code":null,"image":null},{"id":3619,"color":1,"code":null,"image":null},{"id":3620,"color":1,"code":null,"image":null},{"id":3621,"color":1,"code":null,"image":null}],"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=275","detail_ok":true}
{"source":"greenland","id":274,"name":"Silk","code":"T173-2","sku":"T173-2","pattern":"Silk","category_id":1,"category":"Wallcovering","wall_class":["Silk"],"wall_type":["T173"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":32,"name":"Silk","type":"wallClass"},{"id":265,"name":"T173","type":"wallType"}],"use":"Wallcovering","width":"91.5 cm/36''","repeat":null,"minimum_order":"10 meter/11 yard","fire_rating":null,"backing":"Non Woven","weight":220,"composition":"Silk 100%","unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=TF3389_20240615025056.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=TF3389_20240615025056.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=TF3380_20240615025146.jpg"],"image_count":2,"colorways":[{"id":3577,"color":8,"code":null,"image":null},{"id":3578,"color":9,"code":null,"image":null},{"id":3579,"color":1,"code":null,"image":null},{"id":3580,"color":1,"code":null,"image":null},{"id":3581,"color":1,"code":null,"image":null},{"id":3582,"color":1,"code":null,"image":null},{"id":3583,"color":5,"code":null,"image":null},{"id":3584,"color":8,"code":null,"image":null},{"id":3585,"color":7,"code":null,"image":null},{"id":3586,"color":8,"code":null,"image":null},{"id":3587,"color":12,"code":null,"image":null},{"id":3588,"color":6,"code":null,"image":null},{"id":3589,"color":1,"code":null,"image":null},{"id":3590,"color":4,"code":null,"image":null},{"id":3591,"color":6,"code":null,"image":null},{"id":3592,"color":7,"code":null,"image":null},{"id":3593,"color":8,"code":null,"image":null},{"id":3594,"color":1,"code":null,"image":null},{"id":3595,"color":9,"code":null,"image":null},{"id":3596,"color":7,"code":null,"image":null},{"id":3597,"color":12,"code":null,"image":null},{"id":3598,"color":1,"code":null,"image":null},{"id":3599,"color":8,"code":null,"image":null},{"id":3600,"color":6,"code":null,"image":null},{"id":3601,"color":1,"code":null,"image":null},{"id":3602,"color":4,"code":null,"image":null},{"id":3603,"color":13,"code":null,"image":null},{"id":3604,"color":9,"code":null,"image":null},{"id":3605,"color":9,"code":null,"image":null},{"id":3606,"color":9,"code":null,"image":null},{"id":3607,"color":9,"code":null,"image":null},{"id":3608,"color":7,"code":null,"image":null},{"id":3609,"color":7,"code":null,"image":null},{"id":3610,"color":9,"code":null,"image":null},{"id":3611,"color":9,"code":null,"image":null},{"id":3612,"color":9,"code":null,"image":null},{"id":3613,"color":4,"code":null,"image":null},{"id":3614,"color":1,"code":null,"image":null},{"id":3615,"color":1,"code":null,"image":null},{"id":3616,"color":1,"code":null,"image":null},{"id":3617,"color":9,"code":null,"image":null}],"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=274","detail_ok":true}
{"source":"greenland","id":267,"name":"Linen","code":"T173-1","sku":"T173-1","pattern":"Linen","category_id":1,"category":"Wallcovering","wall_class":["Linen"],"wall_type":["T173"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":29,"name":"Linen","type":"wallClass"},{"id":265,"name":"T173","type":"wallType"}],"use":"Wallcovering","width":"137 cm/54''","repeat":null,"minimum_order":"10 meter/11 yard","fire_rating":null,"backing":"Non Woven","weight":425,"composition":"Linen 100%","unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=TF1299_20240620072837.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=TF1299_20240620072837.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=TF1299(1)_20240614081731.jpg"],"image_count":2,"colorways":[{"id":3479,"color":4,"code":null,"image":null},{"id":3480,"color":9,"code":null,"image":null},{"id":3481,"color":9,"code":null,"image":null},{"id":3482,"color":9,"code":null,"image":null},{"id":3483,"color":4,"code":null,"image":null},{"id":3484,"color":9,"code":null,"image":null},{"id":3485,"color":4,"code":null,"image":null},{"id":3486,"color":4,"code":null,"image":null},{"id":3487,"color":1,"code":null,"image":null},{"id":3488,"color":9,"code":null,"image":null},{"id":3489,"color":9,"code":null,"image":null},{"id":3490,"color":9,"code":null,"image":null},{"id":3491,"color":1,"code":null,"image":null},{"id":3492,"color":1,"code":null,"image":null},{"id":3493,"color":1,"code":null,"image":null},{"id":3494,"color":1,"code":null,"image":null},{"id":3495,"color":7,"code":null,"image":null},{"id":3496,"color":4,"code":null,"image":null},{"id":3497,"color":4,"code":null,"image":null},{"id":3498,"color":9,"code":null,"image":null},{"id":3499,"color":8,"code":null,"image":null},{"id":3500,"color":8,"code":null,"image":null},{"id":3501,"color":8,"code":null,"image":null},{"id":3502,"color":1,"code":null,"image":null},{"id":3503,"color":1,"code":null,"image":null},{"id":3504,"color":9,"code":null,"image":null},{"id":3505,"color":1,"code":null,"image":null},{"id":3506,"color":1,"code":null,"image":null},{"id":3507,"color":7,"code":null,"image":null},{"id":3508,"color":1,"code":null,"image":null},{"id":3509,"color":1,"code":null,"image":null},{"id":3510,"color":8,"code":null,"image":null},{"id":3511,"color":1,"code":null,"image":null},{"id":3512,"color":9,"code":null,"image":null},{"id":3513,"color":9,"code":null,"image":null},{"id":3514,"color":1,"code":null,"image":null},{"id":3515,"color":1,"code":null,"image":null},{"id":3516,"color":1,"code":null,"image":null},{"id":3517,"color":1,"code":null,"image":null},{"id":3518,"color":1,"code":null,"image":null},{"id":3519,"color":1,"code":null,"image":null},{"id":3520,"color":14,"code":null,"image":null},{"id":3521,"color":1,"code":null,"image":null},{"id":3522,"color":1,"code":null,"image":null},{"id":3523,"color":3,"code":null,"image":null},{"id":3524,"color":6,"code":null,"image":null},{"id":3525,"color":1,"code":null,"image":null},{"id":3526,"color":1,"code":null,"image":null},{"id":3527,"color":1,"code":null,"image":null},{"id":3528,"color":1,"code":null,"image":null},{"id":3529,"color":2,"code":null,"image":null},{"id":3530,"color":8,"code":null,"image":null},{"id":3733,"color":4,"code":null,"image":null},{"id":3734,"color":1,"code":null,"image":null}],"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=267","detail_ok":true}
-{"source":"greenland","id":260,"name":"Woven Dreamscape","code":"JUNGLE PULSE","sku":"JUNGLE PULSE","pattern":"Woven Dreamscape","category_id":1,"category":"Wallcovering","wall_class":["Multi-material"],"wall_type":["Jungle Pulse"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":41,"name":"Multi-material","type":"wallClass"},{"id":264,"name":"Jungle Pulse","type":"wallType"}],"use":"Panel,Wallcovering","width":"102 cm/40''","repeat":null,"minimum_order":"5.5 meters / 6 yards","fire_rating":"ASTM E84 Class A","backing":"Non Woven","weight":160,"composition":null,"unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1125_20240614065904.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1125_20240614065904.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1125_20240614065931.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1177_20240614065933.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1182_20240614065933.jpg"],"image_count":4,"colorways":[{"id":3413,"color":1,"code":null,"image":null},{"id":3414,"color":11,"code":null,"image":null},{"id":3415,"color":6,"code":null,"image":null}],"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=260","detail_ok":true}
-{"source":"greenland","id":262,"name":"Elegant Squares","code":"JUNGLE PULSE","sku":"JUNGLE PULSE","pattern":"Elegant Squares","category_id":1,"category":"Wallcovering","wall_class":null,"wall_type":["Jungle Pulse"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":264,"name":"Jungle Pulse","type":"wallType"}],"use":"Wallcovering","width":"102 cm/40'',89 cm/35''","repeat":null,"minimum_order":"5.5 meters / 6 yards","fire_rating":null,"backing":"Non Woven","weight":160,"composition":"PET 100%","unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1186_20240614062254.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1186_20240614062254.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1186_20240614062310.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1208_20240614062309.jpg"],"image_count":3,"colorways":[{"id":3421,"color":9,"code":null,"image":null},{"id":3422,"color":1,"code":null,"image":null},{"id":3423,"color":6,"code":null,"image":null},{"id":3424,"color":7,"code":null,"image":null},{"id":3425,"color":8,"code":null,"image":null}],"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=262","detail_ok":true}
+{"source":"greenland","id":260,"name":"Woven Dreamscape","code":"JUNGLE PULSE","sku":"H170DP1177","pattern":"Woven Dreamscape","category_id":1,"category":"Wallcovering","wall_class":["Multi-material"],"wall_type":["Jungle Pulse"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":41,"name":"Multi-material","type":"wallClass"},{"id":264,"name":"Jungle Pulse","type":"wallType"}],"use":"Panel,Wallcovering","width":"102 cm/40''","repeat":null,"minimum_order":"5.5 meters / 6 yards","fire_rating":"ASTM E84 Class A","backing":"Non Woven","weight":160,"composition":null,"unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1125_20240614065904.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1125_20240614065904.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1125_20240614065931.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1177_20240614065933.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1182_20240614065933.jpg"],"image_count":4,"colorways":[{"id":3413,"color":1,"code":null,"image":null},{"id":3414,"color":11,"code":null,"image":null},{"id":3415,"color":6,"code":null,"image":null}],"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=260","detail_ok":true,"collection":"JUNGLE PULSE","_sku_fixed":true}
+{"source":"greenland","id":262,"name":"Elegant Squares","code":"JUNGLE PULSE","sku":"H170DP1207","pattern":"Elegant Squares","category_id":1,"category":"Wallcovering","wall_class":null,"wall_type":["Jungle Pulse"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":264,"name":"Jungle Pulse","type":"wallType"}],"use":"Wallcovering","width":"102 cm/40'',89 cm/35''","repeat":null,"minimum_order":"5.5 meters / 6 yards","fire_rating":null,"backing":"Non Woven","weight":160,"composition":"PET 100%","unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1186_20240614062254.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1186_20240614062254.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1186_20240614062310.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1208_20240614062309.jpg"],"image_count":3,"colorways":[{"id":3421,"color":9,"code":null,"image":null},{"id":3422,"color":1,"code":null,"image":null},{"id":3423,"color":6,"code":null,"image":null},{"id":3424,"color":7,"code":null,"image":null},{"id":3425,"color":8,"code":null,"image":null}],"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=262","detail_ok":true,"collection":"JUNGLE PULSE","_sku_fixed":true}
{"source":"greenland","id":265,"name":"Royal Bloom","code":"H170DP1211","sku":"H170DP1211","pattern":"Royal Bloom","category_id":1,"category":"Wallcovering","wall_class":null,"wall_type":["Jungle Pulse"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":264,"name":"Jungle Pulse","type":"wallType"}],"use":"Wallcovering","width":"89 cm/35''","repeat":null,"minimum_order":"5.5 meters / 6 yards","fire_rating":null,"backing":"Non Woven","weight":160,"composition":"PET 100%","unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1211_20240614084246.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1211_20240614084246.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1211_20240615054008.jpg"],"image_count":2,"colorways":[{"id":3461,"color":6,"code":null,"image":null}],"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=265","detail_ok":true}
{"source":"greenland","id":266,"name":"Lustrous elegance","code":"H170DP1185","sku":"H170DP1185","pattern":"Lustrous elegance","category_id":1,"category":"Wallcovering","wall_class":null,"wall_type":["Jungle Pulse"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":264,"name":"Jungle Pulse","type":"wallType"}],"use":"Wallcovering","width":"102 cm/40'',89 cm/35''","repeat":null,"minimum_order":"5.5 meters / 6 yards","fire_rating":null,"backing":null,"weight":160,"composition":"PET 100%","unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1218_20240614084710.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1218_20240614084710.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1183_20240614084726.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1218_20240614084728.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=NH6051_20240614084747.jpg"],"image_count":4,"colorways":[{"id":3462,"color":3,"code":null,"image":null},{"id":3463,"color":1,"code":null,"image":null},{"id":3464,"color":7,"code":null,"image":null},{"id":3465,"color":3,"code":null,"image":null},{"id":3466,"color":1,"code":null,"image":null},{"id":3467,"color":8,"code":null,"image":null},{"id":3468,"color":2,"code":null,"image":null},{"id":3469,"color":7,"code":null,"image":null},{"id":3470,"color":7,"code":null,"image":null},{"id":3471,"color":8,"code":null,"image":null},{"id":3472,"color":8,"code":null,"image":null},{"id":3473,"color":8,"code":null,"image":null},{"id":3474,"color":1,"code":null,"image":null},{"id":3475,"color":6,"code":null,"image":null},{"id":3476,"color":1,"code":null,"image":null},{"id":3477,"color":6,"code":null,"image":null},{"id":3478,"color":6,"code":null,"image":null}],"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=266","detail_ok":true}
{"source":"greenland","id":264,"name":"Le corbusier","code":"H170","sku":"H170","pattern":"Le corbusier","category_id":1,"category":"Wallcovering","wall_class":null,"wall_type":["Jungle Pulse"],"sub_categories":[{"id":1,"name":"是","type":"news"},{"id":264,"name":"Jungle Pulse","type":"wallType"}],"use":"Wallcovering","width":"89 cm/35''","repeat":null,"minimum_order":"5.5 meters / 6 yards","fire_rating":null,"backing":"Non Woven","weight":160,"composition":"PET 100%","unit_price":2,"is_publish":1,"cover_image":"https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1223_20240614073219.jpg","images":["https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1223_20240614073219.jpg","https://api.greenlandwallcoverings.com/api/downloadFile?fileName=DP1223_20240615054439.jpg"],"image_count":2,"colorways":[{"id":3453,"color":1,"code":null,"image":null},{"id":3454,"color":9,"code":null,"image":null},{"id":3455,"color":1,"code":null,"image":null},{"id":3456,"color":1,"code":null,"image":null},{"id":3457,"color":8,"code":null,"image":null},{"id":3458,"color":1,"code":null,"image":null},{"id":3459,"color":6,"code":null,"image":null},{"id":3460,"color":1,"code":null,"image":null}],"url":"http://m.greenlandwallcoverings.com/#/pages/detail/index?id=264","detail_ok":true}
diff --git a/viewer/server.js b/viewer/server.js
index a300696..9df712f 100644
--- a/viewer/server.js
+++ b/viewer/server.js
@@ -57,9 +57,10 @@ function buildRows() {
rows.push({
source: 'greenland',
id: r.id,
- sku: r.sku || r.code || String(r.id),
+ sku: r.sku || String(r.id),
title: r.pattern || r.name || r.sku || String(r.id),
- color: r.code || null,
+ color: r.color || null, // real color name only; r.code is a style code, not a color
+ collection: r.collection || null,
category: r.category || null,
wall_classes: (r.wall_class && r.wall_class.length) ? r.wall_class : [],
wall_class: (r.wall_class && r.wall_class.length) ? r.wall_class.join(', ') : null,
← 9e6e870 extract-colors: URL-encode filenames w/ spaces + retry nulls
·
back to Greenland China
·
chore: lint defensive null-init (session close) 3bbaf26 →