Category: Have Code

SPFx 1.19.0: Desmitify Error – [webpack] ‘dist’: [Object Objet]

August 26, 2024 By Joao LIVIO

I was exploring SharePoint Framework 1.19.0 and noticed some controversy surrounding this error. In my understanding, it is an annoying behavior but this issue is not a bug in the chain or in the Reusable React controls for your SharePoint Framework solutions v3.19.0, nor in the Reusable property pane controls for the SharePoint Framework solutions […]

Harnessing the Power of Automation: Creating a Custom Connector for a LOB HR System in Power Automate

June 14, 2024 By Joao LIVIO

Introduction In the digital age, automation is no longer a luxury but a necessity. Businesses are constantly looking for ways to streamline their operations and improve efficiency. One such tool that has been making waves in the world of business automation is Microsoft Power Automate. Power Automate allows you to create automated workflows between your […]

Test-Driven Development in SharePoint Framework Projects Use Case

May 23, 2024 By Joao LIVIO

Introduction In the fast-paced world of software development, ensuring code quality and functionality is paramount. Test-Driven Development (TDD) offers a robust foundation for building reliable SharePoint Framework (SPFx) solutions. By integrating TDD into your SPFx projects, you can enhance code quality, facilitate maintenance, and streamline the development process. Understanding TDD and SPFx TDD is a […]

Testing SharePoint Framework (SPFx) Components with Jest and React Testing Library

April 30, 2024 By Joao LIVIO

Introduction Testing is a crucial aspect of any software development process, including SharePoint Framework (SPFx) development. Here are some reasons why testing is important: Testing is an essential part of SPFx development. It helps ensure the quality, reliability, and performance of your components, leading to a better end product and a smoother user experience. How […]

Demystifying DTOs, Mappers, and When to Use AutoMapper, C# and TypeScript

April 25, 2024 By Joao LIVIO

In modern software development, especially in projects following the principles of clean architecture and domain-driven design, the proper management of data transfer objects (DTOs) becomes crucial. DTOs help in decoupling the internal domain model from the external world, ensuring flexibility, scalability, and maintainability of the application. However, managing DTOs manually can become tedious, especially in […]