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
gabriellsh ac7791a493
regression: Team Channels actions (#21417)
5 years ago
..
UIKit/hooks [NEW] New set of rules for client code (#21318) 5 years ago
components [Improve] Do not require pre-configured tags in Omnichannel chats (#21488) 5 years ago
contexts [FIX] Allows more than 25 discussions/files to be loaded in the contextualbar (#21511) 5 years ago
hooks [FIX] Remove size prop from StatusBullet component (#21428) 5 years ago
lib Regression: React + Blaze reconciliation (#21567) 5 years ago
methods [NEW] New set of rules for client code (#21318) 5 years ago
polyfills [NEW] New set of rules for client code (#21318) 5 years ago
providers A React-based replacement for BlazeLayout (#21527) 5 years ago
sidebar regression: Team Channels actions (#21417) 5 years ago
startup A React-based replacement for BlazeLayout (#21527) 5 years ago
templateHelpers Message parsing and rendering - Phase 1 (#19654) 5 years ago
types A React-based replacement for BlazeLayout (#21527) 5 years ago
views regression: Team Channels actions (#21417) 5 years ago
.eslintrc.js A React-based replacement for BlazeLayout (#21527) 5 years ago
.prettierrc [NEW] New set of rules for client code (#21318) 5 years ago
README.md Frontend folder structure (#19631) 5 years ago
head.html Depack: Use mainModule for root files (#13508) 7 years ago
importPackages.ts [NEW] New set of rules for client code (#21318) 5 years ago
main.ts [NEW] New set of rules for client code (#21318) 5 years ago
templates.ts Regression: React + Blaze reconciliation (#21567) 5 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: 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