blob: e2c8e73c2cbfba5ce2edf19b512ac03294f2d232 [file] [log] [blame]
// Copyright (C) 2023 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Check whether a DOM element contains another, or whether they're the same
export function isOrContains(container: Element, target: Element): boolean {
return container === target || container.contains(target);
}
// Find a DOM element with a given "ref" attribute
export function findRef(root: Element, ref: string): Element|null {
const query = `[ref=${ref}]`;
if (root.matches(query)) {
return root;
} else {
return root.querySelector(query);
}
}
// Safely cast an Element to an HTMLElement.
// Throws if the element is not an HTMLElement.
export function toHTMLElement(el: Element): HTMLElement {
if (!(el instanceof HTMLElement)) {
throw new Error('Element is not an HTLMElement');
}
return el as HTMLElement;
}
// Return true if EventTarget is or is inside an editable element.
// Editable elements incluce: <input type="text">, <textarea>, or elements with
// the |contenteditable| attribute set.
export function elementIsEditable(target: EventTarget|null): boolean {
if (target === null) {
return false;
}
if (!(target instanceof Element)) {
return false;
}
const editable = target.closest('input, textarea, [contenteditable=true]');
if (editable === null) {
return false;
}
if (editable instanceof HTMLInputElement) {
if (['radio', 'checkbox', 'button'].includes(editable.type)) {
return false;
}
}
return true;
}