本文整理汇总了TypeScript中lodash.isElement函数的典型用法代码示例。如果您正苦于以下问题:TypeScript isElement函数的具体用法?TypeScript isElement怎么用?TypeScript isElement使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了isElement函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: hideOnEscapeOrOutsideClick
export function hideOnEscapeOrOutsideClick(thing) {
assert(_.isElement(thing) || hasHideMethod(thing),
'hideOnEscapeOrOutsideClick: argument is expected to be a DOM element or a thing that has a hide method');
if (_.isElement(thing)) thing = new HideableDOMElement(thing);
document.body.addEventListener('keydown', ifKey('Escape', thing.hide));
document.body.addEventListener('click', thing.hide);
}
示例2: addHoverEffect
export function addHoverEffect(domElement, style) {
assert(_.isElement(domElement), 'addHoverEffect expects the first argument to be a DOM element');
assert(_.isPlainObject(style), 'addHoverEffect expects the second argument, style, to be a hash');
toggleStyle(domElement, style, 'mouseenter', 'mouseleave');
domElement.setAttribute('has-on-hover-effect', '');
}
示例3: isElement
function isElement(node: Node): node is HTMLElement {
return (
node &&
node.nodeType !== Node.TEXT_NODE &&
node.nodeType !== Node.COMMENT_NODE &&
_.isElement(node)
);
}
示例4: makeTextUselectable
export function makeTextUselectable(domElement) {
assert(_.isElement(domElement), 'makeTextUselectable expects the argument to be a DOM element');
addStyle(domElement, {
'-webkit-touch-callout': 'none',
'-webkit-user-select': 'none',
'-moz-user-select': 'none',
'-ms-user-select': 'none',
'user-select': 'none'
});
}
示例5: toggleStyle
export function toggleStyle(domElement, style, onEventName, offEventName) {
assert(_.isElement(domElement), 'toggleStyle expects the first argument to be a DOM element');
assert(_.isPlainObject(style), 'toggleStyle expects the second argument, style, to be a hash');
assert(_.isString(onEventName), 'toggleStyle expects the third argument, onEventName, to be a string');
assert(_.isString(offEventName), 'toggleStyle expects the third argument, offEventName, to be a string');
var initialStyle = {};
for (var propertyName in style) initialStyle[propertyName] = domElement.style[propertyName];
domElement.addEventListener(onEventName, applyStyle(domElement, style));
domElement.addEventListener(offEventName, applyStyle(domElement, initialStyle));
}
示例6: makeRemovable
export function makeRemovable(domElement, onRemove, additionalButtonStyle) {
assert(_.isElement(domElement), 'makeRemovable: the first argument is required to be a DOM element');
assert(_.isFunction(onRemove), 'makeRemovable: the second argument is required to be a function to call back on remove');
domElement.setAttribute('removable', '');
domElement.style.position = 'relative';
var button = createButton(additionalButtonStyle);
button.addEventListener('click', function() {
domElement.parentNode.removeChild(domElement);
onRemove();
});
domElement.appendChild(button);
}
示例7: createPlayerFinder
export function createPlayerFinder(pattern: SearchPattern): FindFunction {
const finders: FindFunction[] = [];
if (!_.isEmpty(pattern.name)) {
finders.push(finderCreators.name(pattern.name));
}
if (!_.isEmpty(pattern.nickname)) {
finders.push(finderCreators.nickname(pattern.nickname));
}
if (!_.isElement(pattern.faction)) {
finders.push(finderCreators.faction(pattern.faction));
}
if (!_.isEmpty(pattern.anomaly)) {
finders.push(finderCreators.anomaly(pattern.anomaly));
}
return (player: Player) => {
return finders.every(finder => finder(player));
}
}
示例8: emptyDOMElement
export function emptyDOMElement(domElement) {
assert(_.isElement(domElement), 'emptyDOMElement expects the argument to be a DOM element');
domElement.innerHTML = '';
}
示例9: addStyle
export function addStyle(domElement, style) {
assert(_.isElement(domElement), 'addStyle expects the first argument to be a DOM element');
assert(_.isPlainObject(style), 'addStyle expects the second argument to be a hash');
_.extend(domElement.style, style);
}