aboutsummaryrefslogtreecommitdiff
path: root/components/buffer-list.js (follow)
Commit message (Collapse)AuthorAgeFilesLines
* components/buffer-list: show realname as tooltipSimon Ser2024-02-201-2/+12
|
* components/buffer-list: show buffers with errors in redSimon Ser2022-09-051-1/+10
|
* components/buffer-list: remove pointless temporary variableSimon Ser2022-02-041-3/+2
|
* Move isBouncer props to server stateSimon Ser2021-12-071-2/+1
| | | | Avoids having to pass this around.
* Refactor ISUPPORT handlingSimon Ser2021-12-071-1/+1
| | | | | | Add a helper class to parse ISUPPORT tokens. Instead of having manual ISUPPORT handling all over the place, use pre-processed values.
* Close buffer tabs on middle clickSimon Ser2021-10-171-1/+12
|
* s/var/let/Simon Ser2021-06-101-6/+6
|
* s/network/server/Simon Ser2021-06-031-5/+5
| | | | Closes: https://todo.sr.ht/~emersion/gamja/46
* Pretty-print buffer name in buffer headerSimon Ser2021-05-311-17/+1
|
* Re-fold HTML in BufferListSimon Ser2021-05-311-1/+9
|
* Add UI to add a new bouncer networkSimon Ser2021-05-251-5/+2
|
* Indent channels and nicks in buffer listSimon Ser2021-05-251-5/+6
|
* Add support for the soju.im/bouncer-networks extensionSimon Ser2021-05-251-15/+25
|
* Make all resource paths relativeSimon Ser2021-03-021-3/+3
| | | | Closes: https://todo.sr.ht/~emersion/gamja/17
* Use buffer ID in BufferItem.onBufferClickSimon Ser2021-01-221-1/+1
|
* Extract network name from ISUPPORTSimon Ser2021-01-221-2/+20
|
* Introduce buffer IDsSimon Ser2021-01-211-1/+1
|
* Sort buffers when inserting, not when renderingSimon Ser2020-08-031-18/+1
| | | | | This allows all state.buffers users to iterate over the list in the correct order.
* Add message URLs, unify URL generationSimon Ser2020-07-151-15/+2
|
* Don't use `this` in functional componentsSimon Ser2020-07-091-1/+1
| | | | This works in preact, but doesn't with react.
* Rename sidebar and topbarSimon Ser2020-06-261-1/+1
|
* Set key attr in buffer list itemsSimon Ser2020-06-261-1/+1
|
* Sort buffers and membersSimon Ser2020-06-261-1/+19
|
* Convert server/channel/nick links to irc:// schemeSimon Ser2020-06-261-1/+14
|
* Introduce buffer typeSimon Ser2020-06-261-2/+2
|
* Mark buffers as unread on new messageSimon Ser2020-06-241-2/+10
|
* Switch to reactSimon Ser2020-06-241-0/+29
Under the hood, preact is used to reduce dependency size. We still don't have a build stage, so htm is used instead of JSX.