-
Notifications
You must be signed in to change notification settings - Fork 3
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
[refactor] Remover dependência da biblioteca "data_connection_checker" no ApiProvider #396
Merged
Conversation
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
shonorio
added
dependencies
Pull requests that update a dependency file
deprecation
Para destacar o uso de componentes obsoletos
refactor
Envolve melhorias no código, como substituir o componentes obsoletos
labels
Jan 14, 2025
shonorio
changed the title
[wip]
[refactor] Remover dependência da biblioteca "data_connection_checker" no ApiProvider
Jan 14, 2025
RoxyRoses
approved these changes
Jan 15, 2025
- Adicionado enum `ApiHttpRequestMethod` para representar os métodos HTTP de forma mais clara e segura. - Migrado o `.get` para o `_execute`
…ntação - Atualizados os testes para refletir a nova implementação do método `get`, que agora utiliza `send` em vez de `get` diretamente.
…te`, removendo duplicação de código
…cute`, removendo duplicação de código
shonorio
force-pushed
the
shonorio/issue394
branch
from
January 16, 2025 03:32
9293e57
to
85ca44b
Compare
Quality Gate passedIssues Measures |
Code Climate has analyzed commit 85ca44b and detected 1 issue on this pull request. Here's the issue category breakdown:
View more on Code Climate. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
Pull requests that update a dependency file
deprecation
Para destacar o uso de componentes obsoletos
refactor
Envolve melhorias no código, como substituir o componentes obsoletos
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Este PR introduz alterações significativas no cliente de API (
api_client.dart
), incluindo a adição de um novo enumApiHttpRequestMethod
para representar os métodos HTTP, refatoração do código para melhorar a organização e a legibilidade, e ajustes nos testes relacionados. As mudanças visam simplificar a lógica de requisições HTTP, melhorar a manutenção do código e garantir a consistência dos testes.Principais Alterações:
Adição do Enum
ApiHttpRequestMethod
:GET
,POST
,DELETE
,PUT
), melhorando a clareza e a segurança do código ao evitar o uso de strings literais.Refatoração do Cliente de API:
_execute
para centralizar a lógica de execução de requisições HTTP, reduzindo a duplicação de código.StreamedResponse
para processar respostas de forma mais eficiente._apiClient
para_httpClient
para maior clareza.Melhorias no Tratamento de Respostas:
_parseStreamedResponse
para processar respostas de forma assíncrona e lidar com diferentes códigos de status HTTP._parseBody
para tratar erros de decodificação de JSON de forma mais robusta.Refatoração dos Testes:
StreamedResponse
nos testes para simular respostas HTTP de forma mais realista.GET
,POST
,DELETE
) nos testes para garantir que o método correto está sendo usado.Extensão para Conversão de Enum em String:
_ApiHttpRequestMethodStringify
para converter o enumApiHttpRequestMethod
em strings HTTP, evitando o uso de strings literais.Issues:
Fixes #394