-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* feat(fwb-select): Add validation and helper slot * docs(docs-select): Add validation and helper slot examples
- Loading branch information
1 parent
32d9c4a
commit f530e24
Showing
6 changed files
with
275 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
docs/components/select/examples/FwbSelectExampleHelper.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<template> | ||
<div class="vp-raw"> | ||
<fwb-select | ||
v-model="selected" | ||
:options="countries" | ||
label="Select a country" | ||
> | ||
<template #helper> | ||
We'll never share your details. Read our | ||
<fwb-a | ||
href="#" | ||
color="text-blue-600 dark:text-blue-500" | ||
> | ||
Privacy Policy | ||
</fwb-a>. | ||
</template> | ||
</fwb-select> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
import { ref } from 'vue' | ||
import { FwbA, FwbSelect } from '../../../../src/index' | ||
const selected = ref('') | ||
const countries = [ | ||
{ value: 'us', name: 'United States' }, | ||
{ value: 'ca', name: 'Canada' }, | ||
{ value: 'fr', name: 'France' }, | ||
] | ||
</script> |
33 changes: 33 additions & 0 deletions
33
docs/components/select/examples/FwbSelectExampleValidation.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<template> | ||
<div class="vp-raw"> | ||
<fwb-select | ||
v-model="selected" | ||
:options="countries" | ||
label="Select a country" | ||
validation-status="success" | ||
/> | ||
<hr class="mt-4 border-0"> | ||
<fwb-select | ||
v-model="selected" | ||
:options="countries" | ||
label="Select a country" | ||
validation-status="error" | ||
> | ||
<template #validationMessage> | ||
Please select a country | ||
</template> | ||
</fwb-select> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
import { ref } from 'vue' | ||
import { FwbSelect } from '../../../../src/index' | ||
const selected = ref('') | ||
const countries = [ | ||
{ value: 'us', name: 'United States' }, | ||
{ value: 'ca', name: 'Canada' }, | ||
{ value: 'fr', name: 'France' }, | ||
] | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
import { computed, type Ref } from 'vue' | ||
import { twMerge } from 'tailwind-merge' | ||
import { | ||
type InputSize, | ||
type ValidationStatus, | ||
validationStatusMap, | ||
} from '../types' | ||
|
||
// LABEL | ||
const baseLabelClasses = 'block mb-2 text-sm font-medium' | ||
|
||
// INPUT | ||
const defaultSelectClasses = 'w-full text-gray-900 bg-gray-50 focus:ring-primary-500 focus:border-primary-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-primary-500 dark:focus:border-primary-500' | ||
const disabledSelectClasses = 'cursor-not-allowed bg-gray-100' | ||
const underlineSelectClasses = 'bg-transparent dark:bg-transparent border-b-2 border-gray-200 appearance-none dark:border-gray-700 focus:outline-none focus:ring-0 focus:border-gray-200 peer' | ||
const selectSizeClasses: Record<InputSize, string> = { | ||
lg: 'p-4', | ||
md: 'p-2.5 text-sm', | ||
sm: 'p-2 text-sm', | ||
} | ||
|
||
const successInputClasses = 'bg-green-50 border-green-500 dark:border-green-500 text-green-900 dark:text-green-400 placeholder-green-700 dark:placeholder-green-500 focus:ring-green-500 focus:border-green-500' | ||
const errorInputClasses = 'bg-red-50 border-red-500 text-red-900 placeholder-red-700 focus:ring-red-500 focus:border-red-500 dark:text-red-500 dark:placeholder-red-500 dark:border-red-500' | ||
|
||
export type UseSelectClassesProps = { | ||
size: Ref<InputSize>, | ||
disabled: Ref<boolean> | ||
underline: Ref<boolean>, | ||
validationStatus: Ref<ValidationStatus | undefined> | ||
} | ||
|
||
export function useSelectClasses (props: UseSelectClassesProps): { | ||
selectClasses: Ref<string> | ||
labelClasses: Ref<string> | ||
} { | ||
const selectClasses = computed(() => { | ||
const vs = props.validationStatus.value | ||
|
||
const classByStatus = vs === validationStatusMap.Success | ||
? successInputClasses | ||
: vs === validationStatusMap.Error | ||
? errorInputClasses | ||
: '' | ||
|
||
const underlineByStatus = vs === validationStatusMap.Success | ||
? 'focus:border-green-500' | ||
: vs === validationStatusMap.Error | ||
? 'focus:border-red-500' | ||
: '' | ||
|
||
return twMerge( | ||
defaultSelectClasses, | ||
classByStatus, | ||
selectSizeClasses[props.size.value], | ||
props.disabled.value && disabledSelectClasses, | ||
props.underline.value ? underlineSelectClasses : 'border border-gray-300 rounded-lg', | ||
props.underline.value && underlineByStatus, | ||
) | ||
}) | ||
|
||
const labelClasses = computed(() => { | ||
const vs = props.validationStatus.value | ||
const classByStatus = vs === validationStatusMap.Success | ||
? 'text-green-700 dark:text-green-500' | ||
: vs === validationStatusMap.Error | ||
? 'text-red-700 dark:text-red-500' | ||
: 'text-gray-900 dark:text-white' | ||
|
||
return twMerge(baseLabelClasses, classByStatus) | ||
}) | ||
|
||
return { | ||
selectClasses, | ||
labelClasses, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
export type InputSize = 'sm' | 'md' | 'lg' | ||
|
||
export type OptionsType = { | ||
name: string, | ||
value: string, | ||
} | ||
|
||
export const validationStatusMap = { | ||
Success: 'success', | ||
Error: 'error', | ||
} as const | ||
|
||
export type ValidationStatus = typeof validationStatusMap[keyof typeof validationStatusMap] |