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

Need help: DatePicker set value not work #2106

Open
dncmaduro opened this issue Sep 3, 2024 · 0 comments
Open

Need help: DatePicker set value not work #2106

dncmaduro opened this issue Sep 3, 2024 · 0 comments
Labels
bug Something isn't working triage

Comments

@dncmaduro
Copy link

dncmaduro commented Sep 3, 2024

Environment

  • Operating System: Windows_NT
  • Node Version: v20.11.0
  • Nuxt Version: 3.13.0
  • CLI Version: 3.13.1
  • Nitro Version: 2.9.7
  • Package Manager: yarn@1.22.22
  • Builder: -
  • User Config: modules, colorMode, devtools, srcDir,
    css, compatibilityDate
  • Runtime Modules: @nuxt/ui@2.18.4, @nuxtjs/google-fonts@3.2.0, @nuxt/eslint@0.4.0, @nuxt/image@1.8.0
  • Build Modules: -

Version

v2.18.2

Reproduction

Just a small question, no need to reproduce

Description

This is my DatePicker component

<template>
  <VCalendarDatePicker v-if="date" v-bind="{ ...attrs, ...$attrs }" />
</template>

<script setup lang="ts">
import { DatePicker as VCalendarDatePicker } from 'v-calendar'
import type { DatePickerDate } from 'v-calendar/dist/types/src/use/datePicker'
import 'v-calendar/dist/style.css'

const props = defineProps({
  modelValue: {
    type: Date as PropType<DatePickerDate>,
    default: null
  }
})

const emit = defineEmits(['update:model-value', 'close'])

const date = computed({
  get: () => props.modelValue,
  set: (value) => {
    emit('update:model-value', value)
    emit('close')
  }
})

const attrs = {
  transparent: true,
  borderless: true,
  color: 'primary',
  'is-dark': { selector: 'html', darkClass: 'dark' },
  'first-day-of-week': 1
}
</script>

And I use this component like this:

<template>
  <PagesForm
    :title="title"
    :action="action"
    @submit="formRef.submit()"
    :submit-button-label="submitButtonLabel"
  >
    <UForm
      :validate="validate"
      :state="state"
      class="flex w-full flex-col gap-8"
      @error="onError"
      @submit="onSubmit"
      ref="formRef"
    >
      <UFormGroup label="Name" name="name" required>
        <UInput placeholder="Enter member name..." size="xl" v-model="state.name" />
      </UFormGroup>

      <UFormGroup label="Email" name="email" required>
        <UInput placeholder="Enter member email..." size="xl" v-model="state.email" />
      </UFormGroup>

      <UFormGroup label="School" name="school" required>
        <UInput placeholder="Enter member school..." size="xl" v-model="state.school" />
      </UFormGroup>

      <UFormGroup label="Position" name="position" required>
        <USelect
          placeholder="Select"
          size="xl"
          v-model="state.position"
          :options="positionOptions"
        />
      </UFormGroup>

      <UFormGroup label="Joined At" name="joinedAt" required>
        <UPopover :popper="{ placement: 'bottom-start' }" class="w-full">
          <UButton
            icon="i-heroicons-calendar-days"
            :label="format(state.joinedAt || new Date(), 'd MMM, yyy')"
            color="white"
            class="w-full"
            size="xl"
          />

          <template #panel="{ close }">
            <CommonDatePicker v-model="state.joinedAt" @close="close" />
          </template>
        </UPopover>
      </UFormGroup>
    </UForm>
  </PagesForm>
</template>

<script setup lang="ts">
import { format } from 'date-fns'
import type { FormSubmitEvent, FormError, FormErrorEvent } from '#ui/types'
import { positionOptions } from '~/constants/select-options/positions'
import type { MemberForm, MemberFormState } from '~/types/members'

const props = defineProps<MemberForm>()

const formRef = ref()

const state = reactive<MemberFormState>({
  name: props.form?.name || '',
  email: props.form?.email || '',
  school: props.form?.school || '',
  position: props.form?.position || '',
  joinedAt: props.form?.joinedAt || new Date(),
  gen: props.form?.gen || undefined,
  aboutThisMember: props.form?.aboutThisMember || '',
  facebook: props.form?.facebook || '',
  github: props.form?.github || '',
  linkedin: props.form?.linkedin || ''
})

const validate = (state: MemberFormState): FormError[] => {
  const errors = []
  if (!state.name) errors.push({ path: 'name', message: 'Required' })
  if (!state.email) errors.push({ path: 'email', message: 'Required' })
  if (!state.school) errors.push({ path: 'school', message: 'Required' })
  if (!state.position) errors.push({ path: 'position', message: 'Required' })
  if (!state.joinedAt) errors.push({ path: 'joinedAt', message: 'Required' })
  if (!state.gen) errors.push({ path: 'gen', message: 'Required' })
  if (!state.aboutThisMember) errors.push({ path: 'aboutThisMember', message: 'Required' })
  if (!state.facebook) errors.push({ path: 'facebook', message: 'Required' })
  if (!state.github) errors.push({ path: 'joinedAt', message: 'Required' })
  if (!state.linkedin) errors.push({ path: 'linkedin', message: 'Required' })
  return errors
}

const onError = async (event: FormErrorEvent) => {
  const element = document.getElementById(event.errors[0].id)
  element?.focus()
  element?.scrollIntoView({ behavior: 'smooth', block: 'center' })
}

const emit = defineEmits<{
  (e: 'form-submit', data: object): void
}>()

const onSubmit = async (event: FormSubmitEvent<MemberFormState>) => {
  emit('form-submit', event.data)
}
</script>

When I click the button, the DatePicker is shown but the label of the Button is not change. I still don't know that caused by the date is not changed or I set the label of the button wrongly. But when I put a console.log inside the set(), it does not run.
image

Additional context

No response

Logs

No response

@dncmaduro dncmaduro added bug Something isn't working triage labels Sep 3, 2024
@dncmaduro dncmaduro changed the title Need help: DatePicker set value not work Need help: DatePicker set value not work Sep 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working triage
Projects
None yet
Development

No branches or pull requests

1 participant