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

Add more date formats in settings #3131

Merged
merged 1 commit into from
Dec 14, 2024
Merged

Add more date formats in settings #3131

merged 1 commit into from
Dec 14, 2024

Conversation

Yusyuriv
Copy link
Member

@Yusyuriv Yusyuriv commented Dec 14, 2024

Closes #3128.

This PR adds two more date format options to settings:

  • dd.MM.yy (15.12.24)
  • dd.MM.yyyy (15.12.2024)

I tested:

  • the new options correctly appearing in settings
  • when one of the new options is selected, the date is displayed in the correct format when the search query is empty
  • the settings correctly get saved and loaded when restarting Flow Launcher

@Yusyuriv Yusyuriv added the enhancement New feature or request label Dec 14, 2024
@Yusyuriv Yusyuriv self-assigned this Dec 14, 2024
@github-actions github-actions bot added this to the 1.20.0 milestone Dec 14, 2024
Copy link

gitstream-cm bot commented Dec 14, 2024

🥷 Code experts: no user but you matched threshold 10

Yusyuriv, onesounds have most 🧠 knowledge in the files.

See details

Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs

Knowledge based on git-blame:
Yusyuriv: 73%
onesounds: 18%

To learn more about /:\ gitStream - Visit our Docs

Copy link

@check-spelling-bot Report

🔴 Please review

See the 📂 files view, the 📜action log, or 📝 job summary for details.

❌ Errors Count
❌ forbidden-pattern 22
❌ ignored-expect-variant 1
⚠️ non-alpha-in-dictionary 19

See ❌ Event descriptions for more information.

If the flagged items are 🤯 false positives

If items relate to a ...

  • binary file (or some other file you wouldn't want to check at all).

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

Copy link
Contributor

coderabbitai bot commented Dec 14, 2024

📝 Walkthrough

Walkthrough

The pull request introduces two new date format options ("dd.MM.yy" and "dd.MM.yyyy") to the SettingsPaneThemeViewModel class in the Flow Launcher application. These additions expand the date formatting choices available to users, specifically catering to European date representation standards. The core functionality of the view model remains consistent, with no significant changes to existing font, theme, or settings management logic.

Changes

File Change Summary
Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs Added two new date format strings: "dd.MM.yy" and "dd.MM.yyyy" to DateFormatList property

Assessment against linked issues

Objective Addressed Explanation
Add support for dd.MM.yyyy date format [#3128]
Improve usability for European users

Poem

🐰 A rabbit's date delight,
Two formats now shine bright,
dd.MM dancing free,
European style with glee,
Flow Launcher's calendar takes flight! 📅

Tip

CodeRabbit's docstrings feature is now available as part of our Early Access Program! Simply use the command @coderabbitai generate docstrings to have CodeRabbit automatically generate docstrings for your pull request. This feature will be included in our Pro Plan when released.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 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
Contributor

@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: 0

🧹 Outside diff range and nitpick comments (1)
Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs (1)

135-137: LGTM! The new date formats are valid and well-integrated.

The added date formats follow the correct DateTime format string syntax and are consistent with the existing formats in the list. They provide good options for European date representation.

Consider moving these format strings to a resource file or constants to improve maintainability and enable localization if needed in the future. Example:

public List<string> DateFormatList { get; } = new()
{
-    "MM'/'dd dddd",
-    // ... other formats ...
-    "dd.MM.yy",
-    "dd.MM.yyyy"
+    DateTimeFormats.MonthDayLong,
+    // ... other formats ...
+    DateTimeFormats.EuropeanShort,
+    DateTimeFormats.EuropeanLong
};
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 713034c and e8bbbda.

📒 Files selected for processing (1)
  • Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs (1 hunks)
🔇 Additional comments (1)
Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs (1)

135-137: Verify date format preview functionality

Please ensure that the preview functionality correctly displays these new date formats across different cultures.

✅ Verification successful

Let me check the implementation details of the date format preview functionality.


Let me try a different approach to check the implementation details.


The new date formats are safely integrated

The implementation correctly handles culture-specific formatting:

  • DateText property uses CultureInfo.CurrentUICulture for proper localization
  • DateTimeFormatToNowConverter provides preview functionality
  • The formats follow standard DateTime pattern strings that work across cultures
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for preview-related code and date format usage
rg -l "DateFormat|CultureInfo" --type cs

# Check for any culture-specific handling in tests
rg -l "TestCulture|CultureInfo.*CurrentUICulture" --type cs

Length of output: 2119


Script:

#!/bin/bash
# Check the implementation of date format preview and culture handling
ast-grep --pattern 'class SettingsPaneThemeViewModel {
  $$$
  DateText $$$
  $$$
}'

# Check the date format converter implementation
ast-grep --pattern 'class DateTimeFormatToNowConverter {
  $$$
}'

# Check settings implementation for date format
ast-grep --pattern 'class Settings {
  $$$
  DateFormat $$$
  $$$
}'

Length of output: 225


Script:

#!/bin/bash
# Check the implementation details of the date format handling
rg "DateText" -A 5 -B 5 Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs

# Check the converter implementation
rg "Convert" -A 10 Flow.Launcher/Converters/DateTimeFormatToNowConverter.cs

# Check how date format is used in settings
rg "DateFormat" -A 3 -B 3 Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Length of output: 1411

Copy link

gitstream-cm bot commented Dec 14, 2024

Be a legend 🏆 by adding a before and after screenshot of the changes you made, especially if they are around UI/UX.

@Yusyuriv Yusyuriv merged commit 0c05440 into dev Dec 14, 2024
12 checks passed
@Yusyuriv Yusyuriv deleted the add-european-date-formats branch December 14, 2024 19:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEATURE REQUEST] Add dd.MM.yyyy date format to Flow Launcher
2 participants