react-icons/fi#FiUser TypeScript Examples
The following examples show how to use
react-icons/fi#FiUser.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.tsx From react-pdv with MIT License | 6 votes |
MenuBar: React.FC = () => (
<s.MenuBarWrapper>
<s.MenuBarLogo>
<img src={LogoImg} alt="Logo" />
</s.MenuBarLogo>
<s.MenuBarGroup>
<s.MenuBarLink to="/" title="Home">
<s.MenuBarItem>
<FiMonitor size="1.6em" />
</s.MenuBarItem>
</s.MenuBarLink>
<s.MenuBarLink to="/product" title="Produtos">
<s.MenuBarItem>
<FiBox size="1.6em" />
</s.MenuBarItem>
</s.MenuBarLink>
<s.MenuBarItem title="Perfil">
<FiUser size="1.6em" />
</s.MenuBarItem>
<s.MenuBarItem title="Configuração">
<FiSliders size="1.6em" />
</s.MenuBarItem>
<s.MenuBarLink to="/about" title="Sobre">
<s.MenuBarItem>
<FiInfo size="1.6em" />
</s.MenuBarItem>
</s.MenuBarLink>
</s.MenuBarGroup>
</s.MenuBarWrapper>
)
Example #2
Source File: index.tsx From gobarber-web with MIT License | 5 votes |
SignUp: React.FC = () => {
const formRef = useRef<FormHandles>(null);
const { addToast } = useToast();
const history = useHistory();
const handleSubmit = useCallback(
async (data: SignUpFormData) => {
try {
formRef.current?.setErrors({});
const schema = Yup.object().shape({
name: Yup.string().required('Nome é obrigatório'),
email: Yup.string()
.required('E-mail é obrigatório')
.email('Digite um e-mail válido'),
password: Yup.string().min(6, 'No mínimo 6 dígitos'),
});
await schema.validate(data, { abortEarly: false });
await api.post('/users', data);
history.push('/');
addToast({
type: 'success',
title: 'Cadastro realizado!',
description: 'Você já pode fazer seu logon no GoBarber!',
});
} catch (err) {
if (err instanceof Yup.ValidationError) {
const errors = getValidationErrors(err);
formRef.current?.setErrors(errors);
return;
}
addToast({
type: 'error',
title: 'Erro na cadastro',
description: 'Ocorreu um error ao fazer cadastro, tente novamente.',
});
}
},
[addToast, history],
);
return (
<Container>
<Background />
<Content>
<AnimationContainer>
<img src={logoImg} alt="GoBarber" />
<Form ref={formRef} onSubmit={handleSubmit}>
<h1>Faça seu cadastro</h1>
<Input name="name" icon={FiUser} placeholder="Nome" />
<Input name="email" icon={FiMail} placeholder="E-mail" />
<Input
name="password"
icon={FiLock}
type="password"
placeholder="Senha"
/>
<Button type="submit">Cadastrar</Button>
</Form>
<Link to="/">
<FiArrowLeft />
Voltar para logon
</Link>
</AnimationContainer>
</Content>
</Container>
);
}
Example #3
Source File: index.tsx From GoBarber with MIT License | 5 votes |
SignUp: React.FC = () => {
const formRef = useRef<FormHandles>(null);
const { addToast } = useToast();
const history = useHistory();
const handleSubmit = useCallback(
async (data: SignUpFormData) => {
try {
formRef.current?.setErrors({});
const schema = Yup.object().shape({
name: Yup.string().required('Nome obrigatório'),
email: Yup.string()
.email('Digite email válido')
.required('Email obrigatório'),
password: Yup.string().min(6, 'Mínimo de 6 dígitos'),
});
await schema.validate(data, {
abortEarly: false,
});
await api.post('/users', data);
addToast({
type: 'success',
title: 'Cadastro realizado.',
description: 'Você já pode fazer o logon no GoBarber!',
});
history.push('/');
} catch (err) {
const errors = getValidationErrors(err);
formRef.current?.setErrors(errors);
addToast({
type: 'error',
title: 'Erro no cadastro',
description: 'Ocorreu um erro ao fazer cadastro, tente novamente.',
});
}
},
[addToast, history],
);
return (
<Container>
<Background />
<Content>
<AnimationContainer>
<img src={logoImg} alt="logo" />
<Form ref={formRef} onSubmit={handleSubmit}>
<h1>Faça seu cadastro</h1>
<Input name="name" icon={FiUser} type="text" placeholder="Nome" />
<Input
name="email"
icon={FiMail}
type="email"
placeholder="E-mail"
/>
<Input
name="password"
icon={FiLock}
type="password"
placeholder="Senha"
/>
<Button type="submit">Cadastrar</Button>
</Form>
<Link to="/">
<FiArrowLeft />
Voltar para Logon
</Link>
</AnimationContainer>
</Content>
</Container>
);
}
Example #4
Source File: index.tsx From dxvote with GNU Affero General Public License v3.0 | 4 votes |
Header = observer(() => {
const NavItem = withRouter(
({ route, history, children }: NavItemProps & RouteComponentProps) => {
return (
<div
style={{ cursor: 'pointer' }}
onClick={() => {
history.push(route);
}}
>
{' '}
{children}{' '}
</div>
);
}
);
const {
context: { providerStore, blockchainStore, configStore, daoStore },
} = useContext();
const { active, account } = providerStore.getActiveWeb3React();
const isTestingEnv = !window?.location?.href?.includes('dxvote.eth');
const networkName = configStore.getActiveChainName();
const { userRep, totalSupply } =
active && blockchainStore.initialLoadComplete
? daoStore.getRepAt(account, providerStore.getCurrentBlockNumber())
: { userRep: bnum(0), totalSupply: bnum(0) };
const repPercentage = active
? userRep.times(100).div(totalSupply).toFixed(4)
: bnum(0);
// const votingMachines = configStore.getNetworkContracts().votingMachines;
// const votingMachineTokens = _.uniq(
// Object.keys(votingMachines).map((votingMachineAddress, i) =>
// configStore
// .getTokensOfNetwork()
// .find(
// token => token.address === votingMachines[votingMachineAddress].token
// )
// )
// );
return (
<NavWrapper>
<NavSection>
<NavItem route={`/${networkName}/proposals`}>
<MenuItem>
<img alt="dxdao" src={dxdaoIcon} />
{isTestingEnv && <WarningDev>Testing Environment</WarningDev>}
</MenuItem>
</NavItem>
</NavSection>
{!active ? (
<NavSection>
<Web3ConnectStatus text="Connect Wallet" />
<NavItem route={`/config`}>
<a>
<FiSettings style={{ margin: '0px 10px', color: '#616161' }} />
</a>
</NavItem>
</NavSection>
) : blockchainStore.initialLoadComplete ? (
<NavSection>
{account && active && (
<>
{/* {useBalances(
account
? votingMachineTokens.map(votingMachineToken => ({
assetAddress: votingMachineToken.address,
fromAddress: account,
}))
: []
).map((votingMachineTokenBalance, i) => {
return (
<ItemBox key={i}>
{formatCurrency(
normalizeBalance(votingMachineTokenBalance)
)}{' '}
{votingMachineTokens[i].symbol}{' '}
</ItemBox>
);
})} */}
{repPercentage.toString() !== 'NaN' && (
<ItemBox> {repPercentage.toString()} % REP </ItemBox>
)}
</>
)}
<Web3ConnectStatus text="Connect Wallet" />
<NavItem route={`/${networkName}/info`}>
<a>
<FiBarChart2 style={{ margin: '0px 10px', color: '#616161' }} />
</a>
</NavItem>
<NavItem route={`/config`}>
<a>
<FiSettings style={{ margin: '0px 10px', color: '#616161' }} />
</a>
</NavItem>
{account && (
<NavItem route={`/${networkName}/user/${account}`}>
<a>
<FiUser style={{ margin: '0px 10px', color: '#616161' }} />
</a>
</NavItem>
)}
</NavSection>
) : (
<NavSection>
<Web3ConnectStatus text="Connect Wallet" />
<NavItem route={`/config`}>
<a>
<FiSettings style={{ margin: '0px 10px', color: '#616161' }} />
</a>
</NavItem>
</NavSection>
)}
</NavWrapper>
);
})
Example #5
Source File: index.tsx From gobarber-web with MIT License | 4 votes |
Profile: React.FC = () => {
const formRef = useRef<FormHandles>(null);
const { addToast } = useToast();
const history = useHistory();
const { user, updateUser } = useAuth();
const handleSubmit = useCallback(
async (data: ProfileFormData) => {
try {
formRef.current?.setErrors({});
const schema = Yup.object().shape({
name: Yup.string().required('Nome é obrigatório'),
email: Yup.string()
.required('E-mail é obrigatório')
.email('Digite um e-mail válido'),
old_password: Yup.string(),
password: Yup.string().when('old_password', {
is: val => !!val.length,
then: Yup.string()
.min(6, 'No mínimo 6 dígitos')
.required('Campo obrigatório'),
otherwise: Yup.string(),
}),
password_confirmation: Yup.string()
.when('old_password', {
is: val => !!val.length,
then: Yup.string().required('Campo obrigatório'),
otherwise: Yup.string(),
})
.oneOf([Yup.ref('password'), null], 'Confirmação incorreta'),
});
await schema.validate(data, { abortEarly: false });
const {
name,
email,
old_password,
password,
password_confirmation,
} = data;
const formData = {
name,
email,
...(old_password
? {
old_password,
password,
password_confirmation,
}
: {}),
};
const response = await api.put('/profile', formData);
updateUser(response.data);
history.push('/dashboard');
addToast({
type: 'success',
title: 'Perfil atualizado!',
description:
'Suas informações do perfil foram atualizadas com sucesso!',
});
} catch (err) {
if (err instanceof Yup.ValidationError) {
const errors = getValidationErrors(err);
formRef.current?.setErrors(errors);
return;
}
addToast({
type: 'error',
title: 'Erro na atualização',
description:
'Ocorreu um error ao atualizar o perfil, tente novamente.',
});
}
},
[addToast, history, updateUser],
);
const handleAvatarChange = useCallback(
(e: ChangeEvent<HTMLInputElement>) => {
if (e.target.files) {
const data = new FormData();
data.append('avatar', e.target.files[0]);
api.patch('/users/avatar', data).then(response => {
updateUser(response.data);
addToast({
type: 'success',
title: 'Avatar atualizado',
});
});
}
},
[addToast, updateUser],
);
return (
<Container>
<header>
<div>
<Link to="/dashboard">
<FiArrowLeft size={32} />
</Link>
</div>
</header>
<Content>
<Form
ref={formRef}
initialData={{ name: user.name, email: user.email }}
onSubmit={handleSubmit}
>
<AvatarInput>
<img
src={
user.avatar_url ||
'https://api.adorable.io/avatars/186/[email protected]'
}
alt={user.name}
/>
<label htmlFor="avatar">
<FiCamera size={20} />
<input
data-testid="input-file"
type="file"
id="avatar"
onChange={handleAvatarChange}
/>
</label>
</AvatarInput>
<h1>Meu Perfil</h1>
<Input name="name" icon={FiUser} placeholder="Nome" />
<Input name="email" icon={FiMail} placeholder="E-mail" />
<Input
containerStyle={{ marginTop: 24 }}
name="old_password"
icon={FiLock}
type="password"
placeholder="Senha atual"
/>
<Input
name="password"
icon={FiLock}
type="password"
placeholder="Nova senha"
/>
<Input
name="password_confirmation"
icon={FiLock}
type="password"
placeholder="Confirmar senha"
/>
<Button type="submit">Confirmar mudanças</Button>
</Form>
</Content>
</Container>
);
}
Example #6
Source File: index.tsx From space-traveling with MIT License | 4 votes |
export default function Home({
postsPagination,
preview,
}: HomeProps): ReactElement {
function getReadTime(item: Post): number {
const totalWords = item.data.content.reduce((total, contentItem) => {
total += contentItem.heading.split(' ').length;
const words = contentItem.body.map(i => i.text.split(' ').length);
words.map(word => (total += word));
return total;
}, 0);
return Math.ceil(totalWords / 200);
}
const formattedPost = postsPagination.results.map(post => {
const readTime = getReadTime(post);
return {
...post,
data: {
...post.data,
readTime,
},
first_publication_date: format(
new Date(post.first_publication_date),
'dd MMM yyyy',
{
locale: ptBR,
}
),
};
});
const [posts, setPosts] = useState<Post[]>(formattedPost);
const [nextPage, setNextPage] = useState(postsPagination.next_page);
const [currentPage, setCurrentPage] = useState(1);
async function handleNextPage(): Promise<void> {
if (currentPage !== 1 && nextPage === null) {
return;
}
const postsResults = await fetch(`${nextPage}`).then(response =>
response.json()
);
setNextPage(postsResults.next_page);
setCurrentPage(postsResults.page);
const newPosts = postsResults.results.map((post: Post) => {
const readTime = getReadTime(post);
return {
uid: post.uid,
first_publication_date: format(
new Date(post.first_publication_date),
'dd MMM yyyy',
{
locale: ptBR,
}
),
data: {
title: post.data.title,
subtitle: post.data.subtitle,
author: post.data.author,
readTime,
},
};
});
setPosts([...posts, ...newPosts]);
}
return (
<>
<Head>
<title>Home | spacetraveling</title>
</Head>
<main className={commonStyles.container}>
<Header />
<div className={styles.posts}>
{posts.map(post => (
<Link href={`/post/${post.uid}`} key={post.uid}>
<a className={styles.post}>
<strong>{post.data.title}</strong>
<p>{post.data.subtitle}</p>
<ul>
<li>
<FiCalendar />
{post.first_publication_date}
</li>
<li>
<FiUser />
{post.data.author}
</li>
<li>
<FiClock />
{`${post.data.readTime} min`}
</li>
</ul>
</a>
</Link>
))}
{nextPage && (
<button type="button" onClick={handleNextPage}>
Carregar mais posts
</button>
)}
</div>
{preview && (
<aside>
<Link href="/api/exit-preview">
<a className={commonStyles.preview}>Sair do modo Preview</a>
</Link>
</aside>
)}
</main>
</>
);
}
Example #7
Source File: [slug].tsx From space-traveling with MIT License | 4 votes |
export default function Post({
post,
navigation,
preview,
}: PostProps): JSX.Element {
const router = useRouter();
if (router.isFallback) {
return <h1>Carregando...</h1>;
}
const totalWords = post.data.content.reduce((total, contentItem) => {
total += contentItem.heading.split(' ').length;
const words = contentItem.body.map(item => item.text.split(' ').length);
words.map(word => (total += word));
return total;
}, 0);
const readTime = Math.ceil(totalWords / 200);
const formatedDate = format(
new Date(post.first_publication_date),
'dd MMM yyyy',
{
locale: ptBR,
}
);
const isPostEdited =
post.first_publication_date !== post.last_publication_date;
let editionDate;
if (isPostEdited) {
editionDate = format(
new Date(post.last_publication_date),
"'* editado em' dd MMM yyyy', às' H':'m",
{
locale: ptBR,
}
);
}
return (
<>
<Head>
<title>SpaceTraveling | {post.data.title}</title>
</Head>
<Header />
<img src={post.data.banner.url} alt="imagem" className={styles.banner} />
<main className={commonStyles.container}>
<div className={styles.post}>
<div className={styles.postTop}>
<h1>{post.data.title}</h1>
<ul>
<li>
<FiCalendar />
{formatedDate}
</li>
<li>
<FiUser />
{post.data.author}
</li>
<li>
<FiClock />
{`${readTime} min`}
</li>
</ul>
<span>{isPostEdited && editionDate}</span>
</div>
{post.data.content.map(content => {
return (
<article key={content.heading}>
<h2>{content.heading}</h2>
<div
className={styles.postContent}
dangerouslySetInnerHTML={{
__html: RichText.asHtml(content.body),
}}
/>
</article>
);
})}
</div>
<section className={`${styles.navigation} ${commonStyles.container}`}>
{navigation?.prevPost.length > 0 && (
<div>
<h3>{navigation.prevPost[0].data.title}</h3>
<Link href={`/post/${navigation.prevPost[0].uid}`}>
<a>Post anterior</a>
</Link>
</div>
)}
{navigation?.nextPost.length > 0 && (
<div>
<h3>{navigation.nextPost[0].data.title}</h3>
<Link href={`/post/${navigation.nextPost[0].uid}`}>
<a>Próximo post</a>
</Link>
</div>
)}
</section>
<Comments />
{preview && (
<aside>
<Link href="/api/exit-preview">
<a className={commonStyles.preview}>Sair do modo Preview</a>
</Link>
</aside>
)}
</main>
</>
);
}
Example #8
Source File: index.tsx From front-entenda-direito with GNU General Public License v3.0 | 4 votes |
Profile: React.FC = () => {
const formRef = useRef<FormHandles>(null);
const { addToast } = useToast();
const { user, updateUser } = useAuth();
const history = useHistory();
const handleSubmit = useCallback(
async (data: ProfileFormData) => {
try {
formRef.current?.setErrors({});
const schema = Yup.object().shape({
name: Yup.string().required('Nome obrigatório'),
email: Yup.string()
.required('E-mail obrigatório')
.email('Digite um e-mail valido'),
old_password: Yup.string(),
password: Yup.string().when('old_password', {
is: (val) => !!val.length,
then: Yup.string()
.min(6, 'No mínimo 06 dígitos')
.required('Campo obrigatório'),
otherwise: Yup.string(),
}),
password_confirmation: Yup.string()
.when('old_password', {
is: (val) => !!val.length,
then: Yup.string().required('Campo obrigatório'),
otherwise: Yup.string(),
})
.oneOf([Yup.ref('password'), null], 'Confirmação incorreta'),
});
await schema.validate(data, {
abortEarly: false,
});
const {
name,
email,
old_password,
password,
password_confirmation,
} = data;
const formData = {
name,
email,
...(old_password && {
old_password,
password,
password_confirmation,
}),
};
const response = await api.put('/profile', formData);
updateUser(response.data);
addToast({
type: 'success',
title: 'Perfil atualizado! ?',
description:
'Suas informações do perfil foram atualizadas com sucesso! ?',
});
history.push('/dashboard');
} catch (err) {
if (err instanceof Yup.ValidationError) {
const errors = getValidationErrors(err);
formRef.current?.setErrors(errors);
return;
}
addToast({
type: 'error',
title: 'Erro na atualização ?',
description:
'?️ Ocorreu um erro ao atualizar perfil, tente novamente. ?️',
});
}
},
[addToast, history, updateUser],
);
const handleAvatarChange = useCallback(
(event: ChangeEvent<HTMLInputElement>) => {
if (event.target.files) {
const data = new FormData();
data.append('avatar', event.target.files[0]);
api.patch('/users/avatar', data).then((response) => {
updateUser(response.data);
addToast({
type: 'success',
title: 'Avatar atualizado!',
});
});
}
},
[addToast, updateUser],
);
return (
<Container>
<header>
<div>
<Link to="/dashboard">
<FiArrowLeft />
</Link>
</div>
</header>
<Content>
<Form
ref={formRef}
initialData={{
name: user.name,
email: user.email,
}}
onSubmit={handleSubmit}
>
<AvatarInput>
<img src={user.avatar_url} alt={user.name} />
<label htmlFor="avatar">
<FiCamera />
<input type="file" id="avatar" onChange={handleAvatarChange} />
</label>
</AvatarInput>
<h1>Meu perfil</h1>
<Input name="name" icon={FiUser} placeholder="Nome" />
<Input name="email" icon={FiMail} placeholder="E-mail" />
<Input
containerStyle={{ marginTop: 24 }}
name="old_password"
icon={FiLock}
type="password"
placeholder="Senha atual"
/>
<Input
name="password"
icon={FiLock}
type="password"
placeholder="Nova senha"
/>
<Input
name="password_confirmation"
icon={FiLock}
type="password"
placeholder="Confirmar senha"
/>
<Button type="submit">Confirmar mudanças</Button>
</Form>
</Content>
</Container>
);
}
Example #9
Source File: index.tsx From front-entenda-direito with GNU General Public License v3.0 | 4 votes |
SignUp: React.FC = () => {
const formRef = useRef<FormHandles>(null);
const { addToast } = useToast();
const history = useHistory();
const handleSubmit = useCallback(
async (data: SignUpFormData) => {
try {
formRef.current?.setErrors({});
const schema = Yup.object().shape({
name: Yup.string().required('Nome obrigatório'),
email: Yup.string()
.required('E-mail obrigatório')
.email('Digite um e-mail válido'),
password: Yup.string().min(6, 'No mínimo 06 dígitos'),
});
await schema.validate(data, {
abortEarly: false,
});
await api.post('/users', data);
history.push('/');
addToast({
type: 'success',
title: 'Cadastro realizado! ?',
description: 'Você já pode fazer seu logon no Entenda Direito ⚖️!',
});
} catch (err) {
if (err instanceof Yup.ValidationError) {
const errors = getValidationErrors(err);
formRef.current?.setErrors(errors);
return;
}
addToast({
type: 'error',
title: 'Erro no cadastro ?',
description: 'Ocorreu um erro ao fazer cadastro, tente novamente.',
});
}
},
[addToast, history],
);
return (
<Container>
<Background />
<Content>
<AnimationContainer>
<img src={logoImg} alt="Entenda Direito" />
<h1>ENTENDA DIREITO</h1>
<Form ref={formRef} onSubmit={handleSubmit}>
<h1>Faça seu Cadastro</h1>
<Input name="name" icon={FiUser} placeholder="Nome" />
<Input name="email" icon={FiMail} placeholder="E-mail" />
<Input
name="password"
icon={FiLock}
type="password"
placeholder="Password"
/>
<Button type="submit">Cadastrar</Button>
</Form>
<Link to="/">
<FiArrowLeft />
Voltar para logon
</Link>
</AnimationContainer>
</Content>
</Container>
);
}
Example #10
Source File: index.tsx From gobarber-project with MIT License | 4 votes |
Profile: React.FC = () => {
const formRef = useRef<FormHandles>(null);
const { addToast } = useToast();
const history = useHistory();
const { user, updateUser } = useAuth();
const handleSubmit = useCallback(
async (data: IProfileData) => {
try {
formRef.current?.setErrors({});
const schema = Yup.object().shape({
name: Yup.string().required('Nome obrigatório'),
email: Yup.string()
.required('Email obrigatário')
.email('Digite um e-mail válido'),
old_password: Yup.string(),
password: Yup.string().when('old_password', {
is: val => !!val.length,
then: Yup.string().required('Campo obrigatório'),
otherwise: Yup.string(),
}),
password_confirmation: Yup.string()
.when('old_password', {
is: val => !!val.length,
then: Yup.string().required('Campo obrigatório'),
otherwise: Yup.string(),
})
.oneOf([Yup.ref('password')], 'Confirmação incorreta'),
});
await schema.validate(data, {
abortEarly: false,
});
const {
name,
email,
old_password,
password,
password_confirmation,
} = data;
const formData = {
name,
email,
...(old_password && {
old_password,
password,
password_confirmation,
}),
};
const response = await api.put('/profile', formData);
updateUser(response.data);
history.push('/dashboard');
addToast({
type: 'success',
title: 'Perfil atualizado!',
description:
'Suas informações do perfil foram atualizadas com sucesso!',
});
} catch (err) {
if (err instanceof Yup.ValidationError) {
const errors = getValidationErrors(err);
formRef.current?.setErrors(errors);
return;
}
addToast({
type: 'error',
title: 'Erro na atualização',
description: 'Ocorreu um erro ao atualizar perfil, tente novamente.',
});
}
},
[addToast, history, updateUser],
);
const handleAvatarChange = useCallback(
(e: ChangeEvent<HTMLInputElement>) => {
if (e.target.files) {
const data = new FormData();
data.append('avatar', e.target.files[0]);
api.patch('/users/avatar', data).then(response => {
updateUser(response.data);
addToast({
type: 'success',
title: 'Avatar atualizado',
});
});
}
},
[addToast, updateUser],
);
return (
<Container>
<header>
<div>
<Link to="/dashboard">
<FiArrowLeft />
</Link>
</div>
</header>
<Content>
<Form
ref={formRef}
onSubmit={handleSubmit}
initialData={{
name: user.name,
email: user.email,
}}
>
<AvatarInput>
{user.avatar_url ? (
<img src={user.avatar_url} alt={user.name} />
) : (
<img
src={`https://avatar.oxro.io/avatar?name=${user.name}`}
alt={user.name}
/>
)}
<label htmlFor="avatar">
<FiCamera />
<input type="file" id="avatar" onChange={handleAvatarChange} />
</label>
</AvatarInput>
<h1>Meu Perfil</h1>
<section>
<Input name="name" icon={FiUser} placeholder="Nome" />
<Input name="email" icon={FiMail} placeholder="E-mail" />
</section>
<section>
<Input
name="old_password"
icon={FiLock}
type="password"
placeholder="Senha atual"
/>
<Input
name="password"
icon={FiLock}
type="password"
placeholder="Nova senha"
/>
<Input
name="password_confirmation"
icon={FiLock}
type="password"
placeholder="Confirmar senha"
/>
</section>
<Button type="submit">Atualizar perfil</Button>
</Form>
</Content>
</Container>
);
}
Example #11
Source File: index.tsx From gobarber-project with MIT License | 4 votes |
SignUp: React.FC = () => {
const formRef = useRef<FormHandles>(null);
const { addToast } = useToast();
const history = useHistory();
const handleSubmit = useCallback(
async (data: SignUpFormData) => {
try {
formRef.current?.setErrors({});
const schema = Yup.object().shape({
name: Yup.string().required('Nome obrigatório'),
email: Yup.string()
.required('E-mail obrigatório')
.email('Digite um e-mail válido'),
password: Yup.string().min(6, 'No mínimo 6 dígitos'),
});
await schema.validate(data, {
abortEarly: false,
});
await api.post('/users', data);
history.push('/');
addToast({
type: 'success',
title: 'Cadastro realizado!',
description: 'Você já pode fazer seu logon no GoBarber!',
});
} catch (err) {
if (err instanceof Yup.ValidationError) {
const errors = getValidationErrors(err);
formRef.current?.setErrors(errors);
return;
}
addToast({
type: 'error',
title: 'Erro no cadastro',
description: 'Ocorreu um erro ao fazer cadastro, tente novamente.',
});
}
},
[addToast, history],
);
return (
<Container>
<Background />
<Content>
<AnimationContainer>
<img src={logoImg} alt="GoBarber" />
<Form ref={formRef} onSubmit={handleSubmit}>
<h1>Faça seu cadastro</h1>
<Input name="name" icon={FiUser} placeholder="Nome" />
<Input name="email" icon={FiMail} placeholder="E-mail" />
<Input
name="password"
icon={FiLock}
type="password"
placeholder="Senha"
/>
<Button type="submit">Cadastrar</Button>
</Form>
<Link to="/">
<FiArrowLeft />
Voltar para logon
</Link>
</AnimationContainer>
</Content>
</Container>
);
}
Example #12
Source File: index.tsx From GoBarber with MIT License | 4 votes |
Profile: React.FC = () => {
const formRef = useRef<FormHandles>(null);
const { addToast } = useToast();
const history = useHistory();
const { user, updateUser } = useAuth();
const handleSubmit = useCallback(
async (data: ProfileFormData) => {
try {
formRef.current?.setErrors({});
const schema = Yup.object().shape({
name: Yup.string().required('Nome obrigatório'),
email: Yup.string()
.email('Digite email válido')
.required('Email obrigatório'),
oldPassword: Yup.string(),
password: Yup.string().when('oldPassword', {
is: String,
then: Yup.string().min(6),
otherwise: Yup.string(),
}),
passwordConfirmation: Yup.string()
.when('oldPassword', {
is: String,
then: Yup.string().required('Campo obrigatório'),
otherwise: Yup.string(),
})
.oneOf([Yup.ref('password')], 'Senhas diferentes'),
});
await schema.validate(data, {
abortEarly: false,
});
const {
name,
email,
oldPassword,
password,
passwordConfirmation,
} = data;
const formData = {
name,
email,
...(oldPassword
? {
oldPassword,
password,
passwordConfirmation,
}
: {}),
};
console.log(formData);
const response = await api.put('/profile', formData);
updateUser(response.data);
history.push('/dashboard');
addToast({
type: 'success',
title: 'Perfil alterado',
description: 'Suas alterações foram salvas com sucesso',
});
history.push('/');
} catch (err) {
const errors = getValidationErrors(err);
formRef.current?.setErrors(errors);
addToast({
type: 'error',
title: 'Erro na atualização',
description: 'Ocorreu um erro ao atualizar o perfil',
});
}
},
[addToast, history, updateUser],
);
const handleAvatarChange = useCallback(
(event: ChangeEvent<HTMLInputElement>) => {
if (event.target.files) {
const data = new FormData();
data.append('avatar', event.target.files[0]);
api
.patch('/users/avatar', data)
.then((response) => {
updateUser(response.data);
addToast({
type: 'success',
title: 'Avatar atualizado',
});
})
.catch(() => {
addToast({
type: 'error',
title: 'Erro ao atualizar avatar',
});
});
}
},
[addToast, updateUser],
);
return (
<Container>
<Header>
<div>
<Link to="/dashboard">
<FiArrowLeft />
</Link>
</div>
</Header>
<Content>
<Form
initialData={{
name: user.name,
email: user.email,
}}
ref={formRef}
onSubmit={handleSubmit}
>
<AvatarInput>
<img src={user.avatar_url} alt={user.name} />
<label htmlFor="avatar">
<FiCamera />
<input type="file" id="avatar" onChange={handleAvatarChange} />
</label>
</AvatarInput>
<h1>Meu Perfil</h1>
<Input name="name" icon={FiUser} type="text" placeholder="Nome" />
<Input name="email" icon={FiMail} type="email" placeholder="E-mail" />
<Input
name="oldPassword"
icon={FiLock}
type="password"
placeholder="Senha atual"
/>
<Input
name="password"
icon={FiLock}
type="password"
placeholder="Nova senha"
/>
<Input
name="passwordConfirmation"
icon={FiLock}
type="password"
placeholder="Confirme a nova senha"
/>
<Button type="submit">Confirmar mudanças</Button>
</Form>
</Content>
</Container>
);
}
Example #13
Source File: Index.tsx From meshtastic-web with GNU General Public License v3.0 | 4 votes |
Settings = ({ open, setOpen }: SettingsProps): JSX.Element => {
const [modulesOpen, setModulesOpen] = useState(false);
const [channelsOpen, setChannelsOpen] = useState(false);
const moduleConfig = useAppSelector(
(state) => state.meshtastic.radio.moduleConfig,
);
const hasGps = true;
const hasWifi = true;
return (
<>
<SidebarOverlay
title="Settings"
open={open}
close={(): void => {
setOpen(false);
}}
direction="y"
>
<CollapsibleSection icon={<FiUser />} title="User">
<User />
</CollapsibleSection>
<CollapsibleSection icon={<FiSmartphone />} title="Device">
<WiFi />
</CollapsibleSection>
<CollapsibleSection icon={<FiMapPin />} title="Position">
<Position />
</CollapsibleSection>
<CollapsibleSection icon={<FiPower />} title="Power">
<Power />
</CollapsibleSection>
<CollapsibleSection icon={<FiWifi />} title="WiFi">
<WiFi />
</CollapsibleSection>
<CollapsibleSection icon={<FiTv />} title="Display">
<Display />
</CollapsibleSection>
<CollapsibleSection icon={<FiRss />} title="LoRa">
<LoRa />
</CollapsibleSection>
<ExternalSection
onClick={(): void => {
setChannelsOpen(true);
}}
icon={<FiLayers />}
title="Channels"
/>
<ExternalSection
onClick={(): void => {
setModulesOpen(true);
}}
icon={<FiPackage />}
title="Modules"
/>
<CollapsibleSection icon={<FiLayout />} title="Interface">
<Interface />
</CollapsibleSection>
</SidebarOverlay>
{/* Modules */}
<SidebarOverlay
title="Modules"
open={modulesOpen}
close={(): void => {
setModulesOpen(false);
}}
direction="x"
>
<CollapsibleSection
icon={<FiWifi />}
title="MQTT"
status={!moduleConfig.mqtt.disabled}
>
<MQTT />
</CollapsibleSection>
<CollapsibleSection
icon={<FiAlignLeft />}
title="Serial"
status={moduleConfig.serial.enabled}
>
<SerialSettingsPanel />
</CollapsibleSection>
<CollapsibleSection
icon={<FiBell />}
title="External Notifications"
status={moduleConfig.extNotification.enabled}
>
<ExternalNotificationsSettingsPlanel />
</CollapsibleSection>
<CollapsibleSection
icon={<FiFastForward />}
title="Store & Forward"
status={moduleConfig.storeForward.enabled}
>
<StoreForwardSettingsPanel />
</CollapsibleSection>
<CollapsibleSection
icon={<FiRss />}
title="Range Test"
status={moduleConfig.rangeTest.enabled}
>
<RangeTestSettingsPanel />
</CollapsibleSection>
<CollapsibleSection
icon={<FiActivity />}
title="Telemetry"
status={true}
>
<Telemetry />
</CollapsibleSection>
<CollapsibleSection
icon={<FiMessageSquare />}
title="Canned Message"
status={moduleConfig.cannedMessage.enabled}
>
<CannedMessage />
</CollapsibleSection>
</SidebarOverlay>
{/* End Modules */}
{/* Channels */}
<SidebarOverlay
title="Channels"
open={channelsOpen}
close={(): void => {
setChannelsOpen(false);
}}
direction="x"
>
<ChannelsGroup />
</SidebarOverlay>
{/* End Channels */}
</>
);
}
Example #14
Source File: NodeCard.tsx From meshtastic-web with GNU General Public License v3.0 | 4 votes |
NodeCard = ({
node,
isMyNode,
selected,
setSelected,
}: NodeCardProps): JSX.Element => {
const { map } = useMapbox();
const [infoOpen, setInfoOpen] = useState(false);
const [PositionConfidence, setPositionConfidence] =
useState<PositionConfidence>('none');
useEffect(() => {
setPositionConfidence(
node.position
? new Date(node.position.posTimestamp * 1000) >
new Date(new Date().getTime() - 1000 * 60 * 30)
? 'high'
: 'low'
: 'none',
);
}, [node.position]);
return (
<>
<SidebarItem
selected={selected}
setSelected={setSelected}
actions={
<>
<IconButton
nested
tooltip={PositionConfidence !== 'none' ? 'Fly to Node' : ''}
disabled={PositionConfidence === 'none'}
onClick={(e): void => {
e.stopPropagation();
setSelected();
if (PositionConfidence !== 'none' && node.position) {
map?.flyTo({
center: new LngLat(
node.position.longitudeI / 1e7,
node.position.latitudeI / 1e7,
),
zoom: 16,
});
}
}}
icon={
PositionConfidence === 'high' ? (
<MdGpsFixed />
) : PositionConfidence === 'low' ? (
<MdGpsNotFixed />
) : (
<MdGpsOff />
)
}
/>
<IconButton
nested
tooltip="Show Node Info"
onClick={(e): void => {
e.stopPropagation();
setInfoOpen(true);
}}
icon={<FiAlignLeft />}
/>
</>
}
>
<div className="flex dark:text-white">
<div className="relative m-auto">
{isMyNode && (
<Tooltip content="Your Node">
<m.div
whileHover={{ scale: 1.05 }}
className="absolute -right-1 -top-1 rounded-full bg-yellow-500 p-0.5"
>
<BiCrown className="h-3 w-3" />
</m.div>
</Tooltip>
)}
<Hashicon value={node.num.toString()} size={32} />
</div>
</div>
<div className="my-auto mr-auto text-xs font-semibold dark:text-gray-400">
{node.lastHeard
? new Date(node.lastHeard).toLocaleTimeString(undefined, {
hour: '2-digit',
minute: '2-digit',
})
: 'Never'}
</div>
</SidebarItem>
<SidebarOverlay
title={`Node ${node.user?.longName ?? 'UNK'} `}
open={infoOpen}
close={(): void => {
setInfoOpen(false);
}}
direction="x"
>
<CollapsibleSection title="User" icon={<FiUser />}>
<div className="flex p-2">
<div className="m-auto flex flex-col gap-2">
<Hashicon value={node.num.toString()} size={180} />
<div className="text-center text-lg font-medium dark:text-white">
{node?.user?.longName || 'Unknown'}
</div>
</div>
</div>
</CollapsibleSection>
<CollapsibleSection title="Location" icon={<FiMapPin />}>
<>
<div className="flex h-10 select-none justify-between rounded-md border border-gray-400 bg-transparent bg-gray-300 px-1 text-gray-500 dark:border-gray-600 dark:bg-secondaryDark dark:text-gray-400 ">
{node.position ? (
<>
<div className="my-auto px-1">
{(node.position.latitudeI / 1e7).toPrecision(6)}
,
{(node.position?.longitudeI / 1e7).toPrecision(6)}
</div>
<CopyButton
data={
node.position
? `${node.position.latitudeI / 1e7},${
node.position.longitudeI / 1e7
}`
: ''
}
/>
</>
) : (
<div className="my-auto px-1">No location data received</div>
)}
</div>
</>
</CollapsibleSection>
<CollapsibleSection title="Line of Sight" icon={<IoTelescope />}>
<div>Info</div>
</CollapsibleSection>
<CollapsibleSection title="Administration" icon={<FiSliders />}>
<div>Info</div>
</CollapsibleSection>
<CollapsibleSection title="Debug" icon={<FiCode />}>
<>
<div className="fixed right-0 mr-6">
<CopyButton data={JSON.stringify(node)} />
</div>
<JSONPretty className="max-w-sm" data={node} />
</>
</CollapsibleSection>
</SidebarOverlay>
</>
);
}