-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathLoginPanel.js
90 lines (86 loc) · 3.15 KB
/
LoginPanel.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
* This file belongs to Hoist, an application development toolkit
* developed by Extremely Heavy Industries (www.xh.io | [email protected])
*
* Copyright © 2020 Extremely Heavy Industries Inc.
*/
import {LoginPanelModel} from '@xh/hoist/appcontainer/login/LoginPanelModel';
import {div, filler, form, viewport} from '@xh/hoist/cmp/layout';
import {creates, hoistCmp, XH} from '@xh/hoist/core';
import {button} from '@xh/hoist/desktop/cmp/button';
import {textInput} from '@xh/hoist/desktop/cmp/input';
import {panel} from '@xh/hoist/desktop/cmp/panel';
import {Icon} from '@xh/hoist/icon';
import './LoginPanel.scss';
/**
* A minimal username / password prompt for applications using form-based authentication.
* Automatically created and displayed if required by AppContainer.
*
* @private
*/
export const loginPanel = hoistCmp.factory({
displayName: 'LoginPanel',
model: creates(LoginPanelModel),
render({model}) {
const {loginMessage} = XH.appSpec,
{loadModel, warning, isValid, loginInProgress} = model;
const onKeyDown = (ev) => {
if (ev.key === 'Enter') model.submitAsync();
};
return viewport({
alignItems: 'center',
justifyContent: 'center',
flexDirection: 'column',
item: panel({
title: XH.clientAppName,
icon: Icon.login(),
className: 'xh-login',
width: 300,
padding: 10,
mask: loadModel,
items: [
form(
textInput({
bind: 'username',
placeholder: 'Username',
autoComplete: 'username',
autoFocus: true,
commitOnChange: true,
onKeyDown,
width: null
}),
textInput({
bind: 'password',
placeholder: 'Password...',
autoComplete: 'current-password',
type: 'password',
commitOnChange: true,
onKeyDown,
width: null
})
),
div({
item: loginMessage,
omit: !loginMessage,
className: 'xh-login__message'
}),
div({
item: warning,
omit: !warning,
className: 'xh-login__warning'
})
],
bbar: [
filler(),
button({
text: loginInProgress ? 'Please wait...' : 'Login',
intent: 'primary',
icon: Icon.login(),
disabled: !isValid || loginInProgress,
onClick: () => model.submitAsync()
})
]
})
});
}
});