AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 1 | /*! |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 2 | * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 3 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| 13 | * or implied. See the License for the specific language governing |
| 14 | * permissions and limitations under the License. |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 15 | */ |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 16 | import IntlObj from 'intl'; |
avigaffa | 00e935f | 2017-09-10 08:58:51 +0300 | [diff] [blame] | 17 | import IntlMessageFormatObj from 'intl-messageformat'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 18 | import IntlRelativeFormatObj from 'intl-relativeformat'; |
| 19 | import createFormatCacheObj from 'intl-format-cache'; |
| 20 | import i18nJson from 'i18nJson'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 21 | /* |
avigaffa | 00e935f | 2017-09-10 08:58:51 +0300 | [diff] [blame] | 22 | Intl libs are using out dated transpailer from ecmascript6. |
| 23 | * TODO: As soon as they fix it, remove this assignments!!! |
| 24 | * */ |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 25 | var Intl = window.Intl || IntlObj.default, |
| 26 | IntlMessageFormat = IntlMessageFormatObj.default, |
| 27 | IntlRelativeFormat = IntlRelativeFormatObj.default, |
andre.schmid | ead5c38 | 2021-08-06 16:04:50 +0100 | [diff] [blame] | 28 | createFormatCache = createFormatCacheObj; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 29 | |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 30 | /*extract locale*/ |
| 31 | var _locale = window.localStorage && localStorage.getItem('user_locale'); |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 32 | if (!_locale) { |
| 33 | if (window.navigator) { |
| 34 | _locale = navigator.language || navigator.userLanguage; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 35 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 36 | //For now removing the dashes from the language. |
| 37 | let indexOfDash = _locale.indexOf('-'); |
| 38 | if (-1 !== indexOfDash) { |
| 39 | _locale = _locale.substr(0, indexOfDash); |
| 40 | } |
| 41 | } |
| 42 | if (!_locale) { |
| 43 | _locale = 'en'; |
| 44 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | var _localeUpper = _locale.toUpperCase(); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 48 | var i18n = { |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 49 | _locale: _locale, |
| 50 | _localeUpper: _localeUpper, |
| 51 | _i18nData: i18nJson || {}, |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 52 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 53 | number(num) { |
| 54 | return createFormatCache(Intl.NumberFormat)(this._locale).format(num); |
| 55 | }, |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 56 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 57 | date(date, options, relativeDates) { |
| 58 | if (undefined === relativeDates || relativeDates) { |
| 59 | return this.dateRelative(date, options); |
| 60 | } else { |
| 61 | return this.dateNormal(date, options); |
| 62 | } |
| 63 | }, |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 64 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 65 | dateNormal(date, options) { |
| 66 | return createFormatCache(Intl.DateTimeFormat)( |
| 67 | this._locale, |
| 68 | options |
| 69 | ).format(date); |
| 70 | }, |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 71 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 72 | dateRelative(date, options) { |
| 73 | return createFormatCache(IntlRelativeFormat)( |
| 74 | this._locale, |
| 75 | options |
| 76 | ).format(date); |
| 77 | }, |
| 78 | message(messageId, options) { |
| 79 | let messageTxt = null; |
| 80 | if (i18nJson && i18nJson[messageId]) { |
| 81 | messageTxt = i18nJson[messageId]; |
| 82 | } else { |
| 83 | messageTxt = String(messageId); |
| 84 | } |
| 85 | return createFormatCache(IntlMessageFormat)( |
| 86 | messageTxt, |
| 87 | this._locale |
| 88 | ).format(options); |
| 89 | }, |
| 90 | getLocale() { |
| 91 | return this._locale; |
| 92 | }, |
| 93 | getLocaleUpper() { |
| 94 | return this._localeUpper; |
| 95 | }, |
| 96 | setLocale(locale) { |
| 97 | localStorage.setItem('user_locale', locale); |
| 98 | window.location.reload(); |
| 99 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 100 | }; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 101 | function i18nWrapper() { |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 102 | return i18nWrapper.message.apply(i18nWrapper, arguments); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | /*replace with some kind of extend method*/ |
| 106 | var prop, propKey; |
| 107 | for (propKey in i18n) { |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 108 | prop = i18n[propKey]; |
| 109 | if (typeof prop === 'function') { |
| 110 | prop = prop.bind(i18nWrapper); |
| 111 | } |
| 112 | i18nWrapper[propKey] = prop; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 113 | } |
| 114 | |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 115 | export default i18nWrapper; |