-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
177 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import React, { useState } from "react" | ||
import { | ||
Alert, | ||
TextInput, | ||
View, | ||
Text, | ||
TouchableWithoutFeedback as TWF, | ||
StyleSheet | ||
} from "react-native" | ||
import Icon from 'react-native-vector-icons/FontAwesome' | ||
|
||
export default props => { | ||
const [comment, setComment] = useState('') | ||
const [editMode, setEditMode] = useState(false) | ||
|
||
const handleAddComment = () => { | ||
Alert.alert('Adicionado!', comment) | ||
} | ||
|
||
let commentArea = null | ||
if (editMode) { | ||
commentArea = ( | ||
<View style={styles.container}> | ||
<TextInput placeholder="Pode comentar..." | ||
style={styles.input} autoFocus={true} | ||
value={comment} onChangeText={setComment} | ||
onSubmitEditing={handleAddComment} /> | ||
<TWF onPress={() => setEditMode(false)}> | ||
<Icon name='times' size={15} color='#555' /> | ||
</TWF> | ||
</View> | ||
) | ||
} else { | ||
commentArea = ( | ||
<TWF onPress={() => setEditMode(true)}> | ||
<View style={styles.container}> | ||
<Icon name='comment-o' size={25} color='#555' /> | ||
<Text style={styles.caption}>Adicione um comentário...</Text> | ||
</View> | ||
</TWF> | ||
) | ||
} | ||
|
||
return ( | ||
<View style={{ flex: 1 }}> | ||
{commentArea} | ||
</View> | ||
) | ||
} | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
flex: 1, | ||
flexDirection: 'row', | ||
alignItems: 'center', | ||
margin: 10 | ||
}, | ||
caption: { | ||
marginLeft: 10, | ||
fontSize: 12, | ||
color: '#CCC' | ||
}, | ||
input: { | ||
width: '90%' | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import React from 'react' | ||
import { View, Image, StyleSheet, Dimensions } from 'react-native' | ||
import AddComment from './AddComment' | ||
import Author from './Author' | ||
import Comments from './Comments' | ||
|
||
|
@@ -8,6 +9,7 @@ export default props => | |
<Image source={props.image} style={styles.image}/> | ||
<Author email='[email protected]' nickname='Wagner' /> | ||
<Comments comments={props.comments} /> | ||
<AddComment /> | ||
</View> | ||
|
||
const styles = StyleSheet.create({ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2008,6 +2008,15 @@ cliui@^6.0.0: | |
strip-ansi "^6.0.0" | ||
wrap-ansi "^6.2.0" | ||
|
||
cliui@^7.0.2: | ||
version "7.0.4" | ||
resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" | ||
integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== | ||
dependencies: | ||
string-width "^4.2.0" | ||
strip-ansi "^6.0.0" | ||
wrap-ansi "^7.0.0" | ||
|
||
clone-deep@^4.0.1: | ||
version "4.0.1" | ||
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" | ||
|
@@ -2962,7 +2971,7 @@ gensync@^1.0.0-beta.2: | |
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" | ||
integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== | ||
|
||
get-caller-file@^2.0.1: | ||
get-caller-file@^2.0.1, get-caller-file@^2.0.5: | ||
version "2.0.5" | ||
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" | ||
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== | ||
|
@@ -4208,11 +4217,56 @@ locate-path@^5.0.0: | |
dependencies: | ||
p-locate "^4.1.0" | ||
|
||
lodash._reinterpolate@^3.0.0: | ||
version "3.0.0" | ||
resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" | ||
integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= | ||
|
||
lodash.debounce@^4.0.8: | ||
version "4.0.8" | ||
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" | ||
integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= | ||
|
||
lodash.frompairs@^4.0.1: | ||
version "4.0.1" | ||
resolved "https://registry.yarnpkg.com/lodash.frompairs/-/lodash.frompairs-4.0.1.tgz#bc4e5207fa2757c136e573614e9664506b2b1bd2" | ||
integrity sha1-vE5SB/onV8E25XNhTpZkUGsrG9I= | ||
|
||
lodash.isequal@^4.5.0: | ||
version "4.5.0" | ||
resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" | ||
integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= | ||
|
||
lodash.isstring@^4.0.1: | ||
version "4.0.1" | ||
resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" | ||
integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= | ||
|
||
lodash.omit@^4.5.0: | ||
version "4.5.0" | ||
resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-4.5.0.tgz#6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60" | ||
integrity sha1-brGa5aHuHdnfC5aeZs4Lf6MLXmA= | ||
|
||
lodash.pick@^4.4.0: | ||
version "4.4.0" | ||
resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" | ||
integrity sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM= | ||
|
||
lodash.template@^4.5.0: | ||
version "4.5.0" | ||
resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" | ||
integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== | ||
dependencies: | ||
lodash._reinterpolate "^3.0.0" | ||
lodash.templatesettings "^4.0.0" | ||
|
||
lodash.templatesettings@^4.0.0: | ||
version "4.2.0" | ||
resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" | ||
integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== | ||
dependencies: | ||
lodash._reinterpolate "^3.0.0" | ||
|
||
lodash.throttle@^4.1.1: | ||
version "4.1.1" | ||
resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" | ||
|
@@ -5243,6 +5297,20 @@ react-native-gravatar@^1.0.2: | |
dependencies: | ||
gravatar-api "^1.5.0" | ||
|
||
react-native-vector-icons@^9.0.0: | ||
version "9.0.0" | ||
resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-9.0.0.tgz#ab38ec6941f3f340d39846f1e8300e59863e2fb1" | ||
integrity sha512-qKX5d5/TafHmI4B7UOSZCL3BAGh7ZfF30iLwRgxBkKfZl2lKSuHp8Ottj9OyWh9b5fFtlg+LtyvZrns3g2kh+w== | ||
dependencies: | ||
lodash.frompairs "^4.0.1" | ||
lodash.isequal "^4.5.0" | ||
lodash.isstring "^4.0.1" | ||
lodash.omit "^4.5.0" | ||
lodash.pick "^4.4.0" | ||
lodash.template "^4.5.0" | ||
prop-types "^15.7.2" | ||
yargs "^16.1.1" | ||
|
||
[email protected]: | ||
version "0.66.4" | ||
resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.66.4.tgz#bf89a5fb18bd23046d889fb4de4ea2822a4d7805" | ||
|
@@ -6501,6 +6569,15 @@ wrap-ansi@^6.2.0: | |
string-width "^4.1.0" | ||
strip-ansi "^6.0.0" | ||
|
||
wrap-ansi@^7.0.0: | ||
version "7.0.0" | ||
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" | ||
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== | ||
dependencies: | ||
ansi-styles "^4.0.0" | ||
string-width "^4.1.0" | ||
strip-ansi "^6.0.0" | ||
|
||
wrappy@1: | ||
version "1.0.2" | ||
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" | ||
|
@@ -6592,6 +6669,11 @@ y18n@^4.0.0: | |
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" | ||
integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== | ||
|
||
y18n@^5.0.5: | ||
version "5.0.8" | ||
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" | ||
integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== | ||
|
||
yallist@^4.0.0: | ||
version "4.0.0" | ||
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" | ||
|
@@ -6605,6 +6687,11 @@ yargs-parser@^18.1.2: | |
camelcase "^5.0.0" | ||
decamelize "^1.2.0" | ||
|
||
yargs-parser@^20.2.2: | ||
version "20.2.9" | ||
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" | ||
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== | ||
|
||
yargs@^15.1.0, yargs@^15.3.1, yargs@^15.4.1: | ||
version "15.4.1" | ||
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" | ||
|
@@ -6621,3 +6708,16 @@ yargs@^15.1.0, yargs@^15.3.1, yargs@^15.4.1: | |
which-module "^2.0.0" | ||
y18n "^4.0.0" | ||
yargs-parser "^18.1.2" | ||
|
||
yargs@^16.1.1: | ||
version "16.2.0" | ||
resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" | ||
integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== | ||
dependencies: | ||
cliui "^7.0.2" | ||
escalade "^3.1.1" | ||
get-caller-file "^2.0.5" | ||
require-directory "^2.1.1" | ||
string-width "^4.2.0" | ||
y18n "^5.0.5" | ||
yargs-parser "^20.2.2" |