| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  | import {Translation} from "../UI/i18n/Translation"; | 
					
						
							| 
									
										
										
										
											2021-09-13 01:21:47 +02:00
										 |  |  | import {ApplicableUnitJson} from "./ThemeConfig/Json/UnitConfigJson"; | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  | import Translations from "../UI/i18n/Translations"; | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  | import {UIEventSource} from "../Logic/UIEventSource"; | 
					
						
							|  |  |  | import BaseUIElement from "../UI/BaseUIElement"; | 
					
						
							|  |  |  | import Toggle from "../UI/Input/Toggle"; | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | export class Denomination { | 
					
						
							|  |  |  |     public readonly canonical: string; | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |     public readonly _canonicalSingular: string; | 
					
						
							|  |  |  |     public readonly default: boolean; | 
					
						
							|  |  |  |     public readonly prefix: boolean; | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  |     public readonly alternativeDenominations: string []; | 
					
						
							| 
									
										
										
										
											2021-09-09 00:05:51 +02:00
										 |  |  |     private readonly _human: Translation; | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |     private readonly _humanSingular?: Translation; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 01:21:47 +02:00
										 |  |  |     constructor(json: ApplicableUnitJson, context: string) { | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  |         context = `${context}.unit(${json.canonicalDenomination})` | 
					
						
							|  |  |  |         this.canonical = json.canonicalDenomination.trim() | 
					
						
							|  |  |  |         if (this.canonical === undefined) { | 
					
						
							|  |  |  |             throw `${context}: this unit has no decent canonical value defined` | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |         this._canonicalSingular = json.canonicalDenominationSingular?.trim() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         json.alternativeDenomination.forEach((v, i) => { | 
					
						
							|  |  |  |             if (((v?.trim() ?? "") === "")) { | 
					
						
							|  |  |  |                 throw `${context}.alternativeDenomination.${i}: invalid alternative denomination: undefined, null or only whitespace` | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         this.alternativeDenominations = json.alternativeDenomination?.map(v => v.trim()) ?? [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         this.default = json.default ?? false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         this._human = Translations.T(json.human, context + "human") | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |         this._humanSingular = Translations.T(json.humanSingular, context + "humanSingular") | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         this.prefix = json.prefix ?? false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get human(): Translation { | 
					
						
							|  |  |  |         return this._human.Clone() | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |     get humanSingular(): Translation { | 
					
						
							|  |  |  |         return (this._humanSingular ?? this._human).Clone() | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     getToggledHuman(isSingular: UIEventSource<boolean>): BaseUIElement { | 
					
						
							|  |  |  |         if (this._humanSingular === undefined) { | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |             return this.human | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return new Toggle( | 
					
						
							|  |  |  |             this.humanSingular, | 
					
						
							|  |  |  |             this.human, | 
					
						
							|  |  |  |             isSingular | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  |     public canonicalValue(value: string, actAsDefault?: boolean) { | 
					
						
							|  |  |  |         if (value === undefined) { | 
					
						
							|  |  |  |             return undefined; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         const stripped = this.StrippedValue(value, actAsDefault) | 
					
						
							|  |  |  |         if (stripped === null) { | 
					
						
							|  |  |  |             return null; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |         if (stripped === "1" && this._canonicalSingular !== undefined) { | 
					
						
							|  |  |  |             return "1 " + this._canonicalSingular | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         return stripped + " " + this.canonical; | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Returns the core value (without unit) if: | 
					
						
							|  |  |  |      * - the value ends with the canonical or an alternative value (or begins with if prefix is set) | 
					
						
							|  |  |  |      * - the value is a Number (without unit) and default is set | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Returns null if it doesn't match this unit | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public StrippedValue(value: string, actAsDefault?: boolean): string { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (value === undefined) { | 
					
						
							|  |  |  |             return undefined; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         value = value.toLowerCase() | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |         const self = this; | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         function startsWith(key) { | 
					
						
							|  |  |  |             if (self.prefix) { | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |                 return value.startsWith(key) | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |                 return value.endsWith(key) | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         function substr(key) { | 
					
						
							|  |  |  |             if (self.prefix) { | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |                 return value.substr(key.length).trim() | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |                 return value.substring(0, value.length - key.length).trim() | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (this.canonical !== "" && startsWith(this.canonical.toLowerCase())) { | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |             return substr(this.canonical) | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (this._canonicalSingular !== undefined && this._canonicalSingular !== "" && startsWith(this._canonicalSingular)) { | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |             return substr(this._canonicalSingular) | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 02:38:20 +02:00
										 |  |  |         for (const alternativeValue of this.alternativeDenominations) { | 
					
						
							|  |  |  |             if (startsWith(alternativeValue)) { | 
					
						
							|  |  |  |                 return substr(alternativeValue); | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (this.default || actAsDefault) { | 
					
						
							|  |  |  |             const parsed = Number(value.trim()) | 
					
						
							|  |  |  |             if (!isNaN(parsed)) { | 
					
						
							|  |  |  |                 return value.trim(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |