Fixes: None; Extra: 1) Create Pinia stores for app, user, category, and company management; 2) Add utility functions for error handling and category slug lookups; 3) Include German locale file and robots.txt for improved SEO and accessibility; 4) Add SVG assets and improve general folder structure for better maintainability.
89 lines
No EOL
1.6 KiB
Vue
89 lines
No EOL
1.6 KiB
Vue
<template>
|
|
<div class="block">
|
|
<textarea
|
|
:placeholder="placeholder"
|
|
:value="modelValue"
|
|
@input="onInput"
|
|
class="block__textarea"
|
|
/>
|
|
<p v-if="!validate" class="block__error">{{ errorMessage }}</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const $emit = defineEmits();
|
|
const props = defineProps<{
|
|
placeholder: string,
|
|
isError?: boolean,
|
|
error?: string,
|
|
modelValue?: [string, number],
|
|
rules?: array
|
|
}>();
|
|
|
|
const validate = ref<boolean>(true)
|
|
const errorMessage = ref<string>('')
|
|
const onInput = (e: Event) => {
|
|
let result = true
|
|
|
|
props.rules?.forEach((rule) => {
|
|
result = rule((e.target).value)
|
|
|
|
if (!result) {
|
|
errorMessage.value = String(result)
|
|
result = false
|
|
}
|
|
})
|
|
|
|
validate.value = result
|
|
|
|
return $emit('update:modelValue', (e.target).value)
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.block {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
position: relative;
|
|
|
|
&__textarea {
|
|
width: 100%;
|
|
height: 150px;
|
|
resize: none;
|
|
padding: 6px 12px;
|
|
border: 1px solid #e0e0e0;
|
|
border-radius: $default_border_radius;
|
|
background-color: $white;
|
|
|
|
color: #1f1f1f;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
|
|
&::placeholder {
|
|
color: #2B2B2B;
|
|
}
|
|
}
|
|
|
|
&__error {
|
|
color: $error;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
animation: fadeInUp 0.3s ease;
|
|
|
|
@keyframes fadeInUp {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translateY(-50%);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style> |