@zohodesk/i18n 1.0.0-beta.20 → 1.0.0-beta.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +89 -80
- package/es/components/DateTimeDiffFormat.js +2 -1
- package/es/components/HOCI18N.js +1 -1
- package/es/components/I18N.js +1 -0
- package/es/components/PluralFormat.js +1 -1
- package/es/components/__tests__/I18N.spec.js +1 -1
- package/es/components/__tests__/__snapshots__/DateTimeDiffFormat.spec.js.snap +258 -258
- package/es/components/__tests__/__snapshots__/FormatText.spec.js.snap +17 -17
- package/es/components/__tests__/__snapshots__/HOCI18N.spec.js.snap +15 -15
- package/es/components/__tests__/__snapshots__/I18N.spec.js.snap +17 -17
- package/es/components/__tests__/__snapshots__/I18NProvider.spec.js.snap +13 -13
- package/es/components/__tests__/__snapshots__/PluralFormat.spec.js.snap +17 -17
- package/es/components/__tests__/__snapshots__/UserTimeDiffFormat.spec.js.snap +366 -366
- package/lib/components/DateTimeDiffFormat.js +4 -3
- package/lib/components/FormatText.js +2 -2
- package/lib/components/HOCI18N.js +3 -3
- package/lib/components/I18N.js +3 -2
- package/lib/components/I18NProvider.js +2 -2
- package/lib/components/PluralFormat.js +3 -3
- package/lib/components/UserTimeDiffFormat.js +2 -2
- package/lib/components/__tests__/I18N.spec.js +1 -1
- package/lib/components/__tests__/__snapshots__/DateTimeDiffFormat.spec.js.snap +258 -258
- package/lib/components/__tests__/__snapshots__/FormatText.spec.js.snap +17 -17
- package/lib/components/__tests__/__snapshots__/HOCI18N.spec.js.snap +15 -15
- package/lib/components/__tests__/__snapshots__/I18N.spec.js.snap +17 -17
- package/lib/components/__tests__/__snapshots__/I18NProvider.spec.js.snap +13 -13
- package/lib/components/__tests__/__snapshots__/PluralFormat.spec.js.snap +17 -17
- package/lib/components/__tests__/__snapshots__/UserTimeDiffFormat.spec.js.snap +366 -366
- package/package.json +29 -29
- package/src/I18NContext.js +2 -2
- package/src/components/DateTimeDiffFormat.js +256 -256
- package/src/components/FormatText.js +14 -14
- package/src/components/HOCI18N.js +37 -37
- package/src/components/I18N.js +73 -72
- package/src/components/I18NProvider.js +110 -110
- package/src/components/PluralFormat.js +37 -37
- package/src/components/UserTimeDiffFormat.js +97 -97
- package/src/components/__tests__/DateTimeDiffFormat.spec.js +618 -618
- package/src/components/__tests__/FormatText.spec.js +26 -26
- package/src/components/__tests__/HOCI18N.spec.js +33 -33
- package/src/components/__tests__/I18N.spec.js +29 -29
- package/src/components/__tests__/I18NProvider.spec.js +65 -65
- package/src/components/__tests__/PluralFormat.spec.js +27 -27
- package/src/components/__tests__/UserTimeDiffFormat.spec.js +1076 -1076
- package/src/components/__tests__/__snapshots__/DateTimeDiffFormat.spec.js.snap +258 -258
- package/src/components/__tests__/__snapshots__/FormatText.spec.js.snap +17 -17
- package/src/components/__tests__/__snapshots__/HOCI18N.spec.js.snap +15 -15
- package/src/components/__tests__/__snapshots__/I18N.spec.js.snap +17 -17
- package/src/components/__tests__/__snapshots__/I18NProvider.spec.js.snap +13 -13
- package/src/components/__tests__/__snapshots__/PluralFormat.spec.js.snap +17 -17
- package/src/components/__tests__/__snapshots__/UserTimeDiffFormat.spec.js.snap +366 -366
- package/src/index.js +33 -33
- package/src/utils.js +527 -527
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
import React, { Children } from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
import { replaceI18NValuesWithRegex, unescapeUnicode } from '../utils';
|
|
4
|
-
import { I18NContext } from '../I18NContext';
|
|
5
|
-
export default (i18NKeys = []) => Component => {
|
|
6
|
-
class HOCI18N extends React.Component {
|
|
7
|
-
constructor(props) {
|
|
8
|
-
super(props);
|
|
9
|
-
this.getI18NValue = this.getI18NValue.bind(this);
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
getI18NValue(key) {
|
|
13
|
-
const { i18n } = this.context || {};
|
|
14
|
-
if (typeof i18n === 'undefined') {
|
|
15
|
-
return key;
|
|
16
|
-
}
|
|
17
|
-
let i18nStr = i18n[key];
|
|
18
|
-
if (i18nStr === undefined) {
|
|
19
|
-
return key;
|
|
20
|
-
}
|
|
21
|
-
return unescapeUnicode(i18nStr);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
render() {
|
|
25
|
-
let i18nProps = i18NKeys.reduce((result, key) => {
|
|
26
|
-
if (this.props[key]) {
|
|
27
|
-
result[key] = this.getI18NValue(this.props[key]);
|
|
28
|
-
}
|
|
29
|
-
return result;
|
|
30
|
-
}, {});
|
|
31
|
-
return <Component {...this.props} {...i18nProps} />;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
HOCI18N.contextType = I18NContext;
|
|
36
|
-
return HOCI18N;
|
|
37
|
-
};
|
|
1
|
+
import React, { Children } from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import { replaceI18NValuesWithRegex, unescapeUnicode } from '../utils';
|
|
4
|
+
import { I18NContext } from '../I18NContext';
|
|
5
|
+
export default (i18NKeys = []) => Component => {
|
|
6
|
+
class HOCI18N extends React.Component {
|
|
7
|
+
constructor(props) {
|
|
8
|
+
super(props);
|
|
9
|
+
this.getI18NValue = this.getI18NValue.bind(this);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
getI18NValue(key) {
|
|
13
|
+
const { i18n } = this.context || {};
|
|
14
|
+
if (typeof i18n === 'undefined') {
|
|
15
|
+
return key;
|
|
16
|
+
}
|
|
17
|
+
let i18nStr = i18n[key];
|
|
18
|
+
if (i18nStr === undefined) {
|
|
19
|
+
return key;
|
|
20
|
+
}
|
|
21
|
+
return unescapeUnicode(i18nStr);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
render() {
|
|
25
|
+
let i18nProps = i18NKeys.reduce((result, key) => {
|
|
26
|
+
if (this.props[key]) {
|
|
27
|
+
result[key] = this.getI18NValue(this.props[key]);
|
|
28
|
+
}
|
|
29
|
+
return result;
|
|
30
|
+
}, {});
|
|
31
|
+
return <Component {...this.props} {...i18nProps} />;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
HOCI18N.contextType = I18NContext;
|
|
36
|
+
return HOCI18N;
|
|
37
|
+
};
|
package/src/components/I18N.js
CHANGED
|
@@ -1,72 +1,73 @@
|
|
|
1
|
-
import React, { Children } from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
import { replaceI18NValuesWithRegex, unescapeUnicode } from '../utils';
|
|
4
|
-
import { HTMLPurifier } from '@zoho/SecurityJS';
|
|
5
|
-
import { I18NContext } from '../I18NContext';
|
|
6
|
-
|
|
7
|
-
export default class I18N extends React.Component {
|
|
8
|
-
constructor(props) {
|
|
9
|
-
super(props);
|
|
10
|
-
this.getI18NValue = this.getI18NValue.bind(this);
|
|
11
|
-
this.createElement = this.createElement.bind(this);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
getI18NValue() {
|
|
15
|
-
const { i18NKey: key, values } = this.props;
|
|
16
|
-
const { i18n } = this.context || {};
|
|
17
|
-
if (typeof i18n === 'undefined') {
|
|
18
|
-
return key;
|
|
19
|
-
}
|
|
20
|
-
let i18nStr = i18n[key];
|
|
21
|
-
if (i18nStr === undefined) {
|
|
22
|
-
return key;
|
|
23
|
-
}
|
|
24
|
-
i18nStr = replaceI18NValuesWithRegex(i18nStr, values);
|
|
25
|
-
return unescapeUnicode(i18nStr);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
createElement() {
|
|
29
|
-
const props = Object.keys(this.props).reduce((result, nextKey) => {
|
|
30
|
-
if (
|
|
31
|
-
nextKey != 'i18NKey' &&
|
|
32
|
-
nextKey != 'tag' &&
|
|
33
|
-
nextKey != 'values' &&
|
|
34
|
-
nextKey != 'isHtml' &&
|
|
35
|
-
nextKey != 'dataId'
|
|
36
|
-
) {
|
|
37
|
-
result[nextKey] = this.props[nextKey];
|
|
38
|
-
}
|
|
39
|
-
return result;
|
|
40
|
-
}, {});
|
|
41
|
-
//const child=this.getI18NValue();
|
|
42
|
-
if (this.props.dataId) {
|
|
43
|
-
props['data-id'] = this.props.dataId;
|
|
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
|
-
|
|
1
|
+
import React, { Children } from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import { replaceI18NValuesWithRegex, unescapeUnicode } from '../utils';
|
|
4
|
+
import { HTMLPurifier } from '@zoho/SecurityJS';
|
|
5
|
+
import { I18NContext } from '../I18NContext';
|
|
6
|
+
|
|
7
|
+
export default class I18N extends React.Component {
|
|
8
|
+
constructor(props) {
|
|
9
|
+
super(props);
|
|
10
|
+
this.getI18NValue = this.getI18NValue.bind(this);
|
|
11
|
+
this.createElement = this.createElement.bind(this);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
getI18NValue() {
|
|
15
|
+
const { i18NKey: key, values } = this.props;
|
|
16
|
+
const { i18n } = this.context || {};
|
|
17
|
+
if (typeof i18n === 'undefined') {
|
|
18
|
+
return key;
|
|
19
|
+
}
|
|
20
|
+
let i18nStr = i18n[key];
|
|
21
|
+
if (i18nStr === undefined) {
|
|
22
|
+
return key;
|
|
23
|
+
}
|
|
24
|
+
i18nStr = replaceI18NValuesWithRegex(i18nStr, values);
|
|
25
|
+
return unescapeUnicode(i18nStr);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
createElement() {
|
|
29
|
+
const props = Object.keys(this.props).reduce((result, nextKey) => {
|
|
30
|
+
if (
|
|
31
|
+
nextKey != 'i18NKey' &&
|
|
32
|
+
nextKey != 'tag' &&
|
|
33
|
+
nextKey != 'values' &&
|
|
34
|
+
nextKey != 'isHtml' &&
|
|
35
|
+
nextKey != 'dataId'
|
|
36
|
+
) {
|
|
37
|
+
result[nextKey] = this.props[nextKey];
|
|
38
|
+
}
|
|
39
|
+
return result;
|
|
40
|
+
}, {});
|
|
41
|
+
//const child=this.getI18NValue();
|
|
42
|
+
if (this.props.dataId) {
|
|
43
|
+
props['data-id'] = this.props.dataId;
|
|
44
|
+
props['data-test-id'] = this.props.dataId;
|
|
45
|
+
}
|
|
46
|
+
if (this.props.isHtml) {
|
|
47
|
+
let dangerouslySetInnerHTML = {
|
|
48
|
+
__html: HTMLPurifier.sanitize(this.getI18NValue())
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
return React.createElement(
|
|
52
|
+
this.props.tag,
|
|
53
|
+
Object.assign(props, { dangerouslySetInnerHTML })
|
|
54
|
+
);
|
|
55
|
+
}
|
|
56
|
+
return React.createElement(this.props.tag, props, this.getI18NValue());
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
render() {
|
|
60
|
+
return this.createElement();
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
I18N.propTypes = {
|
|
64
|
+
i18NKey: PropTypes.string.isRequired,
|
|
65
|
+
isHtml: PropTypes.bool,
|
|
66
|
+
tag: PropTypes.string,
|
|
67
|
+
values: PropTypes.oneOfType([PropTypes.string, PropTypes.array])
|
|
68
|
+
};
|
|
69
|
+
I18N.defaultProps = {
|
|
70
|
+
tag: 'span',
|
|
71
|
+
isHtml: false
|
|
72
|
+
};
|
|
73
|
+
I18N.contextType = I18NContext;
|
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
import { getI18NValue, userDateFormat } from '../utils';
|
|
4
|
-
import { I18NContext } from '../I18NContext';
|
|
5
|
-
|
|
6
|
-
const emptyObj = {};
|
|
7
|
-
const dummy = (key, values) => key;
|
|
8
|
-
|
|
9
|
-
export const i18NProviderUtils = {
|
|
10
|
-
getI18NValue: dummy,
|
|
11
|
-
userDateFormat: dummy,
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
export default class I18NProvider extends React.Component {
|
|
15
|
-
constructor(props, context) {
|
|
16
|
-
super(props, context);
|
|
17
|
-
i18NProviderUtils.getI18NValue = getI18NValue(props.i18n);
|
|
18
|
-
if(props.tzData){
|
|
19
|
-
i18NProviderUtils.userDateFormat = userDateFormat(
|
|
20
|
-
i18NProviderUtils.getI18NValue,
|
|
21
|
-
props.tzData,
|
|
22
|
-
props.timeFormat,
|
|
23
|
-
props.datePattern,
|
|
24
|
-
props.isEnabledCurrentYear
|
|
25
|
-
);
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
componentDidUpdate(next) {
|
|
30
|
-
let {
|
|
31
|
-
i18n,
|
|
32
|
-
timeZone,
|
|
33
|
-
datePattern,
|
|
34
|
-
timeFormat,
|
|
35
|
-
direction,
|
|
36
|
-
onChange,
|
|
37
|
-
tzData,
|
|
38
|
-
} = this.props;
|
|
39
|
-
if (
|
|
40
|
-
i18n !== next.i18n ||
|
|
41
|
-
timeZone !== next.timeZone ||
|
|
42
|
-
datePattern !== next.datePattern ||
|
|
43
|
-
timeFormat !== next.timeFormat ||
|
|
44
|
-
direction !== next.direction ||
|
|
45
|
-
tzData !== next.tzData
|
|
46
|
-
) {
|
|
47
|
-
this.promise = new Promise((res, rej) => {
|
|
48
|
-
this.resolve = res;
|
|
49
|
-
this.reject = rej;
|
|
50
|
-
}).then(
|
|
51
|
-
() => {
|
|
52
|
-
i18NProviderUtils.getI18NValue = getI18NValue(nextProps.i18n);
|
|
53
|
-
if(props.tzData){
|
|
54
|
-
i18NProviderUtils.userDateFormat = userDateFormat(
|
|
55
|
-
i18NProviderUtils.getI18NValue,
|
|
56
|
-
props.tzData,
|
|
57
|
-
props.timeFormat,
|
|
58
|
-
props.datePattern,
|
|
59
|
-
this.props.isEnabledCurrentYear
|
|
60
|
-
);
|
|
61
|
-
}
|
|
62
|
-
this.promise = null;
|
|
63
|
-
},
|
|
64
|
-
() => {
|
|
65
|
-
this.promise = null;
|
|
66
|
-
}
|
|
67
|
-
);
|
|
68
|
-
onChange && onChange(this.resolve, this.reject);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
render() {
|
|
73
|
-
return (
|
|
74
|
-
<I18NContext.Provider
|
|
75
|
-
value={{
|
|
76
|
-
i18n: this.props.i18n,
|
|
77
|
-
direction: this.props.direction,
|
|
78
|
-
timeZone: this.props.timeZone,
|
|
79
|
-
datePattern: this.props.datePattern,
|
|
80
|
-
timeFormat: this.props.timeFormat,
|
|
81
|
-
isEnabledCurrentYear: this.props.isEnabledCurrentYear,
|
|
82
|
-
tzData: this.props.tzData,
|
|
83
|
-
}}
|
|
84
|
-
>
|
|
85
|
-
{this.props.children}
|
|
86
|
-
</I18NContext.Provider>
|
|
87
|
-
);
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
I18NProvider.defaultProps = {
|
|
92
|
-
i18n: emptyObj,
|
|
93
|
-
timeZone: '',
|
|
94
|
-
datePattern: '',
|
|
95
|
-
timeFormat: '',
|
|
96
|
-
isEnabledCurrentYear: '',
|
|
97
|
-
direction: 'ltr',
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
I18NProvider.propTypes = {
|
|
101
|
-
children: PropTypes.element.isRequired,
|
|
102
|
-
datePattern: PropTypes.string,
|
|
103
|
-
isEnabledCurrentYear: PropTypes.string,
|
|
104
|
-
direction: PropTypes.string,
|
|
105
|
-
i18n: PropTypes.oneOfType([PropTypes.object, PropTypes.func]),
|
|
106
|
-
onChange: PropTypes.func,
|
|
107
|
-
timeFormat: PropTypes.string,
|
|
108
|
-
timeZone: PropTypes.string,
|
|
109
|
-
tzData: PropTypes.object,
|
|
110
|
-
};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import { getI18NValue, userDateFormat } from '../utils';
|
|
4
|
+
import { I18NContext } from '../I18NContext';
|
|
5
|
+
|
|
6
|
+
const emptyObj = {};
|
|
7
|
+
const dummy = (key, values) => key;
|
|
8
|
+
|
|
9
|
+
export const i18NProviderUtils = {
|
|
10
|
+
getI18NValue: dummy,
|
|
11
|
+
userDateFormat: dummy,
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export default class I18NProvider extends React.Component {
|
|
15
|
+
constructor(props, context) {
|
|
16
|
+
super(props, context);
|
|
17
|
+
i18NProviderUtils.getI18NValue = getI18NValue(props.i18n);
|
|
18
|
+
if(props.tzData){
|
|
19
|
+
i18NProviderUtils.userDateFormat = userDateFormat(
|
|
20
|
+
i18NProviderUtils.getI18NValue,
|
|
21
|
+
props.tzData,
|
|
22
|
+
props.timeFormat,
|
|
23
|
+
props.datePattern,
|
|
24
|
+
props.isEnabledCurrentYear
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
componentDidUpdate(next) {
|
|
30
|
+
let {
|
|
31
|
+
i18n,
|
|
32
|
+
timeZone,
|
|
33
|
+
datePattern,
|
|
34
|
+
timeFormat,
|
|
35
|
+
direction,
|
|
36
|
+
onChange,
|
|
37
|
+
tzData,
|
|
38
|
+
} = this.props;
|
|
39
|
+
if (
|
|
40
|
+
i18n !== next.i18n ||
|
|
41
|
+
timeZone !== next.timeZone ||
|
|
42
|
+
datePattern !== next.datePattern ||
|
|
43
|
+
timeFormat !== next.timeFormat ||
|
|
44
|
+
direction !== next.direction ||
|
|
45
|
+
tzData !== next.tzData
|
|
46
|
+
) {
|
|
47
|
+
this.promise = new Promise((res, rej) => {
|
|
48
|
+
this.resolve = res;
|
|
49
|
+
this.reject = rej;
|
|
50
|
+
}).then(
|
|
51
|
+
() => {
|
|
52
|
+
i18NProviderUtils.getI18NValue = getI18NValue(nextProps.i18n);
|
|
53
|
+
if(props.tzData){
|
|
54
|
+
i18NProviderUtils.userDateFormat = userDateFormat(
|
|
55
|
+
i18NProviderUtils.getI18NValue,
|
|
56
|
+
props.tzData,
|
|
57
|
+
props.timeFormat,
|
|
58
|
+
props.datePattern,
|
|
59
|
+
this.props.isEnabledCurrentYear
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
this.promise = null;
|
|
63
|
+
},
|
|
64
|
+
() => {
|
|
65
|
+
this.promise = null;
|
|
66
|
+
}
|
|
67
|
+
);
|
|
68
|
+
onChange && onChange(this.resolve, this.reject);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
render() {
|
|
73
|
+
return (
|
|
74
|
+
<I18NContext.Provider
|
|
75
|
+
value={{
|
|
76
|
+
i18n: this.props.i18n,
|
|
77
|
+
direction: this.props.direction,
|
|
78
|
+
timeZone: this.props.timeZone,
|
|
79
|
+
datePattern: this.props.datePattern,
|
|
80
|
+
timeFormat: this.props.timeFormat,
|
|
81
|
+
isEnabledCurrentYear: this.props.isEnabledCurrentYear,
|
|
82
|
+
tzData: this.props.tzData,
|
|
83
|
+
}}
|
|
84
|
+
>
|
|
85
|
+
{this.props.children}
|
|
86
|
+
</I18NContext.Provider>
|
|
87
|
+
);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
I18NProvider.defaultProps = {
|
|
92
|
+
i18n: emptyObj,
|
|
93
|
+
timeZone: '',
|
|
94
|
+
datePattern: '',
|
|
95
|
+
timeFormat: '',
|
|
96
|
+
isEnabledCurrentYear: '',
|
|
97
|
+
direction: 'ltr',
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
I18NProvider.propTypes = {
|
|
101
|
+
children: PropTypes.element.isRequired,
|
|
102
|
+
datePattern: PropTypes.string,
|
|
103
|
+
isEnabledCurrentYear: PropTypes.string,
|
|
104
|
+
direction: PropTypes.string,
|
|
105
|
+
i18n: PropTypes.oneOfType([PropTypes.object, PropTypes.func]),
|
|
106
|
+
onChange: PropTypes.func,
|
|
107
|
+
timeFormat: PropTypes.string,
|
|
108
|
+
timeZone: PropTypes.string,
|
|
109
|
+
tzData: PropTypes.object,
|
|
110
|
+
};
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
import FormatText from './FormatText';
|
|
4
|
-
|
|
5
|
-
export default class PluralFormat extends React.Component {
|
|
6
|
-
render() {
|
|
7
|
-
const { one, many, zero, value } = this.props;
|
|
8
|
-
let key = '',
|
|
9
|
-
values = '';
|
|
10
|
-
if (value > 1) {
|
|
11
|
-
key = many;
|
|
12
|
-
} else if (value == 1) {
|
|
13
|
-
key = one;
|
|
14
|
-
} else if (value == 0) {
|
|
15
|
-
key = zero;
|
|
16
|
-
}
|
|
17
|
-
values = `${value}`;
|
|
18
|
-
|
|
19
|
-
return (
|
|
20
|
-
<FormatText
|
|
21
|
-
{...this.props}
|
|
22
|
-
i18NKey={key}
|
|
23
|
-
values={values}
|
|
24
|
-
one={null}
|
|
25
|
-
many={null}
|
|
26
|
-
zero={null}
|
|
27
|
-
/>
|
|
28
|
-
);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
PluralFormat.propTypes = {
|
|
32
|
-
many: PropTypes.string,
|
|
33
|
-
one: PropTypes.string,
|
|
34
|
-
tag: PropTypes.string,
|
|
35
|
-
value: PropTypes.number,
|
|
36
|
-
zero: PropTypes.string
|
|
37
|
-
};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import FormatText from './FormatText';
|
|
4
|
+
|
|
5
|
+
export default class PluralFormat extends React.Component {
|
|
6
|
+
render() {
|
|
7
|
+
const { one, many, zero, value } = this.props;
|
|
8
|
+
let key = '',
|
|
9
|
+
values = '';
|
|
10
|
+
if (value > 1) {
|
|
11
|
+
key = many;
|
|
12
|
+
} else if (value == 1) {
|
|
13
|
+
key = one;
|
|
14
|
+
} else if (value == 0) {
|
|
15
|
+
key = zero;
|
|
16
|
+
}
|
|
17
|
+
values = `${value}`;
|
|
18
|
+
|
|
19
|
+
return (
|
|
20
|
+
<FormatText
|
|
21
|
+
{...this.props}
|
|
22
|
+
i18NKey={key}
|
|
23
|
+
values={values}
|
|
24
|
+
one={null}
|
|
25
|
+
many={null}
|
|
26
|
+
zero={null}
|
|
27
|
+
/>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
PluralFormat.propTypes = {
|
|
32
|
+
many: PropTypes.string,
|
|
33
|
+
one: PropTypes.string,
|
|
34
|
+
tag: PropTypes.string,
|
|
35
|
+
value: PropTypes.number,
|
|
36
|
+
zero: PropTypes.string
|
|
37
|
+
};
|