Resolve conflicts
gitea/hedera-web/pipeline/pr-4922-vueMigration This commit looks good
Details
gitea/hedera-web/pipeline/pr-4922-vueMigration This commit looks good
Details
This commit is contained in:
commit
401487dfd3
|
@ -4,7 +4,7 @@ import messages from 'src/i18n';
|
||||||
|
|
||||||
const i18n = createI18n({
|
const i18n = createI18n({
|
||||||
locale: navigator.language || navigator.userLanguage,
|
locale: navigator.language || navigator.userLanguage,
|
||||||
fallbackLocale: 'en',
|
fallbackLocale: 'en-US',
|
||||||
globalInjection: true,
|
globalInjection: true,
|
||||||
missingWarn: false,
|
missingWarn: false,
|
||||||
fallbackWarn: false,
|
fallbackWarn: false,
|
||||||
|
@ -17,7 +17,6 @@ const i18n = createI18n({
|
||||||
export default boot(({ app }) => {
|
export default boot(({ app }) => {
|
||||||
// Set i18n instance on app
|
// Set i18n instance on app
|
||||||
app.use(i18n);
|
app.use(i18n);
|
||||||
window.i18n = i18n.global;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export { i18n };
|
export { i18n };
|
||||||
|
|
|
@ -72,6 +72,15 @@ export default {
|
||||||
items: 'Artículos',
|
items: 'Artículos',
|
||||||
config: 'Configuración',
|
config: 'Configuración',
|
||||||
user: 'Usuario',
|
user: 'Usuario',
|
||||||
|
password: 'Contraseña',
|
||||||
|
remindMe: 'Recuérdame',
|
||||||
|
logInAsGuest: 'Entrar como invitado',
|
||||||
|
logIn: 'Iniciar sesión',
|
||||||
|
loginMail: 'info@verdnatura.es',
|
||||||
|
loginPhone: '+34 963 242 100',
|
||||||
|
haveForgottenPassword: '¿Has olvidado tu contraseña?',
|
||||||
|
notACustomerYet: '¿Todavía no eres cliente?',
|
||||||
|
signUp: 'Registrarme',
|
||||||
addresses: 'Direcciones',
|
addresses: 'Direcciones',
|
||||||
addressEdit: 'Editar dirección',
|
addressEdit: 'Editar dirección',
|
||||||
dataSaved: 'Datos guardados',
|
dataSaved: 'Datos guardados',
|
||||||
|
|
|
@ -1,33 +1,169 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
|
import { ref, inject, onMounted, watch } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRouter, useRoute } from 'vue-router';
|
||||||
|
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
|
import VnForm from 'src/components/common/VnForm.vue';
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
const jApi = inject('jApi');
|
||||||
|
|
||||||
|
const vnFormRef = ref(null);
|
||||||
|
const countriesOptions = ref([]);
|
||||||
|
const provincesOptions = ref([]);
|
||||||
|
const pks = { id: route.params.id };
|
||||||
|
const isEditMode = route.params.id !== '0';
|
||||||
|
const fetchAddressDataSql = {
|
||||||
|
query: `
|
||||||
|
SELECT a.id, a.street, a.nickname, a.city, a.postalCode, a.provinceFk, p.countryFk
|
||||||
|
FROM myAddress a
|
||||||
|
LEFT JOIN vn.province p ON p.id = a.provinceFk
|
||||||
|
WHERE a.id = #address
|
||||||
|
`,
|
||||||
|
params: { address: route.params.id }
|
||||||
|
};
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => vnFormRef?.value?.formData?.countryFk,
|
||||||
|
async val => await getProvinces(val)
|
||||||
|
);
|
||||||
|
|
||||||
|
const goBack = () => router.push({ name: 'AddressesList' });
|
||||||
|
|
||||||
|
const getCountries = async () => {
|
||||||
|
countriesOptions.value = await jApi.query(
|
||||||
|
`SELECT id, name FROM vn.country
|
||||||
|
ORDER BY name`
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const getProvinces = async countryFk => {
|
||||||
|
if (!countryFk) return;
|
||||||
|
provincesOptions.value = await jApi.query(
|
||||||
|
`SELECT id, name FROM vn.province
|
||||||
|
WHERE countryFk = #id
|
||||||
|
ORDER BY name`,
|
||||||
|
{ id: countryFk }
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(() => getCountries());
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<QPage class="q-pa-md flex justify-center">
|
||||||
<Teleport :to="$actions">
|
<Teleport :to="$actions">
|
||||||
<QBtn icon="close" :label="t('back')" rounded no-caps />
|
<QBtn
|
||||||
<QBtn icon="check" :label="t('accept')" rounded no-caps />
|
:label="t('back')"
|
||||||
|
icon="close"
|
||||||
|
rounded
|
||||||
|
no-caps
|
||||||
|
@click="goBack()"
|
||||||
|
/>
|
||||||
</Teleport>
|
</Teleport>
|
||||||
<QPage>//TODO: VISTA A DESARROLLAR!</QPage>
|
<VnForm
|
||||||
|
ref="vnFormRef"
|
||||||
|
:fetchFormDataSql="fetchAddressDataSql"
|
||||||
|
:columnsToIgnoreUpdate="['countryFk']"
|
||||||
|
:createModelDefault="{
|
||||||
|
field: 'clientFk',
|
||||||
|
value: 'account.myUser_getId()'
|
||||||
|
}"
|
||||||
|
:pks="pks"
|
||||||
|
:isEditMode="isEditMode"
|
||||||
|
:title="t('addEditAddress')"
|
||||||
|
table="myAddress"
|
||||||
|
schema="hedera"
|
||||||
|
@onDataSaved="goBack()"
|
||||||
|
>
|
||||||
|
<template #form="{ data }">
|
||||||
|
<VnInput v-model="data.nickname" :label="t('name')" />
|
||||||
|
<VnInput v-model="data.street" :label="t('address')" />
|
||||||
|
<VnInput v-model="data.city" :label="t('city')" />
|
||||||
|
<VnInput v-model="data.postalCode" :label="t('postalCode')" />
|
||||||
|
<VnSelect
|
||||||
|
v-model="data.countryFk"
|
||||||
|
:label="t('country')"
|
||||||
|
:options="countriesOptions"
|
||||||
|
@update:modelValue="data.provinceFk = null"
|
||||||
|
/>
|
||||||
|
<VnSelect
|
||||||
|
v-model="data.provinceFk"
|
||||||
|
:label="t('province')"
|
||||||
|
:options="provincesOptions"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</VnForm>
|
||||||
|
</QPage>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped></style>
|
<style lang="scss" scoped>
|
||||||
|
.form-container {
|
||||||
|
width: 100%;
|
||||||
|
height: max-content;
|
||||||
|
max-width: 544px;
|
||||||
|
padding: 32px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<i18n lang="yaml">
|
<i18n lang="yaml">
|
||||||
en-US:
|
en-US:
|
||||||
back: Back
|
back: Back
|
||||||
accept: Accept
|
accept: Accept
|
||||||
|
addEditAddress: Add or edit address
|
||||||
|
name: Consignee
|
||||||
|
address: Address
|
||||||
|
city: City
|
||||||
|
postalCode: Zip code
|
||||||
|
country: Country
|
||||||
|
province: Province
|
||||||
|
addressChangedSuccessfully: Address changed successfully
|
||||||
es-ES:
|
es-ES:
|
||||||
back: Volver
|
back: Volver
|
||||||
accept: Aceptar
|
accept: Aceptar
|
||||||
|
addEditAddress: Añadir o modificar dirección
|
||||||
|
name: Consignatario
|
||||||
|
address: Morada
|
||||||
|
city: Ciudad
|
||||||
|
postalCode: Código postal
|
||||||
|
country: País
|
||||||
|
province: Distrito
|
||||||
|
addressChangedSuccessfully: Dirección modificada correctamente
|
||||||
ca-ES:
|
ca-ES:
|
||||||
back: Tornar
|
back: Tornar
|
||||||
accept: Acceptar
|
accept: Acceptar
|
||||||
|
addEditAddress: Afegir o modificar adreça
|
||||||
|
name: Consignatari
|
||||||
|
address: Direcció
|
||||||
|
city: Ciutat
|
||||||
|
postalCode: Codi postal
|
||||||
|
country: País
|
||||||
|
province: Província
|
||||||
|
addressChangedSuccessfully: Adreça modificada correctament
|
||||||
fr-FR:
|
fr-FR:
|
||||||
back: Retour
|
back: Retour
|
||||||
accept: Accepter
|
accept: Accepter
|
||||||
|
addEditAddress: Ajouter ou modifier l'adresse
|
||||||
|
name: Destinataire
|
||||||
|
address: Numéro Rue
|
||||||
|
city: Ville
|
||||||
|
postalCode: Code postal
|
||||||
|
country: Pays
|
||||||
|
province: Province
|
||||||
|
addressChangedSuccessfully: Adresse modifié avec succès
|
||||||
pt-PT:
|
pt-PT:
|
||||||
back: Voltar
|
back: Voltar
|
||||||
accept: Aceitar
|
accept: Aceitar
|
||||||
|
addEditAddress: Adicionar ou modificar morada
|
||||||
|
name: Consignatario
|
||||||
|
address: Morada
|
||||||
|
city: Concelho
|
||||||
|
postalCode: Código postal
|
||||||
|
country: País
|
||||||
|
province: Distrito
|
||||||
|
addressChangedSuccessfully: Morada modificada corretamente
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
|
@ -128,7 +128,7 @@ onMounted(async () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
<QItemSection class="actions-wrapper invisible" side>
|
<QItemSection class="actions-wrapper" side>
|
||||||
<QBtn
|
<QBtn
|
||||||
icon="delete"
|
icon="delete"
|
||||||
flat
|
flat
|
||||||
|
@ -154,9 +154,14 @@ onMounted(async () => {
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.address-item:hover {
|
.address-item {
|
||||||
.actions-wrapper {
|
.actions-wrapper {
|
||||||
visibility: visible !important;
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
.actions-wrapper {
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,3 +1,38 @@
|
||||||
|
<script setup>
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { userStore } from 'stores/user';
|
||||||
|
import { onMounted, ref } from 'vue';
|
||||||
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
|
import { useRouter, useRoute } from 'vue-router';
|
||||||
|
const { notify } = useNotify();
|
||||||
|
|
||||||
|
const t = useI18n();
|
||||||
|
const user = userStore();
|
||||||
|
const route = useRoute();
|
||||||
|
const router = useRouter();
|
||||||
|
const email = ref(null);
|
||||||
|
const password = ref(null);
|
||||||
|
const remember = ref(false);
|
||||||
|
const showPwd = ref(false);
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
if (route.query.emailConfirmed !== undefined) {
|
||||||
|
notify({
|
||||||
|
message: t('emailConfirmedSuccessfully'),
|
||||||
|
type: 'positive'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (route.params.email) {
|
||||||
|
email.value = route.params.email;
|
||||||
|
password.value.focus();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
async function onLogin() {
|
||||||
|
await user.login(email.value, password.value, remember.value);
|
||||||
|
router.push('/');
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="main">
|
<div class="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
|
@ -10,9 +45,8 @@
|
||||||
<QInput v-model="email" :label="$t('user')" autofocus />
|
<QInput v-model="email" :label="$t('user')" autofocus />
|
||||||
<QInput
|
<QInput
|
||||||
v-model="password"
|
v-model="password"
|
||||||
ref="password"
|
|
||||||
:label="$t('password')"
|
:label="$t('password')"
|
||||||
:type="showPwd ? 'password' : 'text'"
|
:type="!showPwd ? 'password' : 'text'"
|
||||||
>
|
>
|
||||||
<template v-slot:append>
|
<template v-slot:append>
|
||||||
<QIcon
|
<QIcon
|
||||||
|
@ -69,7 +103,11 @@
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<p class="contact">
|
<p class="contact">
|
||||||
{{ $t('loginPhone') }} · {{ $t('loginMail') }}
|
<a :href="`tel:${$t('loginPhone')}`">
|
||||||
|
{{ $t('loginPhone') }}
|
||||||
|
</a>
|
||||||
|
·
|
||||||
|
<a :href="`mailto:${$t('loginMail')}`">{{ $t('loginMail') }}</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -121,44 +159,6 @@ a {
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
|
||||||
import { userStore } from 'stores/user';
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'VnLogin',
|
|
||||||
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
user: userStore(),
|
|
||||||
email: '',
|
|
||||||
password: '',
|
|
||||||
remember: false,
|
|
||||||
showPwd: true
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
mounted() {
|
|
||||||
if (this.$route.query.emailConfirmed !== undefined) {
|
|
||||||
this.$q.notify({
|
|
||||||
message: this.$t('emailConfirmedSuccessfully'),
|
|
||||||
type: 'positive'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (this.$route.params.email) {
|
|
||||||
this.email = this.$route.params.email;
|
|
||||||
this.$refs.password.focus();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
async onLogin() {
|
|
||||||
await this.user.login(this.email, this.password, this.remember);
|
|
||||||
this.$router.push('/');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<i18n lang="yaml">
|
<i18n lang="yaml">
|
||||||
en-US:
|
en-US:
|
||||||
user: User
|
user: User
|
|
@ -6,7 +6,7 @@ const routes = [
|
||||||
{
|
{
|
||||||
name: 'Login',
|
name: 'Login',
|
||||||
path: '/login/:email?',
|
path: '/login/:email?',
|
||||||
component: () => import('pages/Login/Login.vue')
|
component: () => import('pages/Login/LoginView.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'rememberPassword',
|
name: 'rememberPassword',
|
||||||
|
|
Loading…
Reference in New Issue