{"version":3,"file":"app-ba2ec2a7.3c2adae2ecf1464ac637.bundle.js","mappings":";;;;;;;;;;;;;;;AAMA;AAAA;AAAA;AAAA;;AACA;AACA;AACA;AACA;AACA;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AAAA;AACA;AACA;AACA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACvBA;AAEA;AAIA;AAAA;AAQA;AAPA;;;;AACA;;AAAA;;;;;AACA;AAEA;AACA;AACA;AAPA;AADA;AACA;AAQA;AAAA;AARA;;;;;;;;;;;;;;;;;;;;;;;;;ACNA;AAGA;AAAA;AASA;AAPA;AACA;AACA;AAEA;AACA;AACA;AARA;AADA;AACA;AASA;AAAA;AATA;AAWA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;;;;;;;;;;;;;AC/DA;AAEA;AAMA;AAIA;AAAA;AAFA;AACA;AAGA;AAEA;AACA;AAAA;AACA;AAAA;AACA;AAEA;AAEA;AACA;AAAA;AACA;AACA;AAEA;AACA;AAAA;AACA;AApBA;AAAA;;AAAA;AAFA;AAJA;AACA;AACA;AACA;AAKA;AAJA;AAuBA;AAAA;AAvBA;;;;;;;;;;;;;;;;ACLA;AAAA;AACA;AAEA;AAsBA;AApBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AAEA;AACA;AAEA;AACA;;AAEA;AACA;AACA;AAAA;;AAEA;AACA;AAAA;AAAA;AAEA;AAEA;AACA;AACA;AACA;AAAA","sources":["webpack://client-app/./src/resources/behaviour/bindValidationResult.ts","webpack://client-app/./src/resources/behaviour/validate.ts","webpack://client-app/./src/resources/behaviour/validators.ts","webpack://client-app/./src/resources/body.ts","webpack://client-app/./src/resources/bodyService.ts"],"sourcesContent":["import { IsNotEmpty, validate } from \"class-validator\";\r\nimport { bindingBehavior, Binding, AccessScope, BindingBehavior } from \"aurelia-binding\";\r\nimport { View, noView } from \"aurelia-framework\";\r\n\r\n\r\n\r\nexport function bindValidationResult(...properties: string[]): any {\r\n return function (target: any, propertyKey: string, descriptor: PropertyDescriptor) {\r\n target.__validationerrorbindings__ = target.__validationerrorbindings__ || [];\r\n target.__validationerrorbindings__.push(propertyKey);\r\n };\r\n}\r\n\r\n\r\nexport function bindValidationFired(trigger: ValidationTriggers): any {\r\n return function (target: any, propertyKey: string, descriptor: PropertyDescriptor) {\r\n target.__validationerrorbindings_fired__ = target.__validationerrorbindings_fired__ || [];\r\n target.__validationerrorbindings_fired__.push({ prop : propertyKey, trigger });\r\n };\r\n}\r\nexport enum ValidationTriggers{\r\n AutoValidation,\r\n ManualValidation\r\n}","import { bindingBehavior, Binding, BindingBehavior } from \"aurelia-binding\";\r\nimport { View, } from \"aurelia-framework\";\r\nimport { validate, validateBinding, addBindingValidation, removeBindingValidation } from \"validation\";\r\n\r\n\r\n@bindingBehavior('validate')\r\nexport class ValidateBindingBehavior {\r\n async bind(binding: Binding, scope: View) {\r\n await addBindingValidation(binding);\r\n }\r\n\r\n unbind(binding, scope) {\r\n removeBindingValidation(binding);\r\n }\r\n}\r\n","import { ValidationOptions, registerDecorator, ValidationArguments, ValidatorConstraint, ValidatorConstraintInterface } from \"validation\";\r\n\r\n@ValidatorConstraint({ name: \"equalsProperty\", async: false })\r\nexport class EqualsPropertyConstraint implements ValidatorConstraintInterface {\r\n\r\n validate(propertyValue: string, args: ValidationArguments) {\r\n return propertyValue === args.object[args.constraints[0]];\r\n }\r\n\r\n defaultMessage(args: ValidationArguments) {\r\n return `\"${args.property}\" must be equal to \"${args.constraints[0]}\"`;\r\n }\r\n}\r\n\r\nexport function IsNotBlank(validationOptions?: ValidationOptions) {\r\n return function (object: Object, propertyName: string) {\r\n registerDecorator({\r\n name: \"isNotBlank\",\r\n target: object.constructor,\r\n propertyName: propertyName,\r\n constraints: [],\r\n options: validationOptions,\r\n validator: {\r\n validate(value: any) {\r\n return typeof value === \"string\" && value.trim().length > 0;\r\n }\r\n }\r\n });\r\n };\r\n}\r\n\r\nexport function IsCurrencyString(validationOptions?: ValidationOptions) {\r\n return function (object: Object, propertyName: string) {\r\n registerDecorator({\r\n name: \"isCurrencyString\",\r\n target: object.constructor,\r\n propertyName: propertyName,\r\n constraints: [],\r\n options: validationOptions,\r\n validator: {\r\n validate(value: any) {\r\n return typeof value === \"string\" && /^[£$€]?[0-9]{1,3}(?:,?[0-9]{3})*(?:\\.[0-9]{2})?$/.test(value);\r\n }\r\n }\r\n });\r\n };\r\n}\r\n\r\nexport function IsPostcode(validationOptions?: ValidationOptions) {\r\n return function (object: Object, propertyName: string) {\r\n registerDecorator({\r\n name: \"isPostcode\",\r\n target: object.constructor,\r\n propertyName: propertyName,\r\n constraints: [],\r\n options: validationOptions,\r\n validator: {\r\n validate(value: any) {\r\n return typeof value === \"string\" && /^([a-zA-Z][a-hA-Hj-yJ-Y]?[0-9][a-zA-Z0-9]? ?[0-9][a-zA-Z]{2}|GIR ?0[aA]{2})$/.test(value);\r\n }\r\n }\r\n });\r\n };\r\n}","import { autoinject, PLATFORM, containerless, useView, customElement, bindable, noView } from \"aurelia-framework\";\r\nimport { EventAggregator } from \"aurelia-event-aggregator\";\r\nimport { BodyService, BodyStackItem } from \"./bodyService\";\r\n\r\n@customElement('body-class')\r\n@containerless\r\n@noView\r\n@autoinject\r\nexport class BodyClass {\r\n\r\n @bindable className: string = \"\";\r\n private current: BodyStackItem = null;\r\n constructor(private bodyService: BodyService) {\r\n\r\n }\r\n\r\n classNameChanged(n, o) {\r\n if (o == n) return;\r\n if (this.current) this.current.dispose();\r\n this.current = this.bodyService.setClass(n)\r\n\r\n }\r\n\r\n attached() {\r\n if (this.current) this.current.dispose();\r\n this.current = this.bodyService.setClass(this.className)\r\n }\r\n\r\n detached() {\r\n if (this.current) this.current.dispose();\r\n }\r\n}\r\n","import { autoinject, PLATFORM, containerless, useView, customElement, bindable, noView } from \"aurelia-framework\";\r\nimport { EventAggregator } from \"aurelia-event-aggregator\";\r\n\r\nexport class BodyService {\r\n private claseStack = []\r\n\r\n public currentClass: string = null;\r\n\r\n private innerSetClass(className: string) {\r\n this.currentClass = className;\r\n window.document.body.className = className;\r\n }\r\n public setClass(className: string): BodyStackItem {\r\n var itm = new BodyStackItem(className, this);\r\n this.claseStack.push(itm);\r\n this.innerSetClass(itm.className);\r\n\r\n return itm;\r\n }\r\n\r\n public remove(item: BodyStackItem) {\r\n this.claseStack = this.claseStack.filter(x => x != item);\r\n\r\n if (this.claseStack.length > 0)\r\n this.innerSetClass(this.claseStack[this.claseStack.length - 1].className);\r\n else\r\n this.innerSetClass('');\r\n }\r\n}\r\n\r\nexport class BodyStackItem {\r\n constructor(public className: string, private service: BodyService) {\r\n\r\n }\r\n\r\n public dispose() {\r\n this.service.remove(this);\r\n }\r\n}\r\n"],"names":[],"sourceRoot":""}