@quintype/native-components 2.19.8 → 2.19.9
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/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/src/components/ActionText/ActionText.js +7 -9
- package/src/components/ActionText/ActionText.test.js +5 -12
- package/src/components/AuthorRow/AuthorRow.test.js +4 -9
- package/src/components/AuthorRow/index.js +23 -21
- package/src/components/Button/index.js +13 -9
- package/src/components/CustomSwitch/index.js +1 -2
- package/src/components/Header/index.js +13 -9
- package/src/components/RadioButton/index.js +24 -9
- package/src/components/ShareButton/index.js +18 -14
- package/src/constants/component-constants/content-constants/constants.js +7 -5
- package/src/constants/component-constants/general-constants/constants.js +22 -17
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.19.9](https://github.com/quintype/native-components/compare/v2.19.8...v2.19.9) (2022-01-13)
|
|
6
|
+
|
|
5
7
|
### [2.19.8](https://github.com/quintype/native-components/compare/v2.19.7...v2.19.8) (2022-01-10)
|
|
6
8
|
|
|
7
9
|
### [2.19.7](https://github.com/quintype/native-components/compare/v2.19.0...v2.19.7) (2022-01-07)
|
package/package.json
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
|
-
import { throttle } from
|
|
2
|
-
import PropTypes from
|
|
3
|
-
import React from
|
|
4
|
-
import { TouchableOpacity } from
|
|
1
|
+
import { throttle } from "lodash";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { TouchableOpacity } from "react-native";
|
|
5
|
+
import { COMP_GENERAL_CONSTANTS } from "../../constants/component-constants/general-constants/constants";
|
|
5
6
|
|
|
6
|
-
export const ActionText = ({
|
|
7
|
-
onPress, endPoint, children, actionTextID, disablePress,
|
|
8
|
-
}) => {
|
|
7
|
+
export const ActionText = ({ onPress, endPoint, children, disablePress }) => {
|
|
9
8
|
const handleTagPress = () => onPress(endPoint);
|
|
10
9
|
const throttledOnpress = throttle(handleTagPress, 1000);
|
|
11
10
|
|
|
12
11
|
return (
|
|
13
12
|
<TouchableOpacity
|
|
14
13
|
onPress={throttledOnpress}
|
|
15
|
-
testID={
|
|
14
|
+
testID={COMP_GENERAL_CONSTANTS.actionTextTouch}
|
|
16
15
|
disabled={disablePress}
|
|
17
16
|
>
|
|
18
17
|
{children}
|
|
@@ -25,5 +24,4 @@ ActionText.propTypes = {
|
|
|
25
24
|
endPoint: PropTypes.object,
|
|
26
25
|
disablePress: PropTypes.bool,
|
|
27
26
|
children: PropTypes.any,
|
|
28
|
-
actionTextID: PropTypes.string,
|
|
29
27
|
};
|
|
@@ -4,22 +4,19 @@ import 'react-native';
|
|
|
4
4
|
import { mockContext } from '../../utils';
|
|
5
5
|
import { Text } from '../Text';
|
|
6
6
|
import { ActionText } from './ActionText';
|
|
7
|
+
import { COMP_GENERAL_CONSTANTS } from '../../constants/component-constants';
|
|
7
8
|
|
|
8
9
|
describe('Test Action Text :', () => {
|
|
9
10
|
test('should render properly :', () => {
|
|
10
11
|
const throttle = jest.fn();
|
|
11
12
|
const { getByTestId } = render(
|
|
12
13
|
mockContext(
|
|
13
|
-
<ActionText
|
|
14
|
-
onPress={throttle}
|
|
15
|
-
endPoint={{ slug: '/sample-data' }}
|
|
16
|
-
actionTextID="actionText"
|
|
17
|
-
>
|
|
14
|
+
<ActionText onPress={throttle} endPoint={{ slug: '/sample-data' }}>
|
|
18
15
|
<Text testID="sampleText">Sample Data</Text>
|
|
19
16
|
</ActionText>,
|
|
20
17
|
),
|
|
21
18
|
);
|
|
22
|
-
const element = getByTestId(
|
|
19
|
+
const element = getByTestId(COMP_GENERAL_CONSTANTS.actionTextTouch);
|
|
23
20
|
expect(element.props.children).toBeDefined();
|
|
24
21
|
});
|
|
25
22
|
|
|
@@ -27,17 +24,13 @@ describe('Test Action Text :', () => {
|
|
|
27
24
|
const throttle = await jest.fn();
|
|
28
25
|
const { getByTestId } = render(
|
|
29
26
|
mockContext(
|
|
30
|
-
<ActionText
|
|
31
|
-
onPress={throttle}
|
|
32
|
-
endPoint={{ slug: '/sample-data' }}
|
|
33
|
-
actionTextID="actionText"
|
|
34
|
-
>
|
|
27
|
+
<ActionText onPress={throttle} endPoint={{ slug: '/sample-data' }}>
|
|
35
28
|
<Text testID="sampleText">Sample Data</Text>
|
|
36
29
|
</ActionText>,
|
|
37
30
|
),
|
|
38
31
|
);
|
|
39
32
|
|
|
40
|
-
const element = getByTestId(
|
|
33
|
+
const element = getByTestId(COMP_GENERAL_CONSTANTS.actionTextTouch);
|
|
41
34
|
fireEvent(element, 'press');
|
|
42
35
|
expect(throttle).toHaveBeenCalled();
|
|
43
36
|
});
|
|
@@ -3,6 +3,7 @@ import React from 'react';
|
|
|
3
3
|
import 'react-native';
|
|
4
4
|
import { mockContext } from '../../utils';
|
|
5
5
|
import { AuthorRow } from './index';
|
|
6
|
+
import { COMP_CONTENT_CONSTANTS } from '../../constants/component-constants';
|
|
6
7
|
|
|
7
8
|
const data = [
|
|
8
9
|
{
|
|
@@ -26,15 +27,9 @@ const data = [
|
|
|
26
27
|
describe('Test Author Row :', () => {
|
|
27
28
|
test('should render Author name properly', () => {
|
|
28
29
|
const { getByTestId } = render(
|
|
29
|
-
mockContext(
|
|
30
|
-
<AuthorRow
|
|
31
|
-
authors={data}
|
|
32
|
-
authorNameTestID="authorName"
|
|
33
|
-
cdn="gumlet.assettype.com"
|
|
34
|
-
/>,
|
|
35
|
-
),
|
|
30
|
+
mockContext(<AuthorRow authors={data} cdn="gumlet.assettype.com" />),
|
|
36
31
|
);
|
|
37
|
-
const element = getByTestId(
|
|
32
|
+
const element = getByTestId(COMP_CONTENT_CONSTANTS.authorName);
|
|
38
33
|
expect(element.props.children).toBe('Raghavendra Vaidya');
|
|
39
34
|
});
|
|
40
35
|
|
|
@@ -49,7 +44,7 @@ describe('Test Author Row :', () => {
|
|
|
49
44
|
/>,
|
|
50
45
|
),
|
|
51
46
|
);
|
|
52
|
-
const element = getByTestId(
|
|
47
|
+
const element = getByTestId(COMP_CONTENT_CONSTANTS.authorImage);
|
|
53
48
|
expect(element.props.children).toBeDefined();
|
|
54
49
|
});
|
|
55
50
|
});
|
|
@@ -1,26 +1,24 @@
|
|
|
1
|
-
import PropTypes from
|
|
2
|
-
import React, { useContext } from
|
|
3
|
-
import { View } from
|
|
4
|
-
import Icon from
|
|
5
|
-
import { ResponsiveImage, Text } from
|
|
6
|
-
import { ActionText } from
|
|
1
|
+
import PropTypes from "prop-types";
|
|
2
|
+
import React, { useContext } from "react";
|
|
3
|
+
import { View } from "react-native";
|
|
4
|
+
import Icon from "react-native-vector-icons/FontAwesome";
|
|
5
|
+
import { ResponsiveImage, Text } from "../index";
|
|
6
|
+
import { ActionText } from "../ActionText/ActionText";
|
|
7
7
|
|
|
8
|
-
import { authorRowStyleSheet } from
|
|
9
|
-
import { AppTheme } from
|
|
8
|
+
import { authorRowStyleSheet } from "./styles";
|
|
9
|
+
import { AppTheme } from "../../utils";
|
|
10
|
+
import { COMP_CONTENT_CONSTANTS } from "../../constants/component-constants/content-constants/constants";
|
|
10
11
|
|
|
11
12
|
export const AuthorRow = ({
|
|
12
13
|
authors,
|
|
13
14
|
onPress,
|
|
14
15
|
cdn,
|
|
15
|
-
authorImageTestID,
|
|
16
|
-
actionTextID,
|
|
17
16
|
authorFallBackTestID,
|
|
18
|
-
authorNameTestID,
|
|
19
17
|
readtime,
|
|
20
18
|
disablePress,
|
|
21
19
|
}) => {
|
|
22
20
|
const { theme } = useContext(AppTheme);
|
|
23
|
-
const { COLORS
|
|
21
|
+
const { COLORS, translate } = theme;
|
|
24
22
|
const styles = authorRowStyleSheet(theme);
|
|
25
23
|
|
|
26
24
|
return (
|
|
@@ -31,11 +29,14 @@ export const AuthorRow = ({
|
|
|
31
29
|
}
|
|
32
30
|
return (
|
|
33
31
|
<View style={styles.container} key={author.id}>
|
|
34
|
-
<View
|
|
35
|
-
{
|
|
32
|
+
<View
|
|
33
|
+
style={styles.imageBlock}
|
|
34
|
+
testID={COMP_CONTENT_CONSTANTS.authorImage}
|
|
35
|
+
>
|
|
36
|
+
{author?.["avatar-s3-key"] ? (
|
|
36
37
|
<ResponsiveImage
|
|
37
38
|
source={{
|
|
38
|
-
uri: `${cdn}/${author?.[
|
|
39
|
+
uri: `${cdn}/${author?.["avatar-s3-key"]}`,
|
|
39
40
|
}}
|
|
40
41
|
style={styles.avatarImage}
|
|
41
42
|
imageWidth={50}
|
|
@@ -55,11 +56,13 @@ export const AuthorRow = ({
|
|
|
55
56
|
<ActionText
|
|
56
57
|
onPress={onPress}
|
|
57
58
|
endPoint={author}
|
|
58
|
-
testID={actionTextID}
|
|
59
59
|
disablePress={disablePress}
|
|
60
60
|
>
|
|
61
61
|
<View style={styles.descriptionBlock}>
|
|
62
|
-
<Text
|
|
62
|
+
<Text
|
|
63
|
+
style={styles.authorStyle}
|
|
64
|
+
testID={COMP_CONTENT_CONSTANTS.authorName}
|
|
65
|
+
>
|
|
63
66
|
{author.name}
|
|
64
67
|
</Text>
|
|
65
68
|
</View>
|
|
@@ -69,7 +72,9 @@ export const AuthorRow = ({
|
|
|
69
72
|
})}
|
|
70
73
|
{readtime ? (
|
|
71
74
|
<View style={styles.readtimeComponent}>
|
|
72
|
-
<Text style={styles.readtime}>{`| ${readtime} ${translate(
|
|
75
|
+
<Text style={styles.readtime}>{`| ${readtime} ${translate(
|
|
76
|
+
"min read"
|
|
77
|
+
)}`}</Text>
|
|
73
78
|
</View>
|
|
74
79
|
) : null}
|
|
75
80
|
</View>
|
|
@@ -82,8 +87,5 @@ AuthorRow.propTypes = {
|
|
|
82
87
|
cdn: PropTypes.string.isRequired,
|
|
83
88
|
disablePress: PropTypes.bool,
|
|
84
89
|
authorFallBackTestID: PropTypes.string,
|
|
85
|
-
authorImageTestID: PropTypes.string,
|
|
86
|
-
authorNameTestID: PropTypes.string,
|
|
87
|
-
actionTextID: PropTypes.string,
|
|
88
90
|
readtime: PropTypes.number,
|
|
89
91
|
};
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import PropTypes from
|
|
2
|
-
import React, { useContext } from
|
|
1
|
+
import PropTypes from "prop-types";
|
|
2
|
+
import React, { useContext } from "react";
|
|
3
3
|
import {
|
|
4
|
-
StyleSheet,
|
|
4
|
+
StyleSheet,
|
|
5
|
+
TouchableOpacity,
|
|
5
6
|
View,
|
|
6
|
-
|
|
7
7
|
ViewPropTypes,
|
|
8
|
-
} from
|
|
9
|
-
import { AppTheme } from
|
|
10
|
-
import { Text } from
|
|
11
|
-
import { styles } from
|
|
8
|
+
} from "react-native";
|
|
9
|
+
import { AppTheme } from "../../utils";
|
|
10
|
+
import { Text } from "../Text";
|
|
11
|
+
import { styles } from "./styles";
|
|
12
|
+
import { COMP_GENERAL_CONSTANTS } from "../../constants/component-constants/general-constants/constants";
|
|
12
13
|
|
|
13
14
|
export const Button = (props) => {
|
|
14
15
|
const { icon, text, onPress } = props;
|
|
@@ -21,7 +22,10 @@ export const Button = (props) => {
|
|
|
21
22
|
|
|
22
23
|
return (
|
|
23
24
|
<View>
|
|
24
|
-
<TouchableOpacity
|
|
25
|
+
<TouchableOpacity
|
|
26
|
+
onPress={onPress}
|
|
27
|
+
testID={COMP_GENERAL_CONSTANTS.buttonTouch}
|
|
28
|
+
>
|
|
25
29
|
<View style={btnStyle}>
|
|
26
30
|
<Text style={textStyle}>{text}</Text>
|
|
27
31
|
{icon}
|
|
@@ -23,7 +23,7 @@ export const CustomSwitch = ({
|
|
|
23
23
|
};
|
|
24
24
|
|
|
25
25
|
return (
|
|
26
|
-
<View style={styles.container}>
|
|
26
|
+
<View style={styles.container} testID={COMP_GENERAL_CONSTANTS.customSwitch}>
|
|
27
27
|
<View style={styles.textContainer}>
|
|
28
28
|
{!iconName ? null : (
|
|
29
29
|
<View style={styles.iconStyle}>
|
|
@@ -40,7 +40,6 @@ export const CustomSwitch = ({
|
|
|
40
40
|
onValueChange={handleToggle}
|
|
41
41
|
value={isEnabled}
|
|
42
42
|
disabled={isSwitchDisabled}
|
|
43
|
-
testID={COMP_GENERAL_CONSTANTS.customSwitch}
|
|
44
43
|
/>
|
|
45
44
|
</View>
|
|
46
45
|
);
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import PropTypes from
|
|
2
|
-
import React, { useContext } from
|
|
1
|
+
import PropTypes from "prop-types";
|
|
2
|
+
import React, { useContext } from "react";
|
|
3
3
|
import {
|
|
4
4
|
StyleSheet,
|
|
5
5
|
TouchableOpacity,
|
|
6
6
|
View,
|
|
7
7
|
ViewPropTypes,
|
|
8
|
-
} from
|
|
8
|
+
} from "react-native";
|
|
9
9
|
|
|
10
|
-
import { headerStyles } from
|
|
11
|
-
import { AppTheme } from
|
|
10
|
+
import { headerStyles } from "./styles";
|
|
11
|
+
import { AppTheme } from "../../utils";
|
|
12
|
+
import { COMP_GENERAL_CONSTANTS } from "../../constants/component-constants";
|
|
12
13
|
|
|
13
14
|
export const Header = (props) => {
|
|
14
15
|
const { theme } = useContext(AppTheme);
|
|
@@ -19,11 +20,15 @@ export const Header = (props) => {
|
|
|
19
20
|
props.logoComponentStyle,
|
|
20
21
|
]);
|
|
21
22
|
return (
|
|
22
|
-
<View
|
|
23
|
+
<View style={headerStyle}>
|
|
23
24
|
<View>
|
|
24
25
|
{props.leftComponent && props.leftComponent}
|
|
25
26
|
{props.logoComponent && (
|
|
26
|
-
<TouchableOpacity
|
|
27
|
+
<TouchableOpacity
|
|
28
|
+
style={logoComponentStyle}
|
|
29
|
+
onPress={props.onPress}
|
|
30
|
+
testID={COMP_GENERAL_CONSTANTS.headerLogoTouch}
|
|
31
|
+
>
|
|
27
32
|
{props.logoComponent}
|
|
28
33
|
</TouchableOpacity>
|
|
29
34
|
)}
|
|
@@ -34,7 +39,7 @@ export const Header = (props) => {
|
|
|
34
39
|
};
|
|
35
40
|
|
|
36
41
|
Header.defaultProps = {
|
|
37
|
-
onPress: () => {
|
|
42
|
+
onPress: () => {},
|
|
38
43
|
};
|
|
39
44
|
|
|
40
45
|
Header.propTypes = {
|
|
@@ -43,7 +48,6 @@ Header.propTypes = {
|
|
|
43
48
|
logoComponent: PropTypes.element,
|
|
44
49
|
style: ViewPropTypes.style,
|
|
45
50
|
logoComponentStyle: PropTypes.object,
|
|
46
|
-
testID: PropTypes.string,
|
|
47
51
|
onPress: PropTypes.func,
|
|
48
52
|
noBorder: PropTypes.bool,
|
|
49
53
|
};
|
|
@@ -1,22 +1,37 @@
|
|
|
1
|
-
import React, { useContext } from
|
|
1
|
+
import React, { useContext } from "react";
|
|
2
2
|
import {
|
|
3
|
-
StyleSheet,
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
StyleSheet,
|
|
4
|
+
View,
|
|
5
|
+
TouchableOpacity,
|
|
6
|
+
ViewPropTypes,
|
|
7
|
+
} from "react-native";
|
|
8
|
+
import PropTypes from "prop-types";
|
|
9
|
+
import { radioButtonStyles } from "./styles";
|
|
10
|
+
import { AppTheme } from "../../utils";
|
|
11
|
+
|
|
12
|
+
import { COMP_GENERAL_CONSTANTS } from "../../constants/component-constants";
|
|
8
13
|
|
|
9
14
|
export const RadioButton = ({
|
|
10
|
-
onPress,
|
|
15
|
+
onPress,
|
|
16
|
+
isChecked,
|
|
17
|
+
circleStyle,
|
|
18
|
+
checkedCircleStyle,
|
|
11
19
|
}) => {
|
|
12
20
|
const { theme } = useContext(AppTheme);
|
|
13
21
|
const styles = radioButtonStyles(theme);
|
|
14
22
|
const circleBorderStyle = StyleSheet.flatten([styles.circle, circleStyle]);
|
|
15
|
-
const checkedStyle = StyleSheet.flatten([
|
|
23
|
+
const checkedStyle = StyleSheet.flatten([
|
|
24
|
+
styles.checkedCircle,
|
|
25
|
+
checkedCircleStyle,
|
|
26
|
+
]);
|
|
16
27
|
|
|
17
28
|
return (
|
|
18
29
|
<View>
|
|
19
|
-
<TouchableOpacity
|
|
30
|
+
<TouchableOpacity
|
|
31
|
+
style={circleBorderStyle}
|
|
32
|
+
onPress={onPress}
|
|
33
|
+
testID={COMP_GENERAL_CONSTANTS.radioButtonTouch}
|
|
34
|
+
>
|
|
20
35
|
{isChecked && <View style={checkedStyle} />}
|
|
21
36
|
</TouchableOpacity>
|
|
22
37
|
</View>
|
|
@@ -1,27 +1,28 @@
|
|
|
1
|
-
import React, { useContext, memo } from
|
|
2
|
-
import { TouchableOpacity } from
|
|
3
|
-
import PropTypes from
|
|
4
|
-
import Icon from
|
|
5
|
-
import Share from
|
|
6
|
-
import { AppTheme } from
|
|
7
|
-
import { shareButtonStyles } from
|
|
8
|
-
import { getStoryHeadline } from
|
|
1
|
+
import React, { useContext, memo } from "react";
|
|
2
|
+
import { TouchableOpacity } from "react-native";
|
|
3
|
+
import PropTypes from "prop-types";
|
|
4
|
+
import Icon from "react-native-vector-icons/Ionicons";
|
|
5
|
+
import Share from "react-native-share";
|
|
6
|
+
import { AppTheme } from "../../utils";
|
|
7
|
+
import { shareButtonStyles } from "./styles";
|
|
8
|
+
import { getStoryHeadline } from "../../utils/story";
|
|
9
|
+
import { COMP_GENERAL_CONSTANTS } from "../../constants/component-constants";
|
|
9
10
|
|
|
10
11
|
const ShareButtonBase = (props) => {
|
|
11
12
|
const { theme } = useContext(AppTheme);
|
|
12
13
|
const styles = shareButtonStyles(theme);
|
|
13
|
-
const { story, type =
|
|
14
|
+
const { story, type = "story", slug } = props;
|
|
14
15
|
|
|
15
16
|
const getShareURL = () => {
|
|
16
17
|
const { url } = story || {};
|
|
17
18
|
switch (type) {
|
|
18
|
-
case
|
|
19
|
+
case "story":
|
|
19
20
|
return url;
|
|
20
|
-
case
|
|
21
|
+
case "card":
|
|
21
22
|
return `${url}${slug}`;
|
|
22
|
-
case
|
|
23
|
+
case "image":
|
|
23
24
|
return `${url}${slug}`;
|
|
24
|
-
case
|
|
25
|
+
case "attachment":
|
|
25
26
|
return slug;
|
|
26
27
|
default:
|
|
27
28
|
return url || slug;
|
|
@@ -43,7 +44,10 @@ const ShareButtonBase = (props) => {
|
|
|
43
44
|
}
|
|
44
45
|
|
|
45
46
|
return (
|
|
46
|
-
<TouchableOpacity
|
|
47
|
+
<TouchableOpacity
|
|
48
|
+
onPress={share}
|
|
49
|
+
testID={COMP_GENERAL_CONSTANTS.shareButtonTouch}
|
|
50
|
+
>
|
|
47
51
|
<Icon style={styles.iconStyle} name="share-social-outline" size={20} />
|
|
48
52
|
</TouchableOpacity>
|
|
49
53
|
);
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export const COMP_CONTENT_CONSTANTS = {
|
|
2
|
-
storyTitle:
|
|
3
|
-
storySubTitle:
|
|
4
|
-
sectionName:
|
|
5
|
-
publishedDate:
|
|
6
|
-
relatedStoriesLabel:
|
|
2
|
+
storyTitle: "COMP_STORY_TITLE",
|
|
3
|
+
storySubTitle: "COMP_STORY_SUBTITLE",
|
|
4
|
+
sectionName: "COMP_STORY_SECTION_NAME",
|
|
5
|
+
publishedDate: "COMP_STORY_PUBLISHED_DATE",
|
|
6
|
+
relatedStoriesLabel: "COMP_STORY_RELATEDSTORIES_LABEL",
|
|
7
|
+
authorName: "COMP_STORY_AUTHOR_NAME",
|
|
8
|
+
authorImage: "COMP_STORY_AUTHOR_IMAGE",
|
|
7
9
|
};
|
|
@@ -1,19 +1,24 @@
|
|
|
1
1
|
export const COMP_GENERAL_CONSTANTS = {
|
|
2
|
-
secondaryStoryCard:
|
|
3
|
-
primaryStoryCard:
|
|
4
|
-
secondaryStoryAuthor:
|
|
5
|
-
secondaryStoryPubishedAt:
|
|
6
|
-
primaryStoryAuthor:
|
|
7
|
-
primaryStoryPubishedAt:
|
|
8
|
-
secondaryStoryHeadline:
|
|
9
|
-
primaryStoryHeadline:
|
|
10
|
-
iconTextTouch:
|
|
11
|
-
iconTextLabel:
|
|
12
|
-
collectionTitleTouch:
|
|
13
|
-
collectionTitleText:
|
|
14
|
-
backNavigatorText:
|
|
15
|
-
backNavigatorTouch:
|
|
16
|
-
customSwitch:
|
|
17
|
-
primaryStoryReadTime:
|
|
18
|
-
secondaryStoryReadTime:
|
|
2
|
+
secondaryStoryCard: "COMP_GENERAL_SECONDARY_STORY",
|
|
3
|
+
primaryStoryCard: "COMP_GENERAL_PRIMARY_STORY",
|
|
4
|
+
secondaryStoryAuthor: "COMP_GENERAL_SECONDARY_STORY_AUTHOR",
|
|
5
|
+
secondaryStoryPubishedAt: "COMP_GENERAL_SECONDARY_STORY_PUBLISHEDATE",
|
|
6
|
+
primaryStoryAuthor: "COMP_GENERAL_PRIMARY_STORY_AUTHOR",
|
|
7
|
+
primaryStoryPubishedAt: "COMP_GENERAL_PRIMARY_STORY_PUBLISHEDATE",
|
|
8
|
+
secondaryStoryHeadline: "COMP_GENERAL_SECONDARY_STORY_HEADLINE",
|
|
9
|
+
primaryStoryHeadline: "COMP_GENERAL_PRIMARY_STORY_HEADLINE",
|
|
10
|
+
iconTextTouch: "COMP_GENERAL_ICON_TEXT_TOUCH",
|
|
11
|
+
iconTextLabel: "COMP_GENERAL_ICON_TEXT_LABEL",
|
|
12
|
+
collectionTitleTouch: "COMP_GENERAL_COLLECTION_TITLE",
|
|
13
|
+
collectionTitleText: "COMP_GENERAL_COLLECTION_TITLE_TEXT",
|
|
14
|
+
backNavigatorText: "COMP_GENERAL_BACK_NAVIGATOR_TEXT",
|
|
15
|
+
backNavigatorTouch: "COMP_GENERAL_BACK_NAVIGATOR_TOUCH",
|
|
16
|
+
customSwitch: "COMP_GENERAL_CUSTOM_SWITCH",
|
|
17
|
+
primaryStoryReadTime: "COMP_GENERAL_PRIMARY_STORY_READTIME",
|
|
18
|
+
secondaryStoryReadTime: "COMP_GENERAL_SECONDARY_STORY_READTIME",
|
|
19
|
+
actionTextTouch: "COMP_GENERAL_ACTION_TEXT_TOUCH",
|
|
20
|
+
buttonTouch: "COMP_GENERAL_BUTTON_TOUCH",
|
|
21
|
+
headerLogoTouch: "COMP_GENERAL_HEADER_LOGO_TOUCH",
|
|
22
|
+
radioButtonTouch: "COMP_GENERAL_RADIO",
|
|
23
|
+
shareButtonTouch: "COMP_GENERAL_SHARE",
|
|
19
24
|
};
|