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/apps/meteor/client
Douglas Fabris db94a20323
Chore: Refactor ReportMessage Modal to React Component (#26478)
4 years ago
..
UIKit/hooks Chore: ESLint warnings (#26504) 4 years ago
components Chore: ESLint warnings (#26504) 4 years ago
contexts Regression: Call toggle missing network disconnection state (#26237) 4 years ago
definitions Chore: ESLint warnings (#26504) 4 years ago
hooks [FIX] Decrypt E2EE messages on thread list (#26133) 4 years ago
lib Chore: ESLint warnings (#26504) 4 years ago
methods Chore: Remove TimeSync usage (#26294) 4 years ago
polyfills Chore: ESLint warnings (#26504) 4 years ago
portals [BREAK] VideoConference (#25570) 4 years ago
providers Chore: ESLint warnings (#26504) 4 years ago
sidebar Chore: Purge some unused modules (#26447) 4 years ago
startup [IMPROVE] OTR refactoring (#24757) 4 years ago
stories Chore: ESLint warnings (#26504) 4 years ago
templateHelpers Chore: move definitions to packages (#25085) 4 years ago
views Chore: Refactor ReportMessage Modal to React Component (#26478) 4 years ago
.eslintrc.json Chore: Upgrade ESLint (#26132) 4 years ago
README.md First move to monorepo 4 years ago
head.html First move to monorepo 4 years ago
importPackages.ts [NEW] Matrix Federation UX improvements (#25847) 4 years ago
main.ts Chore: RouteGroup for My Account sidebar (#25632) 4 years ago
templates.ts Remove arrow since it's no longer used (#26170) 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