Phone verification #946
No reviewers
Labels
No labels
accessibility
app-parity
area: creator
area: daemon
area: design
area: devops
area: discovery
area: docs
area: installer
area: internal
area: livestream
area: performance
area: proposal
area: reposts
area: rewards
area: search
area: security
area: subscriptions
area: sync
area: ux
area: viewer
area: wallet
BEAMER
channel
comments
community PR
consider soon
core team
css
dependencies
electron
Epic
feature request
first-timers-only
good first issue
hacktoberfest
help wanted
hub-dependent
icebox
Invalid
level: 0
level: 1
level: 2
level: 3
level: 4
merge when green
needs: exploration
needs: grooming
needs: priority
needs: repro
needs: tech design
notifications
odysee
on hold
playlists
priority: blocker
priority: high
priority: low
priority: medium
protocol dependent
recsys
redesign
regression
resilience
sdk dependent
Tom's Wishlist
trending
type: bug
type: discussion
type: improvement
type: new feature
type: refactor
type: task
type: testing
unplanned
windows
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: LBRYCommunity/lbry-desktop#946
Loading…
Reference in a new issue
No description provided.
Delete branch "twilio"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
not quite ready for review yet, still ironing out some things
Is there a particular reason we use a single component to do two (seemingly) distinct duties, as opposed to
UserEmailNew
andUserPhoneNew
or equivalent?Does this have to be collected separately as opposed to letting them type a full number? If it is separate field, could it at least be an inline select next to the full number entry?
@ -0,0 +1,22 @@
import React from 'react';
import * as settings from 'constants/settings';
Is it correct to always bump the user to rewards from here?
@liamcardenas Also, I seem to no longer be prompted for my email immediately after the welcome popup.
this was in the spirit of DRY a la our coding maxims.
There is less of a case for userFieldNew to be used for two field types, but userFieldVerify is basically the same for both types. I made userFieldNew to be consistent with that.
I suppose it could be a select. Twilio wants a separate country code. I tried to make this as fool proof and intuitive as possible. I think the way it is makes a lot of sense (it was based on a discussion in tech-app), but I am completely open to changing it.
@ -0,0 +1,22 @@
import React from 'react';
import * as settings from 'constants/settings';
I believe so, since the only place you can access this is from the verify identity page.
@kauffj oh, for some reason, I thought we were taking that out. Should I add it back in?
@ -0,0 +1,22 @@
import React from 'react';
import * as settings from 'constants/settings';
👍
I don't see very much savings here aside from maybe some boilerplate in index.js, and it adds complexity to declaration and handling changes. I'd split these.
@liamcardenas yes, please make the country code a select displayed before the phone number entry.