Subversion Repository Public Repository

litesoft

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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package org.litesoft.datt.client.ui.views;

import org.litesoft.GWT.client.*;
import org.litesoft.GWT.client.view.*;
import org.litesoft.GWT.client.widgets.*;
import org.litesoft.GWT.forms.client.*;
import org.litesoft.GWT.forms.client.components.*;
import org.litesoft.bo.views.*;
import org.litesoft.core.util.*;
import org.litesoft.datt.client.boviews.*;

import com.google.gwt.core.client.*;
import com.google.gwt.user.client.*;
import com.google.gwt.user.client.ui.*;

import static org.litesoft.uispecification.FormWidgetCtrl.*;

public class LoginDialogFactory implements LoginDialogViewFactory
{
    @Override
    public DialogView createDialog( boolean pCancelable, Command pOnSuccess )
    {
        return new LoginDialog( pCancelable, pOnSuccess );
    }

    private static class LoginDialog extends DialogView implements UserViewNames
    {
        private FormEngine mFE;

        private UserViewDataProvider mDataProvider = UserViewDataProvider.getInstance();
        private FormBinder<UserView> mFormBinder;
        private ButtonBase mSubmitButton;

        private boolean mCancelable;
        private Command mOnSuccess;

        public LoginDialog( boolean pCancelable, Command pOnSuccess )
        {
            super( Opaqueness.Full, "Login" );
            mCancelable = pCancelable;
            UtilsCommon.assertNotNull( "OnSuccess", mOnSuccess = pOnSuccess );

            WidgetCtrlMap zWidgetCtrlMap = new WidgetCtrlMap( VISIBLE_AND_ACTIVE_ENABLED );

            zWidgetCtrlMap.add( EDIT_ONLY.required(), aLogonEmail, aCurrentPassword );

            mFE = new FormEngine( zWidgetCtrlMap, FormEngine.Mode.EditRegular, null )
            {
                @Override protected void changeOccurredOn( String pName, IFormComponent pComponent, boolean pChanged )
                {
                    super.changeOccurredOn( pName, pComponent, pChanged );
                    setDialogErrorMessage( null );
                }

                @Override protected void enterPressedOn( String pName, IFormComponent pComponent, KeyboardKeyModifier pModifiers )
                {
                    if ( pName.equals( aLogonEmail ) )
                    {
                        getNamedComponent( aCurrentPassword ).setFocus();
                    }
                    else if ( pName.equals( aCurrentPassword ) && (mSubmitButton != null) && mSubmitButton.isEnabled() )
                    {
                        submitRequested();
                    }
                    else
                    {
                        super.enterPressedOn( pName, pComponent, pModifiers );
                    }
                }
            };
            mFormBinder = new FormBinder<UserView>( mFE, UserViewMetaData.getInstance() );

            mContent.setHorizontalAlignment( HasHorizontalAlignment.ALIGN_CENTER );

            add( createLogonAndCurrentPassword() );
            add( new SizeableSpacer( 5 ).stretchable() );

            mFormBinder.setExistingObject( UserView.createNew(), FormEngine.Mode.EditRegular );
        }

        private Widget createLogonAndCurrentPassword()
        {
            SizeableHorizontalPanel zPanel = new SizeableHorizontalPanel().stretchableHorizontally();
            zPanel.add( mFormBinder.add( aLogonEmail, 0, LOGON ) );
            zPanel.add( mFormBinder.add( aCurrentPassword, PASSWORD_LENGTH, PASSWORD ) );
            return zPanel;
        }

        @Override
        public Widget getBottomBar()
        {
            LeftCenterRightHorizontalPanel zActionPanel = new LeftCenterRightHorizontalPanel();
            if ( mCancelable )
            {
                zActionPanel.addLeft( createCancelButton() );
            }
            zActionPanel.addRight( mFE.addEditSubmitButton( mSubmitButton = createSubmitButton() ) );
            return zActionPanel;
        }

        @Override
        public void aboutToShow()
        {
            super.aboutToShow();
            mFE.initialize();
        }

        @Override
        protected void justLoaded()
        {
            super.justLoaded();
            mFE.setFocus();
        }

        @Override
        protected void submitRequested()
        {
            mFormBinder.commitForm();
            final UserView zUserView = mFormBinder.getObject();
            mDataProvider.attemptLogin( zUserView, new SimpleDataProviderCallBack()
            {
                @Override
                public void error( String pError )
                {
                    if ( UtilsCommon.isNotNullOrEmpty( pError ) )
                    {
                        setDialogErrorMessage( pError );
                    }
                    else
                    {
                        Scheduler.get().scheduleDeferred( mOnSuccess );
                        close();
                    }
                }
            } );
        }
    }
}

Commits for litesoft/trunk/Java/DATT/src/org/litesoft/datt/client/ui/views/LoginDialogFactory.java

Diff revisions: vs.
Revision Author Commited Message
430 GeorgeS picture GeorgeS Sat 20 Aug, 2011 19:46:21 +0000