mirror of
https://github.com/HeyPuter/puter
synced 2024-11-14 22:06:00 +00:00
Fix code entry focus on init
This commit is contained in:
parent
e9b8c452b9
commit
f9c5a688b1
@ -68,6 +68,10 @@ export default class CodeEntryView extends Component {
|
||||
`);
|
||||
}
|
||||
|
||||
on_focus () {
|
||||
$(this.dom_).find('.digit-input').first().focus();
|
||||
}
|
||||
|
||||
on_ready ({ listen }) {
|
||||
let is_checking_code = false;
|
||||
|
||||
@ -76,8 +80,6 @@ export default class CodeEntryView extends Component {
|
||||
$(this.dom_).find('.error').text(error).show();
|
||||
});
|
||||
|
||||
$(this.dom_).find('.digit-input').first().focus();
|
||||
|
||||
$(this.dom_).find('.code-confirm-btn').on('click submit', function(e){
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
@ -19,6 +19,10 @@ export default class StepView extends Component {
|
||||
`);
|
||||
}
|
||||
|
||||
on_focus () {
|
||||
this.children[this.get('position')].focus();
|
||||
}
|
||||
|
||||
on_ready ({ listen }) {
|
||||
for ( const child of this.get('children') ) {
|
||||
child.setAttribute('slot', 'inside');
|
||||
@ -38,6 +42,7 @@ export default class StepView extends Component {
|
||||
|
||||
// show the child at the current position
|
||||
$(this.children[position]).show();
|
||||
this.children[position].focus();
|
||||
});
|
||||
|
||||
// now that we're ready, show the wrapper
|
||||
|
@ -48,4 +48,6 @@ export default async function UIComponentWindow (options) {
|
||||
})
|
||||
|
||||
options.component.attach(placeholder);
|
||||
options.component.focus();
|
||||
console.log('UIComponentWindow', options.component);
|
||||
}
|
||||
|
@ -67,6 +67,7 @@ const UIWindow2FASetup = async function UIWindow2FASetup () {
|
||||
value: data.url,
|
||||
}),
|
||||
new CodeEntryView({
|
||||
_ref: me => code_entry = me,
|
||||
async [`property.value`] (value, { component }) {
|
||||
console.log('value? ', value)
|
||||
|
||||
@ -78,7 +79,10 @@ const UIWindow2FASetup = async function UIWindow2FASetup () {
|
||||
stepper.next();
|
||||
}
|
||||
}),
|
||||
]
|
||||
],
|
||||
['event.focus'] () {
|
||||
code_entry.focus();
|
||||
}
|
||||
}),
|
||||
new Flexer({
|
||||
children: [
|
||||
|
@ -42,6 +42,36 @@ export class Component extends HTMLElement {
|
||||
if ( property_values && property_values.hasOwnProperty('_ref') ) {
|
||||
property_values._ref(this);
|
||||
}
|
||||
|
||||
// Setup focus handling
|
||||
if ( property_values && property_values[`event.focus`] ) {
|
||||
const on_focus_ = this.on_focus;
|
||||
this.on_focus = (...a) => {
|
||||
property_values[`event.focus`]();
|
||||
on_focus_ && on_focus_(...a);
|
||||
}
|
||||
}
|
||||
this.addEventListener('focus', () => {
|
||||
console.log('got the event?');
|
||||
if ( this.on_focus ) {
|
||||
this.on_focus();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
focus () {
|
||||
super.focus();
|
||||
// Apparently the 'focus' event only fires when the element is focused
|
||||
// by other means than calling .focus() on it, so this isn't redundant.
|
||||
|
||||
// We use a 0ms timeout to ensure that the focus event has been
|
||||
// processed before we call on_focus, which may rely on the focus
|
||||
// event having been processed (and typically does).
|
||||
setTimeout(() => {
|
||||
if ( this.on_focus ) {
|
||||
this.on_focus();
|
||||
}
|
||||
}, 0);
|
||||
}
|
||||
|
||||
get (key) {
|
||||
|
Loading…
Reference in New Issue
Block a user