What kind of change does this PR introduce? (check at least one)
- [ ] Bugfix
- [x] Feature
- [ ] Documentation
- [ ] Code style update
- [x] Refactor
- [x] Build-related changes
- [ ] Other, please describe:
Does this PR introduce a breaking change? (check one)
If yes, please describe the impact and migration path for existing applications:
Alterada coluna de avatar de varchar, para text para suportar possíveis nomes maiores, como hash gerada pelo TemporaryUrl().
Adicionado Profile na Seed de usuários.
The PR fulfills these requirements:
- [ ] When resolving a specific issue, it's referenced in the PR's title (e.g.
fix: #xxx[,#xxx]
, where "xxx" is the issue number)
- [x] The code proposed here was covered by testing.
- [ ] Any necessary documentation has been added or updated in the docs or explained in the PR's description.
If adding a new feature, the PR's description includes:
- [x] A convincing reason for adding this feature (to avoid wasting your time, it's best to open a suggestion issue first and wait for approval before working on it)
Other information:
Profile Screen
Adição de tela de profile, permitindo edição do avatar e links para editar interesses e conhecimentos.
Apesar da falta da skill "designer", foi criada uma tela baseada em telas, cores e estética visual pré existente, conforme imagem a seguir:
Profile Screen .env
Alterado FILESYSTEM_DRIVER
.env e .env_example para utilização no upload do avatar.
FILESYSTEM_DRIVER=public
Opção de edição nos componentes Interests e Knowledge Screen
Adicionado às rotas de interests e knowledge, um parâmetro opcional "edit", para diferenciar e agregar ao projeto, usado para validar carregamentos de dados nas telas que as utilizam.
Na imagem a seguir, mostro o uso do parâmetro no método mount do componente InterestScreen, onde da mesma forma, é usado no componente KnowledgeScreen.
Testes
Testes para o componente ProfileScreen contemplam:
- Tentativa de acesso sem autenticação;
- Acesso autenticado;
- Upload de avatar;
PASS Tests\Feature\ProfileScreenTest
✓ it checks if ProfileScreen required auth
✓ it checks if ProfileScreen Component was rendered with auth
✓ it checks if ProfileScreen Component was upload avatar
Tests: 3 passed
Tests: 3 passed
Time: 0.64s