Skip to content
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

feat: add time filter #353

Merged

Conversation

caioapolonio
Copy link
Contributor

@caioapolonio caioapolonio commented Jan 2, 2025

Summary by CodeRabbit

  • Novos Recursos

    • Adicionada funcionalidade de filtro de tempo ao componente de filtro de data
    • Incluídos campos para selecionar horário de início e término
    • Possibilidade de filtrar datas com intervalos de tempo específicos
  • Melhorias de Interface

    • Novos estilos para os seletores de tempo
    • Layout aprimorado para entrada de horários
    • Novos componentes estilizados para melhor organização e apresentação dos inputs de tempo

Copy link

coderabbitai bot commented Jan 2, 2025

Walkthrough

As alterações introduzem um recurso de filtragem de tempo no componente de filtro de data existente. O novo recurso permite aos usuários selecionar horas de início e término específicas junto com o intervalo de datas. O componente agora suporta a definição de tempos padrão (00:00 e 23:59) e inclui novos elementos de interface para seleção de tempo, além de atualizar a lógica de filtragem para incorporar informações de tempo precisas.

Changes

Arquivo Resumo das Alterações
src/components/DateFilter/index.tsx - Adicionadas variáveis de estado startTime e endTime
- Criada função formatDateWithTime
- Atualizada função filterDate para incluir parâmetros de tempo
- Modificado handleConfirmClick para considerar tempos selecionados
src/components/DateFilter/styles.ts - Adicionados componentes estilizados TimeFilterContainer, TimeSelector e TimeInput

Sequence Diagram

sequenceDiagram
    participant User
    participant DateFilter
    participant FilterLogic

    User->>DateFilter: Seleciona data inicial
    User->>DateFilter: Seleciona hora inicial
    User->>DateFilter: Seleciona data final
    User->>DateFilter: Seleciona hora final
    User->>DateFilter: Confirma seleção
    DateFilter->>FilterLogic: Aplica filtro com data e tempo
    FilterLogic-->>User: Exibe resultados filtrados
Loading

Poem

🕰️ Coelhos do tempo, saltem com alegria!
Filtros de data agora têm mais magia
Horas precisas, minutos em sintonia
Nosso código dança com nova energia
Tempo controlado, que grande façanha! 🐰✨


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 132fe4a and 534d48a.

📒 Files selected for processing (2)
  • src/components/DateFilter/index.tsx (4 hunks)
  • src/components/DateFilter/styles.ts (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
  • src/components/DateFilter/styles.ts
  • src/components/DateFilter/index.tsx
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: build (18.x)

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (2)
src/components/DateFilter/index.tsx (2)

274-290: Formatando corretamente o intervalo de data e hora.
A atualização do inputValue com o intervalo facilita o entendimento do usuário. Considere padronizar o formato escolhido (e.g., sempre 24h) para garantir consistência visual e de localização.


391-411: Sugestão de componente reutilizável.
A inclusão de marcadores de rótulo e inputs de tempo ficou bem estruturada. Para maior organização, considere extrair esses blocos em um componente ou hook, evitando duplicação futura e mantendo o código mais enxuto.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between aab4206 and f966856.

📒 Files selected for processing (2)
  • src/components/DateFilter/index.tsx (3 hunks)
  • src/components/DateFilter/styles.ts (1 hunks)
🔇 Additional comments (7)
src/components/DateFilter/index.tsx (4)

25-27: Boa adoção de novos componentes de estilo.
Essas importações tornam o código mais organizado, facilitando a implementação da filtragem por tempo.


243-245: Uso apropriado de valores padrão.
Definir '00:00' e '23:59' como valores iniciais auxilia na seleção rápida sem exigir que o usuário sempre defina o horário.


254-272: Implementação de filtragem condicional.
A lógica atende bem ao propósito de atualizar a query com as datas e horários escolhidos, mas esteja atento a fusos horários diferentes e possíveis conversões de horário dados ambientes variados.


292-299: Manipuladores de evento claros e diretos.
O uso de setStartTime e setEndTime reflete uma implementação simples e eficaz para capturar as alterações de horário do usuário.

src/components/DateFilter/styles.ts (3)

129-135: Container bem organizado.
A TimeFilterContainer fornece uma disposição em coluna com espaçamento entre elementos, mantendo a legibilidade e favorecendo a escalabilidade.


137-143: Layout flexível para cada seletor de tempo.
O uso de justify-content: space-between; e align-items: center; ajuda a manter os campos e rótulos alinhados de forma consistente, mesmo em diferentes tamanhos de tela.


145-153: Estilização limpa e adaptável.
O TimeInput utiliza recursos como color-scheme: dark; e borda customizada, permitindo coerência visual tanto em temas claros quanto escuros.

src/components/DateFilter/index.tsx Show resolved Hide resolved
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

♻️ Duplicate comments (1)
src/components/DateFilter/index.tsx (1)

246-252: ⚠️ Potential issue

Adicionar validação do formato de tempo

A função formatDateWithTime assume que a string de tempo está no formato correto "HH:MM". Recomenda-se adicionar validação para evitar erros com formatos inválidos.

Sugestão de implementação:

 const formatDateWithTime = (date: Date, time: string) => {
+  const timeRegex = /^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$/;
+  if (!timeRegex.test(time)) {
+    throw new Error('Formato de tempo inválido. Use HH:MM');
+  }
   const [hours, minutes] = time.split(':').map(Number);
   const newDate = new Date(date);
   newDate.setHours(hours, minutes, 0, 0);

   return newDate;
 };
🧹 Nitpick comments (1)
src/components/DateFilter/index.tsx (1)

291-297: Otimizar manipuladores de alteração de tempo

Sugestões de melhorias para os manipuladores de tempo:

  • Adicionar debounce para evitar atualizações frequentes
  • Validar os valores de tempo antes de atualizar o estado

Exemplo de implementação:

+import { debounce } from 'lodash';

+const validateTime = (time: string) => {
+  const timeRegex = /^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$/;
+  return timeRegex.test(time);
+};

-const handleStartTimeChange = (e: React.ChangeEvent<HTMLInputElement>) => {
-  setStartTime(e.target.value);
-};
+const handleStartTimeChange = debounce((e: React.ChangeEvent<HTMLInputElement>) => {
+  const newTime = e.target.value;
+  if (validateTime(newTime)) {
+    setStartTime(newTime);
+  }
+}, 300);
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between f966856 and 797617c.

📒 Files selected for processing (2)
  • src/components/DateFilter/index.tsx (4 hunks)
  • src/components/DateFilter/styles.ts (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/components/DateFilter/styles.ts
🔇 Additional comments (3)
src/components/DateFilter/index.tsx (3)

243-244: Inicialização adequada dos estados de tempo!

A implementação dos estados startTime e endTime com valores padrão apropriados está correta.


254-272: Implementação robusta do filtro de tempo!

A função filterDate lida adequadamente com todos os cenários:

  • Filtragem para um único dia
  • Filtragem para um intervalo de datas
  • Aplicação correta dos horários de início e fim

274-289: Excelente implementação do manipulador de confirmação!

O handleConfirmClick foi bem atualizado para:

  • Incluir informações de tempo no filtro
  • Atualizar o valor de exibição com data e hora
  • Manter as dependências do useCallback atualizadas

src/components/DateFilter/index.tsx Outdated Show resolved Hide resolved
@caioapolonio caioapolonio merged commit 2336b1d into develop Jan 6, 2025
2 checks passed
@caioapolonio caioapolonio deleted the LAB-2889-filter-transactions-by-date-time-range branch January 6, 2025 13:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants