Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit de05a9b

Browse files
Krzysztof Jan Modraspavel-cliqz
Krzysztof Jan Modras
authored andcommitted
Typescript support (#497)
* Typescript setup * Fixing linter errors * Fixing tests * fixing review comments
1 parent f3dca42 commit de05a9b

21 files changed

+1768
-432
lines changed

.eslintrc.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
root: true,
3+
extends: [
4+
'@react-native-community',
5+
'airbnb-typescript',
6+
'prettier',
7+
'prettier/@typescript-eslint',
8+
'prettier/react'
9+
],
10+
}

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": true,
3+
"singleQuote": true,
4+
"trailingComma": "all",
5+
"bracketSpacing": true,
6+
"arrowParens": "avoid"
7+
}

ReactNative/js/bridge-manager.js

+15-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { NativeEventEmitter } from 'react-native';
2+
import prefs from 'browser-core-user-agent-ios/build/modules/core/prefs';
23

34
export default class BridgeManager {
45
constructor(bridge, inject, appReady) {
@@ -7,7 +8,7 @@ export default class BridgeManager {
78
this.inject = inject;
89
this.isAppReady = false;
910
this.appReady = appReady;
10-
this._bridge = bridge;
11+
this.bridge = bridge;
1112
appReady.then(() => {
1213
this.isAppReady = true;
1314
});
@@ -17,15 +18,19 @@ export default class BridgeManager {
1718
}
1819

1920
async onAction({ module, action, args, id }) {
20-
for(const listener of this.actionListeners) {
21+
const handled = [...this.actionListeners].some(listener => {
2122
try {
22-
const handled = listener({ module, action, args, id });
23-
if (handled) {
24-
return;
23+
if (listener({ module, action, args, id })) {
24+
return true;
2525
}
2626
} catch (e) {
2727
//
2828
}
29+
return false;
30+
});
31+
32+
if (handled) {
33+
return;
2934
}
3035

3136
if (module === 'core' && action === 'setPref') {
@@ -34,26 +39,26 @@ export default class BridgeManager {
3439
}
3540

3641
if (!this.isAppReady) {
37-
await this.appReady
42+
await this.appReady;
3843
}
3944

4045
try {
4146
const response = await this.inject.module(module).action(action, ...args);
4247
if (typeof id !== 'undefined') {
43-
this._bridge.replyToAction(id, { result: response });
48+
this.bridge.replyToAction(id, { result: response });
4449
}
4550
} catch (e) {
4651
if (typeof id !== 'undefined') {
47-
this._bridge.replyToAction(id, { error: e });
52+
this.bridge.replyToAction(id, { error: e });
4853
}
4954
}
5055
}
5156

5257
addActionListener(listener) {
53-
this.actionListeners.add(listener)
58+
this.actionListeners.add(listener);
5459
}
5560

5661
removeActionListener(listener) {
5762
this.actionListeners.delete(listener);
5863
}
59-
}
64+
}

ReactNative/js/components/ListItem.js ReactNative/js/components/ListItem.jsx

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1+
/* eslint-disable react/prop-types */
12
import React from 'react';
2-
import {
3-
View,
4-
Text,
5-
TouchableWithoutFeedback,
6-
} from 'react-native';
3+
import { View, Text, TouchableWithoutFeedback } from 'react-native';
74
import { parse } from 'tldts';
85
import Logo from './Logo';
96
import { useStyles } from '../contexts/theme';
107

11-
const getStyle = (theme) => ({
8+
const getStyle = theme => ({
129
row: {
1310
flexDirection: 'row',
1411
},
@@ -33,7 +30,7 @@ const getStyle = (theme) => ({
3330
fontWeight: 'bold',
3431
},
3532
rowDescription: {
36-
color: theme.textColor + '99',
33+
color: `${theme.textColor}99`,
3734
},
3835
});
3936

@@ -42,6 +39,7 @@ export default function ListItem({ url, title, onPress, label }) {
4239

4340
const name = parse(url).domain;
4441

42+
/* eslint-disable prettier/prettier */
4543
return (
4644
<TouchableWithoutFeedback
4745
onPress={onPress}
@@ -63,4 +61,5 @@ export default function ListItem({ url, title, onPress, label }) {
6361
</View>
6462
</TouchableWithoutFeedback>
6563
);
66-
}
64+
/* eslint-enable prettier/prettier */
65+
}
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1+
/* eslint-disable react/prop-types */
12
import React from 'react';
23
import { Logo } from '@cliqz/component-ui-logo';
34
import getLogo from 'cliqz-logo-database';
45

56
const convertLogoUrl = logo => ({
67
...logo,
7-
url: (logo.url || '')
8-
.replace('logos', 'pngs')
9-
.replace('.svg', '_192.png'),
8+
url: (logo.url || '').replace('logos', 'pngs').replace('.svg', '_192.png'),
109
});
1110

1211
const DEFAULT_SIZE = 60;
1312
const DEFAULT_FONT_SIZE = 28;
1413

15-
export default function ({ url, size: _size, fontSize: _fontSize }) {
16-
let size = _size || DEFAULT_SIZE;
14+
export default ({ url, size: _size, fontSize: _fontSize }) => {
15+
const size = _size || DEFAULT_SIZE;
1716
let fontSize = _fontSize || DEFAULT_FONT_SIZE;
1817

1918
if (size !== DEFAULT_SIZE && !_fontSize) {
20-
fontSize = DEFAULT_FONT_SIZE / DEFAULT_SIZE * size;
19+
fontSize = (DEFAULT_FONT_SIZE / DEFAULT_SIZE) * size;
2120
}
2221
return (
2322
<Logo
@@ -29,4 +28,4 @@ export default function ({ url, size: _size, fontSize: _fontSize }) {
2928
fontSize={fontSize}
3029
/>
3130
);
32-
}
31+
};

ReactNative/js/components/SpeedDial.js ReactNative/js/components/SpeedDial.jsx

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1+
/* eslint-disable react/prop-types */
12
import React from 'react';
2-
import {
3-
StyleSheet,
4-
View,
5-
TouchableWithoutFeedback,
6-
Text,
7-
} from 'react-native';
3+
import { View, TouchableWithoutFeedback, Text } from 'react-native';
84
import { parse } from 'tldts';
9-
import NativeDrawable, { normalizeUrl } from 'browser-core-user-agent-ios/build/modules/mobile-cards/components/custom/NativeDrawable';
5+
import NativeDrawable, {
6+
normalizeUrl,
7+
} from 'browser-core-user-agent-ios/build/modules/mobile-cards/components/custom/NativeDrawable';
108
import Logo from './Logo';
119
import { withTheme } from '../contexts/theme';
1210

13-
const getStyles = (theme) => ({
11+
const getStyles = theme => ({
1412
container: {
1513
flex: 1,
1614
justifyContent: 'center',
@@ -46,9 +44,10 @@ const getStyles = (theme) => ({
4644
});
4745

4846
const SpeedDial = ({ speedDial, onPress, theme, style = {} }) => {
49-
const styles = getStyles(theme)
50-
const url = speedDial.url;
47+
const styles = getStyles(theme);
48+
const { url } = speedDial;
5149
const name = parse(url).domain;
50+
/* eslint-disable prettier/prettier */
5251
return (
5352
<TouchableWithoutFeedback
5453
onPress={() => onPress(speedDial)}
@@ -82,6 +81,7 @@ const SpeedDial = ({ speedDial, onPress, theme, style = {} }) => {
8281
</View>
8382
</TouchableWithoutFeedback>
8483
);
84+
/* eslint-enable prettier/prettier */
8585
};
8686

87-
export default withTheme(SpeedDial);
87+
export default withTheme(SpeedDial);

ReactNative/js/contexts/theme.js

+20-10
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,40 @@ const ThemeContext = React.createContext();
55

66
export function withTheme(Component) {
77
return function ThemeComponent(props) {
8+
/* eslint-disable react/jsx-props-no-spreading */
89
return (
10+
// eslint-disable-next-line react/jsx-filename-extension
911
<ThemeContext.Consumer>
10-
{(theme) => <Component {...props} theme={theme} />}
12+
{theme => <Component {...props} theme={theme} />}
1113
</ThemeContext.Consumer>
1214
);
1315
};
16+
/* eslint-enable react/jsx-props-no-spreading */
1417
}
1518

1619
// would be perfect to avoid a global value here
17-
let updateTheme = () => {}
18-
const onAction = ({ module, action, args, id }) => {
20+
let updateTheme = () => {};
21+
const onAction = ({ module, action, args /* , id */ }) => {
1922
if (module === 'BrowserCore' && action === 'changeTheme') {
2023
updateTheme(args[0]);
2124
return true;
2225
}
26+
return false;
2327
};
2428

25-
export const ThemeWrapperComponentProvider = (bridgeManager) => ({ initialProps }) => (props) => {
29+
export const ThemeWrapperComponentProvider = bridgeManager => ({
30+
initialProps,
31+
}) => props => {
2632
if (!initialProps.theme) {
2733
return props.children;
2834
}
2935

36+
// eslint-disable-next-line react-hooks/rules-of-hooks
3037
const [theme, setData] = useState(initialProps.theme, [initialProps.theme]);
3138
updateTheme = setData;
3239

40+
// eslint-disable-next-line react-hooks/rules-of-hooks
3341
useEffect(() => {
34-
3542
bridgeManager.addActionListener(onAction);
3643
return () => {
3744
// no need to unload - one listener per app is sufficient
@@ -43,12 +50,15 @@ export const ThemeWrapperComponentProvider = (bridgeManager) => ({ initialProps
4350
{props.children}
4451
</ThemeContext.Provider>
4552
);
46-
}
53+
};
4754

48-
export const useStyles = (getStyle) => {
55+
export const useStyles = getStyle => {
4956
const theme = useContext(ThemeContext);
50-
const styles = useMemo(() => StyleSheet.create(getStyle(theme)), [theme.mode]);
57+
const styles = useMemo(() => StyleSheet.create(getStyle(theme)), [
58+
getStyle,
59+
theme,
60+
]);
5161
return styles;
52-
}
62+
};
5363

54-
export default ThemeContext;
64+
export default ThemeContext;

ReactNative/js/globals/browser/networkStatus.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ NetInfo.addEventListener(state => {
1313
export default {
1414
async getLinkInfo() {
1515
return connectionType;
16-
}
17-
};
16+
},
17+
};
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// TODO: investigate who is using it
2-
global.navigator.userAgent = 'Cliqz';
2+
global.navigator.userAgent = 'Cliqz';

0 commit comments

Comments
 (0)