about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/components/column_header.js
AgeCommit message (Collapse)Author
2023-02-25[Glitch] Rename JSX files with proper `.jsx` extensionRenaud Chaput
Port 44a7d87cb1f5df953b6c14c16c59e2e4ead1bcb9 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2023-02-03[Glitch] Run eslint --fixClaire
I don't like it changing files this way, but it's basically what c49213f0ea311daba590db1d7a14a641cbd9fe93 and a few others did.
2022-11-10[Glitch] Remove aria-pressed where it's redundantSasha Sorokin
Port d055d751720b7494ba990a43434b73e17596b5e8 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2022-11-07[Glitch] Fix JavaScript console error on Getting Started columnSunny Ripert
Port ffe735344bb47ad2af743ad97729db9ea9c11f60 to glitch-soc Co-authored-by: Ilias Tsangaris <iliastsangaris@gmail.com> Co-authored-by: Ilias Tsangaris <iliastsangaris@gmail.com> Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2022-10-09[Glitch] Fix various issues with logged-out Web UIEugen Rochko
Port fixes from e623c302d5d4dfc05689eb8fb8e051e30fc38ec8 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2021-10-06[Glitch] Improve hover and focus style in columns settingsMélanie Chauvel
Port 900481b7fa638119b826ed888fc8eaca962ecf55 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2020-10-21[Glitch] Fix browser notification permission request logicThibG
Port f54ca3d08e068af07a5b7a8b139e7658b3236db8 to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
2020-01-26Refactor notifications cleaning modeThibaut Girka
2020-01-25[Glitch] Fix “new items glow” being displayed above settings and ↵ThibG
announcements Port 90b13ffd009a431dbe98c37bc92ee59a6f0535f2 to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
2019-10-11[Glitch] Fix crash when switching back/from mobile layoutThibG
Port 91582937f34c74dd76dabe7253864da8565f227e to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
2019-10-06[Glitch] Fix thread column showing pin buttonEugen Rochko
Port 129bc871a0dc9e49900692a0b88d8d5700d9752a to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
2019-10-05[Glitch] Fix column header scrolling with the pageEugen Rochko
Port 706a48ee1f2075ffb35ad4ad9cfc2f23fffbffcb to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
2019-09-09Use the `Icon` component instead of directly using `i` tagThibaut Girka
2019-09-09Move “export” before decoratorsThibaut Girka
As this is what upstream does. See also https://github.com/tc39/proposal-decorators/issues/69
2019-04-17Shift+click on column Back button to return to last pinable columnThibaut Girka
2018-12-20[Glitch] Back to the getting-started when pins the timelineThibaut Girka
Port 5bf100f87be571e86305f3ab244183fc46f1ede2 to glitch-soc
2018-05-31Use history.state to decide whether we should goBack() or go to / (fixes #247)Thibaut Girka
So far, glitch-soc used history.length to decide whether to call `goBack()` or go to / in order to not leave the webUI. This made clicking the “Back” button go to the “Getting started” column instead of going back in the browser's history when such an action would leave the web UI, but also when: - The WebUI is refreshed (F5) - A tab is restored - The history length reaches its maximum (e.g., 50 in Firefox) This commit fixes these shortcomings by checking `window.history.state`. Indeed, we only want to go back in the browser's history when the current location has been reached from within the WebUI, which only happens via `pushState` as far as I know. Since browser store the serialized state in the browser history, this also survives page reload and session restoration.
2018-04-22Add show more/less toggle for entire threads in web UIThibaut Girka
Inspired from b6003afcdb1b89eb967a2b211e3b4e26aed9ac9d but using component properties instead of redux store for hidden/revealed state.
2018-04-22[Glitch] Fix button hiding when header title is too longThibaut Girka
Port ffb2b8ef8c3c7cd6f57860240378fac8d5964105 to glitch-soc
2018-04-22[Glitch] Fix column headers accessibilityThibaut Girka
Port 08e4c78e78358c2847967e9cc34b4a6497be97e2 to glitch-soc. SCSS fix inspired by 69f13e7bca90f4855e05a49dd69bba66f843134a.
2017-12-03Rename themes -> flavours ? ?kibigo!