Add more permissions

This commit is contained in:
Simon Pocrnjič
2025-10-31 10:16:38 +01:00
parent 7d4d18143d
commit ed4f67effb
18 changed files with 404 additions and 193 deletions
+45 -28
View File
@@ -1,22 +1,22 @@
<script setup>
import { watch, onMounted } from 'vue'
import { useCurrencyInput } from 'vue-currency-input'
import { watch, onMounted } from "vue";
import { useCurrencyInput } from "vue-currency-input";
const props = defineProps({
modelValue: { type: [Number, String, null], default: null },
id: String,
name: String,
placeholder: { type: String, default: '0,00' },
placeholder: { type: String, default: "0,00" },
disabled: Boolean,
required: Boolean,
currency: { type: String, default: 'EUR' },
locale: { type: String, default: 'sl-SI' },
currency: { type: String, default: "EUR" },
locale: { type: String, default: "sl-SI" },
precision: { type: [Number, Object], default: 2 },
allowNegative: { type: Boolean, default: false },
useGrouping: { type: Boolean, default: true },
})
});
const emit = defineEmits(['update:modelValue'])
const emit = defineEmits(["update:modelValue", "change"]);
const { inputRef, numberValue, setValue, setOptions } = useCurrencyInput({
currency: props.currency,
@@ -24,35 +24,51 @@ const { inputRef, numberValue, setValue, setOptions } = useCurrencyInput({
precision: props.precision,
useGrouping: props.useGrouping,
valueRange: props.allowNegative ? {} : { min: 0 },
})
});
watch(() => props.modelValue, (val) => {
const numeric = typeof val === 'string' ? parseFloat(val) : val
if (numeric !== numberValue.value) {
setValue(isNaN(numeric) ? null : numeric)
}
}, { immediate: true })
watch(
() => props.modelValue,
(val) => {
const numeric = typeof val === "string" ? parseFloat(val) : val;
if (numeric !== numberValue.value) {
setValue(isNaN(numeric) ? null : numeric);
}
},
{ immediate: true }
);
watch(numberValue, (val) => {
emit('update:modelValue', val)
})
emit("update:modelValue", val);
});
watch(() => [props.currency, props.locale, props.precision, props.useGrouping, props.allowNegative], () => {
setOptions({
currency: props.currency,
locale: props.locale,
precision: props.precision,
useGrouping: props.useGrouping,
valueRange: props.allowNegative ? {} : { min: 0 },
})
})
watch(
() => [
props.currency,
props.locale,
props.precision,
props.useGrouping,
props.allowNegative,
],
() => {
setOptions({
currency: props.currency,
locale: props.locale,
precision: props.precision,
useGrouping: props.useGrouping,
valueRange: props.allowNegative ? {} : { min: 0 },
});
}
);
onMounted(() => {
if (props.modelValue != null) {
const numeric = typeof props.modelValue === 'string' ? parseFloat(props.modelValue) : props.modelValue
setValue(isNaN(numeric) ? null : numeric)
const numeric =
typeof props.modelValue === "string"
? parseFloat(props.modelValue)
: props.modelValue;
setValue(isNaN(numeric) ? null : numeric);
}
})
});
</script>
<template>
@@ -67,5 +83,6 @@ onMounted(() => {
:required="required"
class="mt-1 block w-full rounded-md border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 dark:bg-gray-800 dark:border-gray-600"
autocomplete="off"
@change="$emit('change', numberValue)"
/>
</template>