Преглед изворни кода

fix(columns_area): Manually set tabs style when swiping (#4320)

master
Sorin Davidoi пре 6 година
committed by Eugen Rochko
родитељ
комит
a248be4fce
1 измењених фајлова са 9 додато и 0 уклоњено
  1. +9
    -0
      app/javascript/mastodon/features/ui/components/columns_area.js

+ 9
- 0
app/javascript/mastodon/features/ui/components/columns_area.js Прегледај датотеку

@@ -56,6 +56,15 @@ export default class ColumnsArea extends ImmutablePureComponent {

handleSwipe = (index) => {
this.pendingIndex = index;

const nextLinkTranslationId = links[index].props['data-preview-title-id'];
const currentLinkSelector = '.tabs-bar__link.active';
const nextLinkSelector = `.tabs-bar__link[data-preview-title-id="${nextLinkTranslationId}"]`;

// HACK: Remove the active class from the current link and set it to the next one
// React-router does this for us, but too late, feeling laggy.
document.querySelector(currentLinkSelector).classList.remove('active');
document.querySelector(nextLinkSelector).classList.add('active');
}

handleAnimationEnd = () => {


Loading…
Откажи
Сачувај