Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 1x 1x 1x 1x 1x 1x 34x 34x 34x 34x 34x 13x 13x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 34x 34x 13x 34x 34x 1x 1x 13x 13x 13x 31x 31x 13x 13x 13x 13x 13x 13x 4x 4x 13x 4x 4x 4x 4x 13x 2x 2x 2x 13x 13x 1x 1x 1x 1x 1x | import Is from 'strong-type';
import DominosFormat from './DominosFormat.js';
const weakIs=new Is(false);
class Address extends DominosFormat{
constructor(parameters){
super();
this.init=parameters;
if(weakIs.string(parameters)){
this.#parse(parameters);
}
return this;
}
street =''
streetNumber=''
streetName =''
unitType =''
unitNumber =''
city =''
region =''
postalCode =''
deliveryInstructions=''
get addressLines() {
const line1 = this.street
||`${this.streetNumber} ${this.streetName} ${this.unitType} ${this.unitNumber}`
||'';
const line2 = `${
(this.city||'')
} ${
(this.region||'')
} ${
this.postalCode
}`
const lines={
line1,
line2
};
return lines;
}
#parse(locationString) {
return parseAddress.call(this,locationString);
}
}
const parseAddress=function(locationString){
const splitAddress = locationString.split(',');
for (var i in splitAddress) {
splitAddress[i] = splitAddress[i].trim();
}
this.postalCode= splitAddress[splitAddress.length-1]
//works well enough for addresses, could be better though
switch (splitAddress.length) {
case 2:
this.street=splitAddress[0];
break;
case 3:
this.street=splitAddress[0];
this.city = splitAddress[1];
break;
case 4:
this.street = splitAddress[0];
this.city = splitAddress[1];
this.region = splitAddress[2];
}
}
export {
Address as default,
Address
};
|