feat : bornage min/max du MonthPicker (#date-year-picker)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-22 10:12:55 +02:00
parent 288c7a9dfb
commit 5e5423c545
2 changed files with 47 additions and 2 deletions
@@ -0,0 +1,33 @@
import { describe, expect, it } from 'vitest'
import { mount } from '@vue/test-utils'
import MonthPicker from './MonthPicker.vue'
const mountPicker = (props: { currentYear: number, selectedMonth?: number, min?: string, max?: string }) =>
mount(MonthPicker, { props })
describe('MalioDateMonthPicker', () => {
it('renders 12 months', () => {
const wrapper = mountPicker({ currentYear: 2026 })
expect(wrapper.findAll('[data-test="month"]')).toHaveLength(12)
})
it('emits select with the clicked month index', async () => {
const wrapper = mountPicker({ currentYear: 2026 })
await wrapper.get('[data-test="month"][data-month="0"]').trigger('click')
expect(wrapper.emitted('select')?.[0]).toEqual([0])
})
it('disables months before min in the current year and does not emit', async () => {
const wrapper = mountPicker({ currentYear: 2026, min: '2026-05-01' })
const april = wrapper.get('[data-test="month"][data-month="3"]')
expect(april.attributes('disabled')).toBeDefined()
await april.trigger('click')
expect(wrapper.emitted('select')).toBeUndefined()
})
it('disables months after max in the current year', () => {
const wrapper = mountPicker({ currentYear: 2026, max: '2026-05-31' })
expect(wrapper.get('[data-test="month"][data-month="5"]').attributes('disabled')).toBeDefined()
expect(wrapper.get('[data-test="month"][data-month="4"]').attributes('disabled')).toBeUndefined()
})
})
@@ -9,14 +9,19 @@
type="button" type="button"
data-test="month" data-test="month"
:data-month="index" :data-month="index"
:disabled="!isMonthInRange(currentYear, index, min, max)"
:aria-disabled="!isMonthInRange(currentYear, index, min, max)"
class="flex h-[45px] w-full items-center justify-center" class="flex h-[45px] w-full items-center justify-center"
:class="isMonthInRange(currentYear, index, min, max) ? 'cursor-pointer' : 'cursor-not-allowed'"
@click="emit('select', index)" @click="emit('select', index)"
> >
<span <span
class="flex h-[30px] w-full items-center justify-center rounded text-sm transition-colors duration-100" class="flex h-[30px] w-full items-center justify-center rounded text-sm transition-colors duration-100"
:class="index === selectedMonth :class="index === selectedMonth
? 'bg-m-primary text-white' ? 'bg-m-primary text-white'
: 'text-black hover:bg-m-primary/10'" : isMonthInRange(currentYear, index, min, max)
? 'text-black hover:bg-m-primary/10'
: 'text-m-muted/30'"
> >
{{ name }} {{ name }}
</span> </span>
@@ -25,9 +30,16 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import {isMonthInRange} from '../composables/dateFormat'
defineOptions({name: 'MalioDateMonthPicker'}) defineOptions({name: 'MalioDateMonthPicker'})
defineProps<{selectedMonth?: number}>() defineProps<{
currentYear: number
selectedMonth?: number
min?: string
max?: string
}>()
const emit = defineEmits<{(e: 'select', month: number): void}>() const emit = defineEmits<{(e: 'select', month: number): void}>()