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

[pull] dev from opf:dev #507

Merged
merged 18 commits into from
Mar 25, 2025
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove datepicker on mobile and use native date fields instead
  • Loading branch information
HDinger authored and oliverguenther committed Mar 25, 2025
commit a40aa8847bc631d2a643198added2b46c201aeeb
Original file line number Diff line number Diff line change
@@ -80,7 +80,7 @@ def text_field_options(name:, label:)
show_clear_button: !disabled?(name) && !duration_field?(name),
classes: "op-datepicker-modal--date-field #{'op-datepicker-modal--date-field_current' if @focused_field == name}",
validation_message: validation_message(name),
type: duration_field?(name) ? :number : :text
type: field_type(name)
)

if duration_field?(name)
@@ -177,6 +177,12 @@ def field_value(name)
end
end

def field_type(name)
return :number if duration_field?(name)

helpers.browser.device.mobile? ? :date : :text
end

def validation_message(name)
# it's ok to take the first error only, that's how primer_view_component does it anyway.
message = @work_package.errors.messages_for(name).first
Original file line number Diff line number Diff line change
@@ -22,8 +22,10 @@ $body-height: 460px

@media screen and (max-width: $breakpoint-sm)
.wp-datepicker-dialog
&--UnderlineNav
&--UnderlineNav,
&--date-picker-instance
display: none !important

&--body
padding-top: var(--stack-padding-normal)
min-height: unset
Original file line number Diff line number Diff line change
@@ -97,7 +97,7 @@
)
end

body.with_row("aria-hidden": true) do
body.with_row("aria-hidden": true, classes: "wp-datepicker-dialog--date-picker-instance") do
helpers.angular_component_tag "opce-wp-date-picker-instance",
inputs: {
start_date: work_package.start_date,