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
package org.litesoft.GWT.client.view;

import org.litesoft.GWT.client.widgets.*;
import org.litesoft.bo.views.*;
import org.litesoft.commonfoundation.base.*;
import org.litesoft.security.*;

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

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

public class SuspendDialogFactory<T extends SecurityUserView<T>> implements SuspendDialogViewFactory {
    @Override
    public DialogView createDialog( LogoutCallBack pCallBack ) {
        return new SuspendDialog<T>( pCallBack );
    }

    private static class SuspendDialog<T extends SecurityUserView<T>> extends AbstractSecurityDialogView<T> implements SecurityUserViewNames {
        private final LogoutCallBack mLogoutCallBack;

        public SuspendDialog( LogoutCallBack pLogoutCallBack ) {
            super( null, Opaqueness.Full, true );
            mLogoutCallBack = Confirm.isNotNull( "LogoutCallBack", pLogoutCallBack );

            centerContent();

            initializeFormInfrastructure( null )
                    .add( VISIBLE_BUT_DISABLED, aLogonEmail )
                    .add( Visible( Yes ).enable( Edit ).required(), aCurrentPassword );

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

            T zUser = getUserView();

            setViewTitle( "Locked by " + zUser );

            setEditUser( mDataProvider.copyIntoNewTS( zUser ) );
        }

        @Override
        protected boolean processEnterPressedOn( String pName ) {
            if ( pName.equals( aCurrentPassword ) && (mSubmitButton != null) && mSubmitButton.isEnabled() ) {
                submitRequested();
                return false;
            }
            return true;
        }

        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
        protected ButtonBase createLeftButton() {
            return LogoutRedButton.factory().add( new ClickHandler() {
                @Override
                public void onClick( ClickEvent event ) {
                    logoutRequested();
                }
            } ).create();
        }

        @Override
        protected ButtonBase createSubmitButton() {
            return UnlockButton.factory().add( createSubmitClickHandler() ).create();
        }

        private void logoutRequested() {
            close();
            Scheduler.get().scheduleDeferred( new Command() {
                @Override
                public void execute() {
                    mLogoutCallBack.logoutConfirmed();
                }
            } );
        }

        @Override
        protected void submitRequested() {
            mFormBinder.commitForm();
            mDataProvider.validatePassword( mFormBinder.getObject(), new SimpleDataProviderCallBack() {
                @Override
                public void error( String pError ) {
                    if ( Currently.isNotNullOrEmpty( pError ) ) {
                        setDialogErrorMessage( pError );
                    } else {
                        close();
                    }
                }
            } );
        }
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/org/litesoft/GWT/client/view/SuspendDialogFactory.java

Diff revisions: vs.
Revision Author Commited Message
957 Diff Diff GeorgeS picture GeorgeS Tue 24 Jun, 2014 12:30:01 +0000

Dialog Code Shareing

955 Diff Diff GeorgeS picture GeorgeS Sun 22 Jun, 2014 18:11:25 +0000

Add Instance...

950 Diff Diff GeorgeS picture GeorgeS Thu 19 Jun, 2014 17:57:04 +0000

New Lines

948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

939 Diff Diff GeorgeS picture GeorgeS Mon 02 Jun, 2014 21:30:31 +0000

Extracting commonfoundation

804 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 12:48:51 +0000
802 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 04:04:47 +0000
489 Diff Diff GeorgeS picture GeorgeS Fri 09 Sep, 2011 12:03:04 +0000

Prioritizer Dup code minimized

487 Diff Diff GeorgeS picture GeorgeS Thu 08 Sep, 2011 12:06:30 +0000

More elimination of uniqueness

486 GeorgeS picture GeorgeS Tue 06 Sep, 2011 03:00:59 +0000