Businesses
Here you will find information about businesses, comments, infinite scroll lib
Like many other entities BusinessEntity
connected to teamId, so only members of certain team will access to it. Also it connected @ManyToMany
to LeadEntity
so leads can be connected to many busineeses. Each business can have contactPerson field, which is @OnetoOne
relation with TeamMembershipEntity
. Relation isn't with UserEntity
because each user can have many memberships which will be connected to different businesses.
BusinessEntity
support:
Soft delete
Multi delete, restore, archive
Global search
CRUD
Photo CRUD
Audit logs
Comments
Business logs will record if a lead was assigned or unassigned to them.
Comments
On each business any member have ability to leave comments, delete and edit own comments. Each edit, delete action is monitored by audit logs, also each edited comment will have preposition "edited".
On frontend you can find logs and comments in BusinessPreview
. All comments, logs sorted by createdAt
field descend always. Both logs and comment are implemented with InfiniteScroll
library.
Here you can see example of usage InfiniteScroll
component:
Props explanation:
ref - reference made with useRef() hook to have ability to scroll from code (to top for example)
dataLength - count of records used by lib to calculate optimal scroll height
next - function which is used to fetch next record when we scrolled to bottom enough
hasMore - bollean value which tells library if it is necessary to call next() function more
height - pixel height of scrollable container
loader - jsx which is shown at the bottom when we fetching records
handleScroll - fucntion which is called every time we are scrolling
style - css styling of container
For correct data fetching, we need to know how many records to skip, which can be determined by the number of records already on the page. Additionally, we need to keep the hasMore
state updated. If the server doesn't send any records or sends fewer than requested, we can set hasMore
to false
. To maintain the correct order of records, we spread the previous logs and append the newly received records.
Code example:
Getting logs and comments together in right order
To achieve the correct order by createdAt
, we should fetch twice the requested number of records from both entities. This handles cases where, for example, we request 20 records (10 logs, 10 comments) but one entity has all 20 records created earlier than the other. We then combine the records into one array and sort them by createdAt
. Afterward, we count the number of each record type to provide the correct count to the frontend. Finally, we slice the array to 20 records and return it.
Code example:
Lead page has same logic with logs and comments
Last updated