Skip to content

Commit

Permalink
Unbreak lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Dec 1, 2020
1 parent c27ff64 commit b3240da
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 70 deletions.
4 changes: 2 additions & 2 deletions js/src/carousel.js
Expand Up @@ -397,6 +397,7 @@ class Carousel extends BaseComponent {
_setActiveIndicatorElement(element) {
if (this._indicatorsElement) {
const indicators = SelectorEngine.find(SELECTOR_ACTIVE, this._indicatorsElement)

for (let i = 0; i < indicators.length; i++) {
indicators[i].classList.remove(CLASS_NAME_ACTIVE)
}
Expand Down Expand Up @@ -431,8 +432,7 @@ class Carousel extends BaseComponent {
_slide(direction, element) {
const activeElement = SelectorEngine.findOne(SELECTOR_ACTIVE_ITEM, this._element)
const activeElementIndex = this._getItemIndex(activeElement)
const nextElement = element || (activeElement &&
this._getItemByDirection(direction, activeElement))
const nextElement = element || (activeElement && this._getItemByDirection(direction, activeElement))

const nextElementIndex = this._getItemIndex(nextElement)
const isCycling = Boolean(this._interval)
Expand Down
6 changes: 2 additions & 4 deletions js/src/collapse.js
Expand Up @@ -124,8 +124,7 @@ class Collapse extends BaseComponent {
}

show() {
if (this._isTransitioning ||
this._element.classList.contains(CLASS_NAME_SHOW)) {
if (this._isTransitioning || this._element.classList.contains(CLASS_NAME_SHOW)) {
return
}

Expand Down Expand Up @@ -212,8 +211,7 @@ class Collapse extends BaseComponent {
}

hide() {
if (this._isTransitioning ||
!this._element.classList.contains(CLASS_NAME_SHOW)) {
if (this._isTransitioning || !this._element.classList.contains(CLASS_NAME_SHOW)) {
return
}

Expand Down
9 changes: 5 additions & 4 deletions js/src/dropdown.js
Expand Up @@ -367,8 +367,7 @@ class Dropdown extends BaseComponent {
}

static clearMenus(event) {
if (event && (event.button === RIGHT_MOUSE_BUTTON ||
(event.type === 'keyup' && event.key !== TAB_KEY))) {
if (event && (event.button === RIGHT_MOUSE_BUTTON || (event.type === 'keyup' && event.key !== TAB_KEY))) {
return
}

Expand Down Expand Up @@ -475,11 +474,13 @@ class Dropdown extends BaseComponent {

let index = items.indexOf(event.target)

if (event.key === ARROW_UP_KEY && index > 0) { // Up
// Up
if (event.key === ARROW_UP_KEY && index > 0) {
index--
}

if (event.key === ARROW_DOWN_KEY && index < items.length - 1) { // Down
// Down
if (event.key === ARROW_DOWN_KEY && index < items.length - 1) {
index++
}

Expand Down
9 changes: 2 additions & 7 deletions js/src/modal.js
Expand Up @@ -136,11 +136,7 @@ class Modal extends BaseComponent {
this._setEscapeEvent()
this._setResizeEvent()

EventHandler.on(this._element,
EVENT_CLICK_DISMISS,
SELECTOR_DATA_DISMISS,
event => this.hide(event)
)
EventHandler.on(this._element, EVENT_CLICK_DISMISS, SELECTOR_DATA_DISMISS, event => this.hide(event))

EventHandler.on(this._dialog, EVENT_MOUSEDOWN_DISMISS, () => {
EventHandler.one(this._element, EVENT_MOUSEUP_DISMISS, event => {
Expand Down Expand Up @@ -237,8 +233,7 @@ class Modal extends BaseComponent {
const transition = this._element.classList.contains(CLASS_NAME_FADE)
const modalBody = SelectorEngine.findOne(SELECTOR_MODAL_BODY, this._dialog)

if (!this._element.parentNode ||
this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {
if (!this._element.parentNode || this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {
// Don't move modal's DOM position
document.body.appendChild(this._element)
}
Expand Down
8 changes: 4 additions & 4 deletions js/src/popover.js
Expand Up @@ -29,8 +29,9 @@ const Default = {
content: '',
template: '<div class="popover" role="tooltip">' +
'<div class="popover-arrow"></div>' +
'<h3 class="popover-header"></h3>' +
'<div class="popover-body"></div></div>'
'<h3 class="popover-header"></h3>' +
'<div class="popover-body"></div>' +
'</div>'
}

const DefaultType = {
Expand Down Expand Up @@ -118,8 +119,7 @@ class Popover extends Tooltip {
}

_getContent() {
return this._element.getAttribute('data-bs-content') ||
this.config.content
return this._element.getAttribute('data-bs-content') || this.config.content
}

_cleanTipClass() {
Expand Down
7 changes: 2 additions & 5 deletions js/src/scrollspy.js
Expand Up @@ -196,9 +196,7 @@ class ScrollSpy extends BaseComponent {
_process() {
const scrollTop = this._getScrollTop() + this._config.offset
const scrollHeight = this._getScrollHeight()
const maxScroll = this._config.offset +
scrollHeight -
this._getOffsetHeight()
const maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight()

if (this._scrollHeight !== scrollHeight) {
this.refresh()
Expand All @@ -223,8 +221,7 @@ class ScrollSpy extends BaseComponent {
for (let i = this._offsets.length; i--;) {
const isActiveTarget = this._activeTarget !== this._targets[i] &&
scrollTop >= this._offsets[i] &&
(typeof this._offsets[i + 1] === 'undefined' ||
scrollTop < this._offsets[i + 1])
(typeof this._offsets[i + 1] === 'undefined' || scrollTop < this._offsets[i + 1])

if (isActiveTarget) {
this._activate(this._targets[i])
Expand Down
19 changes: 5 additions & 14 deletions js/src/tab.js
Expand Up @@ -95,15 +95,11 @@ class Tab extends BaseComponent {
relatedTarget: previous
})

if (showEvent.defaultPrevented ||
(hideEvent !== null && hideEvent.defaultPrevented)) {
if (showEvent.defaultPrevented || (hideEvent !== null && hideEvent.defaultPrevented)) {
return
}

this._activate(
this._element,
listElement
)
this._activate(this._element, listElement)

const complete = () => {
EventHandler.trigger(previous, EVENT_HIDDEN, {
Expand All @@ -129,14 +125,9 @@ class Tab extends BaseComponent {
SelectorEngine.children(container, SELECTOR_ACTIVE)

const active = activeElements[0]
const isTransitioning = callback &&
(active && active.classList.contains(CLASS_NAME_FADE))

const complete = () => this._transitionComplete(
element,
active,
callback
)
const isTransitioning = callback && (active && active.classList.contains(CLASS_NAME_FADE))

const complete = () => this._transitionComplete(element, active, callback)

if (active && isTransitioning) {
const transitionDuration = getTransitionDurationFromElement(active)
Expand Down
35 changes: 9 additions & 26 deletions js/src/tooltip.js
Expand Up @@ -72,8 +72,9 @@ const AttachmentMap = {
const Default = {
animation: true,
template: '<div class="tooltip" role="tooltip">' +
'<div class="tooltip-arrow"></div>' +
'<div class="tooltip-inner"></div></div>',
'<div class="tooltip-arrow"></div>' +
'<div class="tooltip-inner"></div>' +
'</div>',
trigger: 'hover focus',
title: '',
delay: 0,
Expand Down Expand Up @@ -196,10 +197,7 @@ class Tooltip extends BaseComponent {
let context = Data.getData(event.delegateTarget, dataKey)

if (!context) {
context = new this.constructor(
event.delegateTarget,
this._getDelegateConfig()
)
context = new this.constructor(event.delegateTarget, this._getDelegateConfig())
Data.setData(event.delegateTarget, dataKey, context)
}

Expand Down Expand Up @@ -530,10 +528,7 @@ class Tooltip extends BaseComponent {

triggers.forEach(trigger => {
if (trigger === 'click') {
EventHandler.on(this._element,
this.constructor.Event.CLICK,
this.config.selector,
event => this.toggle(event)
EventHandler.on(this._element, this.constructor.Event.CLICK, this.config.selector, event => this.toggle(event)
)
} else if (trigger !== TRIGGER_MANUAL) {
const eventIn = trigger === TRIGGER_HOVER ?
Expand All @@ -543,16 +538,8 @@ class Tooltip extends BaseComponent {
this.constructor.Event.MOUSELEAVE :
this.constructor.Event.FOCUSOUT

EventHandler.on(this._element,
eventIn,
this.config.selector,
event => this._enter(event)
)
EventHandler.on(this._element,
eventOut,
this.config.selector,
event => this._leave(event)
)
EventHandler.on(this._element, eventIn, this.config.selector, event => this._enter(event))
EventHandler.on(this._element, eventOut, this.config.selector, event => this._leave(event))
}
})

Expand All @@ -562,10 +549,7 @@ class Tooltip extends BaseComponent {
}
}

EventHandler.on(this._element.closest(`.${CLASS_NAME_MODAL}`),
'hide.bs.modal',
this._hideModalHandler
)
EventHandler.on(this._element.closest(`.${CLASS_NAME_MODAL}`), 'hide.bs.modal', this._hideModalHandler)

if (this.config.selector) {
this.config = {
Expand Down Expand Up @@ -610,8 +594,7 @@ class Tooltip extends BaseComponent {
] = true
}

if (context.getTipElement().classList.contains(CLASS_NAME_SHOW) ||
context._hoverState === HOVER_STATE_SHOW) {
if (context.getTipElement().classList.contains(CLASS_NAME_SHOW) || context._hoverState === HOVER_STATE_SHOW) {
context._hoverState = HOVER_STATE_SHOW
return
}
Expand Down
6 changes: 2 additions & 4 deletions js/src/util/index.js
Expand Up @@ -66,10 +66,7 @@ const getTransitionDurationFromElement = element => {
}

// Get transition-duration of the element
let {
transitionDuration,
transitionDelay
} = window.getComputedStyle(element)
let { transitionDuration, transitionDelay } = window.getComputedStyle(element)

const floatTransitionDuration = Number.parseFloat(transitionDuration)
const floatTransitionDelay = Number.parseFloat(transitionDelay)
Expand All @@ -96,6 +93,7 @@ const emulateTransitionEnd = (element, duration) => {
let called = false
const durationPadding = 5
const emulatedDuration = duration + durationPadding

function listener() {
called = true
element.removeEventListener(TRANSITION_END, listener)
Expand Down

0 comments on commit b3240da

Please sign in to comment.