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
Kevin Aleman b077bac9db
feat: Use multiselectfiltered instead of multiselect on abac room sidebar (#40423)
5 hours ago
..
apps refactor: incrementally remove Meteor deps from the frontend (#40268) 1 week ago
cachedStores fix: Missing ABAC Icons on sidebar items (#39054) 2 months ago
components fix(a11y): ensure accessibility compliance in non-admin forms (#40256) 1 day ago
contexts refactor: Phase-out async state API (#37944) 4 months ago
definitions refactor: incrementally remove Meteor deps from the frontend (#40268) 1 week ago
hooks fix(useFormatDate): default Message_DateFormat to 'LL' to avoid date-fns crash (#40393) 3 days ago
lib chore(@rocket.chat/ddp-client): introduce experimental Meteor independent DDP client (re-add) (#40430) 21 hours ago
meteor chore(@rocket.chat/ddp-client): introduce experimental Meteor independent DDP client (re-add) (#40430) 21 hours ago
navbar fix(a11y): ensure accessibility compliance in non-admin forms (#40256) 1 day ago
portals refactor: Move `TooltipProvider` to `ui-client` package, reimplement document references and deduplicate portals (#40392) 2 days ago
providers chore(@rocket.chat/ddp-client): introduce experimental Meteor independent DDP client (re-add) (#40430) 21 hours ago
router feat(a11y): Add anchor-based navigation with router-level scroll support (#36292) 3 weeks ago
sidebar feat: Sidebar draft group (#38225) 1 week ago
startup chore(@rocket.chat/ddp-client): introduce experimental Meteor independent DDP client (re-add) (#40430) 21 hours ago
stores fix: Remove the delay of waiting on event on WS to consider a message sent (#38067) 4 months ago
stories refactor(eslint): Enable `react/no-children-prop` (#38170) 4 months ago
uikit/hooks chore(eslint): Consistent type imports/exports (#39341) 2 months ago
views feat: Use multiselectfiltered instead of multiselect on abac room sidebar (#40423) 5 hours ago
README.md
importPackages.ts refactor: incrementally remove Meteor deps from the frontend (#40268) 1 week ago
main.ts chore(@rocket.chat/ddp-client): introduce experimental Meteor independent DDP client (re-add) (#40430) 21 hours ago
serviceWorker.ts
ui.ts feat(a11y): Bring keyboard shortcuts to a global context (#40169) 3 weeks 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