hotfix: fix parsePhone fn when not phone available #1028

Closed
jsegarra wants to merge 2 commits from hotfix_parsePhone into master
3 changed files with 28 additions and 11 deletions

View File

@ -2,6 +2,7 @@
import { reactive, useAttrs, onBeforeMount, capitalize } from 'vue';
import axios from 'axios';
import { parsePhone } from 'src/filters';
import useOpenURL from 'src/composables/useOpenURL';
const props = defineProps({
phoneNumber: { type: [String, Number], default: null },
channel: { type: Number, default: null },
@ -11,25 +12,31 @@ const config = reactive({
sip: { icon: 'phone', href: `sip:${props.phoneNumber}` },
'say-simple': {
icon: 'vn:saysimple',
href: null,
channel: props.channel,
url: null,
},
});
const type = Object.keys(config).find((key) => key in useAttrs()) || 'sip';
onBeforeMount(async () => {
let { channel } = config[type];
let { channel, url } = config[type];
if (type === 'say-simple') {
const { url, defaultChannel } = (await axios.get('SaySimpleConfigs/findOne'))
.data;
if (!channel) channel = defaultChannel;
config[type].href = `${url}?customerIdentity=%2B${parsePhone(
props.phoneNumber
)}&channelId=${channel}`;
const { url: defaultUrl, defaultChannel } = (
await axios.get('SaySimpleConfigs/findOne')
).data;
if (!channel) config[type].channel = defaultChannel;
if (!url) config[type].url = defaultUrl;
}
});
function openSaySimple() {
useOpenURL(
`${config[type].url}?customerIdentity=%2B${parsePhone(
props.phoneNumber
)}&channelId=${config[type].channel}`
);
}
</script>
<template>
<QBtn
@ -40,8 +47,7 @@ onBeforeMount(async () => {
size="sm"
color="primary"
padding="none"
:href="config[type].href"
@click.stop
@click.stop="openSaySimple"
>
<QTooltip>
{{ capitalize(type).replace('-', '') }}

View File

@ -1,4 +1,7 @@
export default function (phone, prefix = 34) {
if (!phone) {
return;
}
if (phone.startsWith('+')) {
return `${phone.slice(1)}`;
}

View File

@ -2,6 +2,14 @@ import { describe, it, expect } from 'vitest';
import parsePhone from 'src/filters/parsePhone';
describe('parsePhone filter', () => {
it('no phone', () => {
const resultado = parsePhone(null, '34');
expect(resultado).toBe(undefined);
});
it('no phone and no prefix', () => {
const resultado = parsePhone(null, null);
expect(resultado).toBe(undefined);
});
it("adds prefix +34 if it doesn't have one", () => {
const resultado = parsePhone('123456789', '34');
expect(resultado).toBe('34123456789');