@salla.sa/twilight-components
Version:
Salla Web Component
286 lines (280 loc) • 15.3 kB
JavaScript
/*!
* Crafted with ❤ by Salla
*/
import { proxyCustomElement, HTMLElement, h } from '@stencil/core/internal/client';
import { C as CameraIcon } from './camera.js';
import { d as defineCustomElement$6 } from './salla-button2.js';
import { d as defineCustomElement$5 } from './salla-datetime-picker2.js';
import { d as defineCustomElement$4 } from './salla-file-upload2.js';
import { d as defineCustomElement$3 } from './salla-skeleton2.js';
import { d as defineCustomElement$2 } from './salla-tel-input2.js';
var Genders;
(function (Genders) {
Genders["Female"] = "female";
Genders["Male"] = "male";
})(Genders || (Genders = {}));
var FormFieldTypes;
(function (FormFieldTypes) {
FormFieldTypes["Photo"] = "photo";
FormFieldTypes["Text"] = "Text";
})(FormFieldTypes || (FormFieldTypes = {}));
const sallaUserProfileCss = ":host{display:block}";
const SallaUserProfile$1 = /*@__PURE__*/ proxyCustomElement(class SallaUserProfile extends HTMLElement {
// Constructor
constructor() {
super();
this.__registerHost();
/**
* The minimum allowed age for a user. Users with a birthdate indicating an age less than this value will be considered invalid.
* Defaults to 10.
* @type {number}
*/
this.minAge = 10;
this.isEditable = true;
this.disableAction = false;
this.isLoading = true;
// Translated Strings State
this.first_name_trans = salla.lang.get('pages.profile.first_name');
this.last_name_trans = salla.lang.get('pages.profile.last_name');
this.birthday_trans = salla.lang.get('pages.profile.birthday');
this.birthday_placeholder_trans = salla.lang.get('pages.profile.birthday_placeholder');
this.gender_trans = salla.lang.get('pages.profile.gender');
this.gender_placeholder_trans = salla.lang.get('pages.profile.gender_placeholder');
this.male_trans = salla.lang.get('pages.profile.male');
this.female_trans = salla.lang.get('pages.profile.female');
this.email_trans = salla.lang.get('common.elements.email');
this.mobile_trans = salla.lang.get('common.elements.mobile');
this.save_btn_trans = salla.lang.get('common.elements.save');
this.drag_and_drop_trans = salla.lang.get('common.uploader.drag_and_drop');
this.browse_trans = salla.lang.get('common.uploader.browse');
this.email_required_trans = salla.lang.get('pages.checkout.email_required');
this.invalid_email_trans = salla.lang.get('pages.error.invalid_value', {
attribute: 'email',
});
// Localization setup when the language is loaded
salla.lang.onLoaded(() => {
// Assigning translated strings to state properties
// These translations are fetched from the localization object
this.first_name_trans = salla.lang.get('pages.profile.first_name');
this.last_name_trans = salla.lang.get('pages.profile.last_name');
this.birthday_trans = salla.lang.get('pages.profile.birthday');
this.birthday_placeholder_trans = salla.lang.get('pages.profile.birthday_placeholder');
this.gender_trans = salla.lang.get('pages.profile.gender');
this.gender_placeholder_trans = salla.lang.get('pages.profile.gender_placeholder');
this.male_trans = salla.lang.get('pages.profile.male');
this.female_trans = salla.lang.get('pages.profile.female');
this.email_trans = salla.lang.get('common.elements.email');
this.mobile_trans = salla.lang.get('common.elements.mobile');
this.save_btn_trans = salla.lang.get('common.elements.save');
this.drag_and_drop_trans = salla.lang.get('common.uploader.drag_and_drop');
this.browse_trans = salla.lang.get('common.uploader.browse');
this.email_required_trans = salla.lang.get('pages.checkout.email_required');
this.invalid_email_trans = salla.lang.get('pages.error.invalid_value', {
attribute: 'email',
});
});
}
/**
* Sets custom fields for the component. Can be handy for non HTML usage.
*
* @param fields - An array of custom fields.
*/
async setCustomFields(fields) {
this.userDefinedFields = fields;
}
// Event handler for phone number field changes
phoneNumberFieldEventHandler(data) {
if (!data.detail.number) {
return (this.disableAction = true);
}
this.userData.phone.number = parseInt(data.detail.number);
this.userData.phone.country = data.detail.country_code;
this.disableAction = false;
}
// Event handler for generic field changes
handleFieldChange(key, event, required = false) {
if (event.target.value) {
this.userData[key] = event.target.value;
this.disableAction = false;
}
else {
if (required) {
this.disableAction = true;
}
}
}
// Event handler for file upload changes
handleOnFileAdded(key, data) {
// TODO: the key in here, shall be not have whitespace. or the key for
// the field shall be provided with one of the properties of the custom field
if (!data.detail.error) {
this.userData[key] = data.detail.file;
this.disableAction = false;
}
else {
this.disableAction = true;
}
}
// Event handler for email input changes
handleEmailInput(key, event) {
const emailErrorDisplaySection = document.getElementById('email-error');
const email = event.target.value;
if (!email) {
this.disableAction = true;
return (emailErrorDisplaySection.textContent = this.email_required_trans);
}
const emailPattern = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i;
if (!emailPattern.test(email)) {
this.disableAction = true;
return (emailErrorDisplaySection.textContent = this.invalid_email_trans);
}
emailErrorDisplaySection.textContent = '';
this.userData[key] = email;
this.disableAction = false;
}
// Helper method to trim language code from URL
trimLanguageCodeFromUrl(url, languageCode) {
const pattern = new RegExp(`^(https?://[^/]+)\\/${languageCode}(.*)`, 'i');
const match = url.replace(/\/+$/, '').match(pattern);
if (match && match.length >= 2) {
const [, baseUrl, restOfUrl] = match;
return baseUrl + restOfUrl;
}
return url;
}
// Helper method to get file upload URL
getFileUploadUrl() {
return `${this.trimLanguageCodeFromUrl(salla.config.get('store.url'), salla.config.get('user.language_code'))}/upload-image`;
}
// Render custom fields based on user-defined fields
renderCustomFields() {
if (!this.userDefinedFields) {
return '';
}
return this.userDefinedFields.map((field) => {
return (h("div", { class: "s-user-profile-field" }, h("label", { htmlFor: `${field.id}`, class: "s-user-profile-field-label" }, field.label), this.renderCustomField(field)));
});
}
renderCustomField(field) {
if (field.type !== FormFieldTypes.Photo) {
return (h("input", { type: field.type, id: `${field.id}`, value: field.value, onChange: event => this.handleFieldChange(`custom_fields[${field.id}]`, event), name: `custom_fields[${field.id}]`, class: "form-input", required: field.required }));
}
return (h("salla-file-upload", { "instant-upload": true, value: field.value, url: this.getFileUploadUrl(), name: `custom_fields[${field.id}]`, "payload-name": "image", height: "120px", onAdded: data => this.handleOnFileAdded(`custom_fields[${field.id}]`, data) }, h("div", { class: "s-user-profile-filepond-placeholder" }, h("span", { class: "s-user-profile-filepond-placeholder-icon" }, h("i", { innerHTML: CameraIcon })), h("p", { class: "s-user-profile-filepond-placeholder-text" }, this.drag_and_drop_trans), h("span", { class: "filepond--label-action" }, this.browse_trans))));
}
// Submit form method
submitForm(event) {
event.preventDefault();
this.disableAction = true;
let payload = Object.assign({}, this.userData);
delete payload.phone;
//@ts-ignore
payload['phone'] = this.userData.phone.number;
payload['country_code'] = this.userData.phone.country;
return salla.api.profile.update(payload).finally(() => (this.disableAction = false));
}
getBirthDateRestriction() {
const now = new Date();
const pastYear = now.getFullYear() - this.minAge;
now.setFullYear(pastYear);
return now;
}
fetchData() {
let customFields = null;
// Load user-defined fields and initial user data
if (this.customFields) {
customFields = typeof this.customFields === 'string'
? JSON.parse(this.customFields)
: this.customFields;
}
if (customFields && Array.isArray(customFields)) {
this.userDefinedFields = customFields;
}
return salla.api.profile
.info()
.then(resp => (this.userData = resp.data))
.finally(() => {
this.isLoading = false;
this.isEditable = !Salla.config.get('store.features').includes('sso-login');
});
}
renderLoadingSection() {
return (h("div", { class: "s-user-profile-skeleton-wrapper" }, Array.from({ length: 6 }, (_, i) => (h("salla-skeleton", { class: "skeleton-item", width: "100%", height: "50px", key: i })))));
}
componentWillLoad() {
Salla.onReady().then(() => this.fetchData());
}
render() {
if (this.isLoading) {
return this.renderLoadingSection();
}
return (h("form", { onSubmit: event => this.submitForm(event) }, h("div", { class: "s-user-profile-wrapper" }, h("div", { class: "s-user-profile-field" }, h("label", { htmlFor: "first-name", class: "s-user-profile-field-label" }, this.first_name_trans), h("input", { disabled: !this.isEditable, type: "text", name: "first_name", value: this.userData.first_name, id: "first-name", required: true, autocomplete: "first_name", class: "form-input", onChange: event => this.handleFieldChange('first_name', event) })), h("div", { class: "s-user-profile-field" }, h("label", { htmlFor: "last-name", class: "s-user-profile-field-label" }, this.last_name_trans), h("input", { disabled: !this.isEditable, type: "text", name: "last_name", value: this.userData.last_name, id: "last-name", required: true, autocomplete: "last_name", class: "form-input", onChange: event => this.handleFieldChange('last_name', event) })), h("div", { class: "s-user-profile-field" }, h("label", { htmlFor: "birthday", class: "s-user-profile-field-label" }, this.birthday_trans), h("salla-datetime-picker", { disabled: !this.isEditable, dateFormat: "Y-m-d", value: this.userData.birthday, placeholder: this.birthday_placeholder_trans, required: true, maxDate: this.getBirthDateRestriction(), name: "birthday", onPicked: event => this.handleFieldChange('birthday', event) })), h("div", { class: "s-user-profile-field" }, h("label", { htmlFor: "gender", class: "s-user-profile-field-label" }, this.gender_trans), h("select", { disabled: !this.isEditable, class: "form-input", name: "gender", required: true, onChange: event => this.handleFieldChange('gender', event) }, h("option", { value: "" }, this.gender_placeholder_trans), h("option", { value: Genders.Male, selected: this.userData.gender == Genders.Male }, this.male_trans), h("option", { value: Genders.Female, selected: this.userData.gender == Genders.Female }, this.female_trans))), h("div", { class: "s-user-profile-field" }, h("label", { htmlFor: "email", class: "s-user-profile-field-label" }, this.email_trans), h("input", { disabled: !this.isEditable, type: "email", name: "email", value: this.userData.email, id: "email", class: "form-input", required: true, onInput: event => this.handleEmailInput('email', event) }), h("p", { id: "email-error", class: "s-user-profile-field-error" })), h("div", { class: "s-user-profile-field" }, h("label", { htmlFor: "international-mobile", class: "s-user-profile-field-label" }, this.mobile_trans), h("salla-tel-input", { disabled: !this.isEditable, name: "international-mobile", "country-code": this.userData.phone.country, phone: `${this.userData.phone.number}`, onPhoneEntered: data => this.phoneNumberFieldEventHandler(data) })), this.isEditable && this.renderCustomFields()), h("salla-button", { type: "submit", loading: this.disableAction, disabled: this.disableAction || !this.isEditable, "loader-position": "end", class: "s-user-profile-submit" }, this.save_btn_trans)));
}
static get style() { return sallaUserProfileCss; }
}, [0, "salla-user-profile", {
"customFields": [1, "custom-fields"],
"minAge": [2, "min-age"],
"userData": [32],
"isEditable": [32],
"userDefinedFields": [32],
"disableAction": [32],
"isLoading": [32],
"first_name_trans": [32],
"last_name_trans": [32],
"birthday_trans": [32],
"birthday_placeholder_trans": [32],
"gender_trans": [32],
"gender_placeholder_trans": [32],
"male_trans": [32],
"female_trans": [32],
"email_trans": [32],
"mobile_trans": [32],
"save_btn_trans": [32],
"drag_and_drop_trans": [32],
"browse_trans": [32],
"email_required_trans": [32],
"invalid_email_trans": [32],
"setCustomFields": [64]
}]);
function defineCustomElement$1() {
if (typeof customElements === "undefined") {
return;
}
const components = ["salla-user-profile", "salla-button", "salla-datetime-picker", "salla-file-upload", "salla-skeleton", "salla-tel-input"];
components.forEach(tagName => { switch (tagName) {
case "salla-user-profile":
if (!customElements.get(tagName)) {
customElements.define(tagName, SallaUserProfile$1);
}
break;
case "salla-button":
if (!customElements.get(tagName)) {
defineCustomElement$6();
}
break;
case "salla-datetime-picker":
if (!customElements.get(tagName)) {
defineCustomElement$5();
}
break;
case "salla-file-upload":
if (!customElements.get(tagName)) {
defineCustomElement$4();
}
break;
case "salla-skeleton":
if (!customElements.get(tagName)) {
defineCustomElement$3();
}
break;
case "salla-tel-input":
if (!customElements.get(tagName)) {
defineCustomElement$2();
}
break;
} });
}
const SallaUserProfile = SallaUserProfile$1;
const defineCustomElement = defineCustomElement$1;
export { SallaUserProfile, defineCustomElement };
//# sourceMappingURL=salla-user-profile.js.map
//# sourceMappingURL=salla-user-profile.js.map