mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
0d2a768e1e
Replace global Lodash with explicit imports in frontend GitOrigin-RevId: b092647039975ac594b69ce1fa145fd03552cc60
61 lines
1.7 KiB
JavaScript
61 lines
1.7 KiB
JavaScript
import _ from 'lodash'
|
|
import App from '../base'
|
|
App.directive('bookmarkableTabset', $location => ({
|
|
restrict: 'A',
|
|
require: 'tabset',
|
|
link(scope, el, attrs, tabset) {
|
|
const _makeActive = function(hash) {
|
|
if (hash && hash !== '') {
|
|
const matchingTab = _.find(
|
|
tabset.tabs,
|
|
tab => tab.bookmarkableTabId === hash
|
|
)
|
|
if (matchingTab) {
|
|
matchingTab.select()
|
|
return el.children()[0].scrollIntoView({ behavior: 'smooth' })
|
|
}
|
|
}
|
|
}
|
|
|
|
scope.$applyAsync(function() {
|
|
// for page load
|
|
const hash = $location.hash()
|
|
_makeActive(hash)
|
|
|
|
// for links within page to a tab
|
|
// this needs to be within applyAsync because there could be a link
|
|
// within a tab to another tab
|
|
const linksToTabs = document.querySelectorAll('.link-to-tab')
|
|
const _clickLinkToTab = event => {
|
|
const hash = event.currentTarget
|
|
.getAttribute('href')
|
|
.split('#')
|
|
.pop()
|
|
_makeActive(hash)
|
|
}
|
|
|
|
if (linksToTabs) {
|
|
Array.from(linksToTabs).map(link =>
|
|
link.addEventListener('click', _clickLinkToTab)
|
|
)
|
|
}
|
|
})
|
|
}
|
|
}))
|
|
|
|
App.directive('bookmarkableTab', $location => ({
|
|
restrict: 'A',
|
|
require: 'tab',
|
|
link(scope, el, attrs, tab) {
|
|
const tabScope = el.isolateScope()
|
|
const tabId = attrs.bookmarkableTab
|
|
if (tabScope && tabId && tabId !== '') {
|
|
tabScope.bookmarkableTabId = tabId
|
|
tabScope.$watch('active', function(isActive, wasActive) {
|
|
if (isActive && !wasActive && $location.hash() !== tabId) {
|
|
return $location.hash(tabId)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}))
|