The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client
Douglas Fabris 1f6a73a895
[FIX] Custom status doesn't update properly (#23860)
4 years ago
..
UIKit/hooks [IMPROVE] Throw error if no appId is provided to useUIKitHandleAction (#23221) 4 years ago
components Regression: Toolbox render item (#23862) 4 years ago
contexts [IMPROVE] Stricter API types (#23735) 4 years ago
hooks [IMPROVE] Rewrite remove room invite modal #23781 4 years ago
lib [FIX] Modal keeps state if reset too fast. (#23791) 4 years ago
methods Chore: Remove useCallbacks (#23696) 4 years ago
polyfills Chore: Meteor 2.2 and bump dependencies (#22399) 4 years ago
providers [IMPROVE] Stricter API types (#23735) 4 years ago
sidebar [FIX] Custom status doesn't update properly (#23860) 4 years ago
startup Regression: Fix incorrect API path for Livechat calls (#23778) 4 years ago
templateHelpers Chore: Move client helpers (#23178) 4 years ago
views [FIX] Translations for App Select Settings not working (#23908) 4 years ago
.eslintrc.js [IMPROVE] Engagement Dashboard (#23547) 4 years ago
.prettierrc [NEW] New set of rules for client code (#21318) 4 years ago
README.md Chore: Doc Client Readme (#21588) 4 years ago
head.html Depack: Use mainModule for root files (#13508) 6 years ago
importPackages.ts Chore: Replace `promises` helper (#23488) 4 years ago
main.ts [NEW][Enterprise] Second layer encryption for data transport (alpha) (#21692) 4 years ago
templates.ts [NEW] Stream to get individual presence updates (#22950) 4 years ago

README.md

How does the folder structure work in the frontend?

The folder structure should follow rocketchat's html 'semantics' like:

    main   -> room
                -> header
                    ...
                -> contextualbar
                    roominfo
                        ...
            -> sidebar
                -> Header
                    -> search
                    -> actions
                        ...
                -> list
                    ...
                -> footer
                    ...

Each folder is composed by:

File
index.jsx
ContainerComponent.jsx
contexts (optional)
providers (optional)
components (optional)
hooks (optional)
libs (optional)

We strongly suggest that you start developing your components/hooks/libs inside the folder where they will be directly used. If you ever find that you will use them in more than one place, then you should "promote" the code to an upper level, where it can be commonly accessed by all others

we have being moving code from blaze to react, but sometimes we will need render under blaze enviroment, to do that use createTemplateForComponent