Skip to content

Commit 20df106

Browse files
committed
Initial commit
0 parents  commit 20df106

8 files changed

+6326
-0
lines changed

.gitignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
project.xcworkspace
24+
25+
# Android/IntelliJ
26+
#
27+
build/
28+
.idea
29+
.gradle
30+
local.properties
31+
*.iml
32+
33+
# node.js
34+
#
35+
node_modules/
36+
npm-debug.log
37+
yarn-error.log
38+
39+
# BUCK
40+
buck-out/
41+
\.buckd/
42+
*.keystore
43+
44+
# fastlane
45+
#
46+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47+
# screenshots whenever they are needed.
48+
# For more information about the recommended setup visit:
49+
# https://docs.fastlane.tools/best-practices/source-control/
50+
51+
*/fastlane/report.xml
52+
*/fastlane/Preview.html
53+
*/fastlane/screenshots
54+
55+
# Bundle artifact
56+
*.jsbundle

babel.config.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = function (api) {
2+
api.cache(false);
3+
4+
const presets = ["module:metro-react-native-babel-preset"];
5+
6+
return {
7+
presets
8+
};
9+
}

package.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "react-native-fontawesome",
3+
"version": "0.0.1",
4+
"description": "Official React Native component for Font Awesome 5",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest"
8+
},
9+
"homepage": "https://github.com/FortAwesome/react-native-fontawesome",
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/FortAwesome/react-native-fontawesome.git"
13+
},
14+
"contributors": [
15+
"Travis Chase <[email protected]>",
16+
"Rob Madole <[email protected]>",
17+
"Mike Wilkerson <[email protected]>"
18+
],
19+
"license": "MIT",
20+
"peerDependencies": {
21+
"@fortawesome/fontawesome-svg-core": "^1.2.4",
22+
"react": "16.5.0",
23+
"react-native": "^0.57.1",
24+
"react-native-svg": "^7.0.3"
25+
},
26+
"devDependencies": {
27+
"@babel/core": "^7.1.2",
28+
"@babel/runtime": "^7.1.2",
29+
"@fortawesome/fontawesome-svg-core": "^1.2.4",
30+
"babel-core": "^7.0.0-bridge",
31+
"babel-jest": "^23.6.0",
32+
"jest": "^23.6.0",
33+
"metro-react-native-babel-preset": "^0.47.0",
34+
"react": "16.5.0",
35+
"react-native": "^0.57.1",
36+
"react-native-svg": "^7.0.3",
37+
"react-test-renderer": "^16.5.2"
38+
},
39+
"dependencies": {
40+
"prop-types": "^15.6.2"
41+
},
42+
"jest": {
43+
"preset": "react-native"
44+
}
45+
}

src/components/FontAwesomeIcon.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from 'react'
2+
import { Text, View } from 'react-native'
3+
4+
export default function FontAwesomeIcon(props) {
5+
return (
6+
<View>
7+
<Text>pure component Icon from JSX here</Text>
8+
</View>
9+
)
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import * as fontawesome from '@fortawesome/fontawesome-svg-core'
2+
import FontAwesomeIcon from '../FontAwesomeIcon'
3+
import React from 'react'
4+
import renderer from 'react-test-renderer'
5+
6+
const faCoffee = {
7+
prefix: 'fas',
8+
iconName: 'coffee',
9+
icon: [
10+
640,
11+
512,
12+
[],
13+
'f0f4',
14+
'M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z'
15+
]
16+
}
17+
18+
const faCircle = {
19+
prefix: 'fas',
20+
iconName: 'circle',
21+
icon: [
22+
640,
23+
512,
24+
[],
25+
'f0f4',
26+
'M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z'
27+
]
28+
}
29+
30+
fontawesome.library.add(faCoffee, faCircle)
31+
test('renders correctly', () => {
32+
const tree = renderer.create(<FontAwesomeIcon />).toJSON();
33+
expect(tree).toMatchSnapshot();
34+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Jest Snapshot v1, https://goo.gl/fbAQLP
2+
3+
exports[`renders correctly 1`] = `
4+
<View>
5+
<Text>
6+
pure component Icon from JSX here
7+
</Text>
8+
</View>
9+
`;

src/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as FontAwesomeIcon } from './components/FontAwesomeIcon'

0 commit comments

Comments
 (0)