Files
Website/resources/js/components/SMInput.vue
2023-04-17 07:16:31 +10:00

233 lines
5.2 KiB
Vue

<template>
<div
:class="[
'input-control-item',
{ 'input-active': active, 'input-invalid': feedbackInvalid },
]">
<label class="input-label" v-bind="{ for: id }">{{ label }}</label>
<ion-icon class="invalid-icon" name="alert-circle-outline"></ion-icon>
<input
:type="props.type"
class="input-control"
:disabled="disabled"
v-bind="{ id: id }"
v-model="value"
@focus="handleFocus"
@blur="handleBlur"
@input="handleInput" />
<div v-if="slots.default || feedbackInvalid" class="input-help">
<span v-if="feedbackInvalid" class="input-invalid">
{{ feedbackInvalid }}
</span>
<span v-if="slots.default"><slot></slot></span>
</div>
</div>
</template>
<script setup lang="ts">
import { inject, watch, ref, useSlots } from "vue";
import { isEmpty } from "../helpers/utils";
import { toTitleCase } from "../helpers/string";
const emits = defineEmits(["update:modelValue"]);
const props = defineProps({
form: {
type: Object,
default: undefined,
required: false,
},
control: {
type: [String, Object],
default: "",
},
label: {
type: String,
default: undefined,
required: false,
},
modelValue: {
type: String,
default: undefined,
required: false,
},
type: {
type: String,
default: "text",
required: false,
},
id: {
type: String,
default: undefined,
required: false,
},
disabled: {
type: Boolean,
default: false,
required: false,
},
});
const slots = useSlots();
const form = inject("form", props.form);
const control =
typeof props.control === "object"
? props.control
: !isEmpty(form) &&
typeof props.control === "string" &&
props.control !== "" &&
Object.prototype.hasOwnProperty.call(form.controls, props.control)
? form.controls[props.control]
: null;
const label = ref(
props.label != undefined
? props.label
: typeof props.control == "string"
? toTitleCase(props.control)
: ""
);
const value = ref(
props.modelValue != undefined
? props.modelValue
: control != null
? control.value
: ""
);
const id = ref(
props.id != undefined
? props.id
: typeof props.control == "string"
? props.control
: ""
);
const feedbackInvalid = ref("");
const active = ref(value.value != "");
const disabled = ref(props.disabled);
watch(value, (newValue) => {
active.value = newValue.value != "";
});
if (typeof control === "object") {
watch(
() => control.validation.result.valid,
(newValue) => {
feedbackInvalid.value = newValue
? ""
: control.validation.result.invalidMessages[0];
},
{ deep: true }
);
watch(
() => control.value,
(newValue) => {
value.value = newValue;
},
{ deep: true }
);
}
if (form) {
watch(
() => form.loading(),
(newValue) => {
disabled.value = newValue;
}
);
}
const handleFocus = () => {
active.value = true;
};
const handleBlur = async () => {
active.value = value.value != "";
if (control) {
await control.validate();
control.isValid();
}
};
const handleInput = (event: Event) => {
const target = event.target as HTMLInputElement;
value.value = target.value;
emits("update:modelValue", target.value);
if (control) {
control.value = target.value;
feedbackInvalid.value = "";
}
};
</script>
<style lang="scss">
.input-control-item {
margin-bottom: 16px;
position: relative;
.input-label {
position: absolute;
display: block;
transform-origin: top left;
transform: translate(16px, 16px) scale(1);
transition: all 0.1s ease-in-out;
color: var(--base-color-darker);
pointer-events: none;
}
.invalid-icon {
position: absolute;
display: none;
right: 10px;
top: 14px;
color: var(--danger-color);
font-size: 28px;
}
.input-control {
display: block;
width: 100%;
margin-bottom: 8px;
padding: 20px 16px 8px 16px;
border: 1px solid var(--base-color-darker);
border-radius: 8px;
background-color: var(--base-color-light);
color: var(--base-color-text);
}
.input-help {
display: block;
font-size: 85%;
margin-bottom: 8px;
.input-invalid {
color: var(--danger-color);
}
span + span:before {
content: "-";
margin: 0 6px;
}
}
&.input-active {
.input-label {
transform: translate(16px, 6px) scale(0.8);
}
}
&.input-invalid {
.invalid-icon {
display: block;
}
.input-control {
border: 2px solid var(--danger-color);
}
}
}
</style>