-
-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CONTACTS #1618
CONTACTS #1618
Conversation
c986d83
to
33991ce
Compare
…r searching contacts
…ltiple addresses' if more than one address is available
0b8b74c
to
e5386e9
Compare
e5386e9
to
73bede2
Compare
f31ca0c
to
2131fc1
Compare
2131fc1
to
053fa07
Compare
cb0ac8b
to
3ed7e59
Compare
.github/PULL_REQUEST_TEMPLATE.md
Outdated
|
||
### Other: | ||
|
||
- [ ] Changes were made that require an update to the README | ||
- [ ] Changes were made that require an update to onboarding |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why'd this file get changed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe when I fixed some conflicts, I ran prettier so it is changed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please undo the change
nit: change |
is |
Maybe |
ios/zeus.xcodeproj/project.pbxproj
Outdated
@@ -2022,4 +2022,4 @@ | |||
/* End XCConfigurationList section */ | |||
}; | |||
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; | |||
} | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this file shouldn't change
"views.Settings.Contacts.searchBar2": "Search", | ||
"views.Settings.Contacts.favorites": "Favorites", | ||
"views.Settings.Contacts.contacts": "Contacts", | ||
"views.Settings.Contacts.noContacts": "No Contacts", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this file shouldn't remove the LSP strings
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahh. didn't see that, might have removed them by mistake
underlayColor="transparent" | ||
/> | ||
); | ||
const AddPhotos = () => ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: space before this line
views/Settings/Settings.tsx
Outdated
color: themeColor('text') | ||
}} | ||
> | ||
Contacts |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be a locale string
views/Settings/Contacts.tsx
Outdated
{localeString( | ||
'views.Settings.Contacts.favorites' | ||
).toUpperCase()}{' '} | ||
({favoriteContacts.length}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's format this with custom function string formatting
${localeString('views.Settings.Contacts.favorites').toUpperCase() (${favoriteContacts.length})
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Giving me syntax error on this one
views/Settings/Contacts.tsx
Outdated
{localeString( | ||
'views.Settings.Contacts.contacts' | ||
).toUpperCase()}{' '} | ||
({nonFavoriteContacts.length}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
console.error(localeString('views.Wallet.Wallet.error'), err) | ||
); | ||
handleDeepLink = (url: string, navigation: any) => { | ||
if (url.startsWith('nostr:')) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not add nostr:
handling to handleAnything
?
8d0a366
to
531ab1f
Compare
Let's add Nostr deeplinking functionality to NIP-05s too |
531ab1f
to
711bd31
Compare
views/ContactDetails.tsx
Outdated
@@ -333,6 +335,50 @@ export default class ContactDetails extends React.Component< | |||
)} | |||
</View> | |||
)} | |||
{contact.pubkey.length >= 1 && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
on all these checks we also need to see if contact.x
exists. otherwise, things will break if/when we add new fields to the contacts
dd7b0bb
to
f6c2f6a
Compare
tACK |
No description provided.