สรุป
<howto-tooltip>
คือป๊อปอัปที่แสดงข้อมูลที่เกี่ยวข้องกับองค์ประกอบเมื่อองค์ประกอบได้รับโฟกัสจากแป้นพิมพ์หรือเมาส์วางอยู่เหนือองค์ประกอบ
องค์ประกอบที่ทริกเกอร์เคล็ดลับเครื่องมือจะอ้างอิงองค์ประกอบเคล็ดลับเครื่องมือด้วย aria-describedby
องค์ประกอบจะใช้บทบาท tooltip
กับตนเองและตั้งค่า tabindex
เป็น -1 เนื่องจากเคล็ดลับเครื่องมือไม่สามารถรับโฟกัสได้
ข้อมูลอ้างอิง
สาธิต
ดูการสาธิตการใช้งานจริงใน GitHub
ตัวอย่างการใช้
<div class="text">
<label for="name">Your name:</label>
<input id="name" aria-describedby="tp1"/>
<howto-tooltip id="tp1">Ideally your name is Batman</howto-tooltip>
<br>
<label for="cheese">Favourite type of cheese: </label>
<input id="cheese" aria-describedby="tp2"/>
<howto-tooltip id="tp2">Help I am trapped inside a tooltip message</howto-tooltip>
รหัส
class HowtoTooltip extends HTMLElement {
ตัวสร้างจะทํางานที่จําเป็นต้องเรียกใช้เพียงครั้งเดียว
constructor() {
super();
ฟังก์ชันเหล่านี้ใช้ในหลายตำแหน่ง และจำเป็นต้องเชื่อมโยงการอ้างอิง this ที่ถูกต้องเสมอ ดังนั้นให้ดำเนินการเพียงครั้งเดียว
this._show = this._show.bind(this);
this._hide = this._hide.bind(this);
}
connectedCallback()
เริ่มทำงานเมื่อแทรกองค์ประกอบลงใน DOM ซึ่งเป็นตําแหน่งที่ดีในการตั้งค่าบทบาทเริ่มต้น tabindex สถานะภายใน และติดตั้ง Listener เหตุการณ์
connectedCallback() {
if (!this.hasAttribute('role'))
this.setAttribute('role', 'tooltip');
if (!this.hasAttribute('tabindex'))
this.setAttribute('tabindex', -1);
this._hide();
องค์ประกอบที่ทริกเกอร์เคล็ดลับเครื่องมือจะอ้างอิงองค์ประกอบเคล็ดลับเครื่องมือด้วย aria-describedby
this._target = document.querySelector('[aria-describedby=' + this.id + ']');
if (!this._target)
return;
เคล็ดลับเครื่องมือต้องฟังเหตุการณ์โฟกัส/เบลอจากเป้าหมาย รวมถึงเหตุการณ์วางเมาส์เหนือเป้าหมาย
this._target.addEventListener('focus', this._show);
this._target.addEventListener('blur', this._hide);
this._target.addEventListener('mouseenter', this._show);
this._target.addEventListener('mouseleave', this._hide);
}
disconnectedCallback()
ยกเลิกการลงทะเบียน Listener เหตุการณ์ที่ตั้งค่าไว้ใน connectedCallback()
disconnectedCallback() {
if (!this._target)
return;
นํา Listeners ที่มีอยู่ออกเพื่อไม่ให้ทริกเกอร์แม้ว่าจะไม่มีเคล็ดลับเครื่องมือที่จะแสดง
this._target.removeEventListener('focus', this._show);
this._target.removeEventListener('blur', this._hide);
this._target.removeEventListener('mouseenter', this._show);
this._target.removeEventListener('mouseleave', this._hide);
this._target = null;
}
_show() {
this.hidden = false;
}
_hide() {
this.hidden = true;
}
}
customElements.define('howto-tooltip', HowtoTooltip);