⚡ Me dicen Belen 👋 y espero que estes teniendo un dia excelente. Me inclino hacia una vision innovadora, apasionada por conquistar los objetivos, superarme dia a dia y enfocarme en las mejores soluciones personalizadas para cada cliente. Soy Salesforce Developer, abogada y una persona que disfruta explorar las nuevas herramientas que nos da la inteligencia artificial. Te invito a seguirme en mis redes y hablar un rato sobre el mundo IT!⚡
APEX, LWC, IA, PYTON, SOQL, SQL, SOSL, JS, HTML, CSS, DML, TEST, TRIGGER, WRAPPER, Salesforce Platform, Einstein Bot, Flows...
Y alguna más...
|
|
|
|
public with sharing class SalesforceDeveloper {
@AuraEnabled(Cacheable=true)
public static Salesforce_Developer__c getSalesforceDeveloper(Id BelenBanegasId) {
return [
SELECT Name, Linkedin__c, Email, Skills__c, Company__c
FROM Salesforce_Developer__c
WHERE Id =: BelenBanegasId
]
}
}import { LightningElement, wire, api } from 'lwc';
import getSalesforceDeveloper from '@salesforce/apex/SalesforceDeveloper.getSalesforceDeveloper';
import { publish, MessageContext } from 'lightning/messageService';
import Hiring from '@salesforce/messageChannel/HiringMessageChannel__c';
import { ShowToastEvent } from 'lightning/platformShowToastEvent'
export default class Dev extends LightningElement {
@wire(MessageContext)
@api
BelenBanegasId;
hired;
@wire(getSalesforceDeveloper, { BelenBanegasId: '005Dp000002JTwJIAW' })
_getSalesforceDeveloper({data, error}) {
if (data) {
this.hired = {
Name: 'María Belen Banegas',
Linkedin__c:'https://www.linkedin.com/in/belen-banegas-a33830a7/',
Email: '[email protected]',
Skills__c: ['Salesforce Platform', 'APEX', 'Trigger', 'LWC', 'Flow',
'SOQL', 'DML', 'GIT & GITHUB', 'Test', 'Google Calendar', 'Notion', 'Trello', 'Prompt Engineering', 'Other'],
Company__c: undefined
}
this.handleDevSelect();
this.error = undefined;
} else {
this.error = error;
this.hired = undefined;
}
}
handleDevSelect() {
const payload = {`Has seleccionado el Perfil de ${hired.Name} como su Salesforce Developer` };
publish(this.messageContext, Hiring, payload);
}
showSuccess() {
const event = new ShowToastEvent({
title: 'Gratitude',
message: 'Gracias por leer mi perfil, que tengas lindo día!',
variant: 'success'
});
this.dispatchEvent(event);
}
}

