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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
package org.litesoft.prioritizer.client;

import org.litesoft.GWT.client.*;
import org.litesoft.GWT.client.command.*;
import org.litesoft.GWT.client.command.queue.*;
import org.litesoft.GWT.client.context.*;
import org.litesoft.GWT.client.dev.*;
import org.litesoft.GWT.client.logging.*;
import org.litesoft.GWT.client.rpc.*;
import org.litesoft.GWT.client.view.*;
import org.litesoft.GWT.client.widgets.*;
import org.litesoft.GWT.client.widgets.datatables.*;
import org.litesoft.bo.views.*;
import org.litesoft.bo.views.communication.*;
import org.litesoft.core.*;
import org.litesoft.core.simpletypes.temporal.*;
import org.litesoft.core.util.*;
import org.litesoft.logger.*;
import org.litesoft.loggerconfig.*;
import org.litesoft.prioritizer.client.accessors.*;
import org.litesoft.prioritizer.client.boviews.*;
import org.litesoft.prioritizer.client.ui.views.admin.*;
import org.litesoft.prioritizer.client.ui.views.home.*;
import org.litesoft.prioritizer.client.ui.views.stories.*;
import org.litesoft.prioritizer.client.ui.widgets.*;
import org.litesoft.security.*;
import org.litesoft.uispecification.*;

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

public class Prioritizer extends AbstractClientMainAppEntryPoint implements ViewDefs,
                                                                            RestrictedResourceSwitcherCallBack
{
    static
    {
        UserViewAccessControlFactory.setViewDefSecuritySets( ViewDefs.SECURITY_SETS );
    }

    private VACMproxy mACM = new VACMproxy();

    // pull in all the factories. This can be broken out into different modules if compile becomes too slow.
    private ViewManagerImpl mVM = new ViewManagerImpl( mACM, //
                                                       // Admin
                                                       new ChangePasswordFactory<UserView>(HOME_SECTION_ADMIN, ADMIN_CHANGE_PASSWORD), //
                                                       new MyProfileFactory(), //
                                                       new ReportsFactory(), //
                                                       new UsersFactory(), //
                                                       new StoriesFactory(), //
                                                       new ReprioritizeFactory(), //
                                                       new InitialPrioritizingFactory(), //
                                                       new RestrictedResourceEditorFactory(), //
                                                       new RestrictedResourceManagementFactory(), //
                                                       // Reports...
                                                       // new MedicationTrackingReportFactory(), //
                                                       // HOME!
                                                       new HomeFactory() );

    public Prioritizer()
    {
        super( new AppNames( "Prioritizer", "Prioritizer" ) );

        // add in all the factory-less screens. This can be broken out into different modules if compile becomes too slow.
//        mVM.add( ADMIN_RESTRICTED_RESOURCE_MANAGEMENT );
    }

    @Override
    public void onAppLoad()
    {
        System.out.println( "DevMode " + Dev.state() );

        replaceAppPanel();

        super.onAppLoad();

        CScomm.setInstance( new GwtCScomm( null, mVM, new AppInitializationCallback() ) );
    }

    public void finishAppLoad()
    {
        ClientContext zContext = ClientContext.get();

        Dev.init( zContext );

        AppPanel zAppPanel = new AppPanel( Dev.isDevMode() ? 1 : 0 ); // 1 = see Red Line

        CurrentUserViewAccessor zCUA = new CurrentUserViewAccessor( zAppPanel, mACM );
        CurrentRestrictedResourceViewAccessor zCSA = new CurrentRestrictedResourceViewAccessor( zAppPanel );
        CurrentRestrictedResourceOptionsAccessor zCRROA = new CurrentRestrictedResourceOptionsAccessor( new RestrictedResourceSwitcher( zAppPanel, this ) );

        WindowSizingPanel.setContent( zAppPanel );

        UserViewDataProvider zUserViewDataProvider = UserViewDataProvider.getInstance();

        RestrictedResourcePickerDialogViewFactory zRRPDF = new RestrictedResourcePickerDialogFactory<RestrictedResourceView>( "Select Queue", RestrictedResourceViewDataProvider.getInstance(), RestrictedResourceViewMetaData.getInstance(), new RestrictedResourceViewSupportFactory<RestrictedResourceView>()
        {
            @Override
            public TableDataReloadable createTable( FilteringTableModel<RestrictedResourceView> pFilter, TableClickCommand<RestrictedResourceView> pRestrictedResourceViewTableClickCommand )
            {
                return new RestrictedResourceViewTable( pFilter, pRestrictedResourceViewTableClickCommand );
            }

            @Override
            public QBEinputPanelAccessorWithCtrlMap<RestrictedResourceView> createFieldPanel()
            {
                return new RestrictedResourcePickerFieldsPanel();
            }
        } );

        zContext.set( CurrentRestrictedResourceViewAccessor.class, zCSA );
        zContext.set( AbstractCurrentRestrictedResourceViewAccessor.class, zCSA );

        zContext.set( CurrentUserViewAccessor.class, zCUA );
        zContext.set( AbstractCurrentUserViewAccessor.class, zCUA );

        zContext.set( LoginServerStateChecker.class, zUserViewDataProvider );
        zContext.set( SecurityUserViewDataProvider.class, zUserViewDataProvider );

        zContext.set( SecurityUserViewMetaData.class, UserViewMetaData.getInstance() );

        zContext.set( SuspendDialogViewFactory.class, new SuspendDialogFactory<UserView>() );
        zContext.set( LoginDialogViewFactory.class, new LoginDialogFactory<UserView>() );
        zContext.set( LoginPasswordResetDialogViewFactory.class, new ResetPasswordDialogFactory<UserView>() );
        zContext.set( ViewAccessControlManager.class, mACM );
        zContext.set( CurrentRestrictedResourceOptionsAccessor.class, zCRROA );
        zContext.set( RestrictedResourcePickerDialogViewFactory.class, zRRPDF );
        zContext.set( LoginPasswordResetAccessor.class, zCUA );
        zContext.set( StatusMessageSinc.class, zAppPanel );
        zContext.set( SingleWidgetPanel.class, zAppPanel );
        zContext.set( PageRefreshableProxy.class, zAppPanel );
        zContext.set( CommandQueue.class, new CommandQueue() );
        zContext.set( ScreenViewShower.class, mVM );
        zContext.set( DialogViewShower.class, mVM );
        zContext.set( ViewFactoryAccessor.class, mVM );
        zContext.set( NextDemoUserRequestHandler.class, new NextDemoUserRequestHandlerImpl() );

        mVM.initialize();

        System.err.println( new UtilDateAdaptor() + " | Application Client Ready" );

        PaddingProperty.setDefaults( 2, 10, 2, 6 );

        zAppPanel.setInfoMessage( "Hello" );
    }

    protected void initializeLoggerFactory()
    {
        //noinspection NonJREEmulationClassesInClientCode
        LoggerFactory.init( new ConfigurationLoggerLevel(), BrowserAsLogSyncFactory.INSTANCE );
    }

    private class AppInitializationCallback implements AsyncCallback<AppInitializationResult>
    {
        @Override
        public void onFailure( Throwable pThrowable )
        {
            String message;

            if ( pThrowable instanceof InvocationException )
            {
                // see javadoc for InvocationException
                message = "A connection could not be established with the server";
            }
            else if ( pThrowable instanceof IncompatibleRemoteServiceException )
            {
                /*
                 * This _should_ not happen to users, so long as the .nocache
                 * file isn't cached by the client.
                 */
                message = "Client and server versions are incompatible. Try ctrl-clicking\n" + //
                          "or shift-clicking the browser refresh button, or clearing your\n" + //
                          "browser's cache in 'Internet Options' / your browser's preferences. ";
            }
            else
            {
                // probably an application-specific execption on the server
                message = "An application error occured on the server";
            }

            reportFailure( pThrowable, "onFailure()", message );
        }

        @Override
        public void onSuccess( AppInitializationResult result )
        {
            System.err.println( new UtilDateAdaptor() + " | Client AppInitialization" );

            if ( result == null )
            {
                UtilsGwt.closeWindowNoConfirm( 5 );
                return;
            }

            try
            {
                new ClientConfiguration( result.getClientConfig() ); // This line must preceed the next
                initializeLoggerFactory(); // ......................... This line must follow the previous

                AlertManager.setVersion( "Version " + result.getApplicationVersion() );

                finishAppLoad();
            }
            catch ( RuntimeException e )
            {
                reportFailure( e, "onSuccess()", null );
            }
        }

        private void reportFailure( Throwable pThrowable, String method, String message )
        {
            pThrowable.printStackTrace(); // prints the trace in the GWT hosted shell
            String html = "<h1>Application Initialization Failed</h1>" + //
                          "<p>" + message + "</p>" + //
                          "<p>at " + getClass().getName() + "." + method + "</p>" + //
                          "<p>Exception: </p>" + //
                          "<p><pre>" + pThrowable + "</pre></p>";
            DOM.setInnerHTML( RootPanel.getBodyElement(), html );
        }
    }

    private static class NextDemoUserRequestHandlerImpl implements NextDemoUserRequestHandler
    {
        @Override
        public void nextDemoUser()
        {
            UserViewDataProvider.getInstance().nextDemoUser( new SimpleDataProviderCallBack()
            {
                @Override
                public void error( String pError )
                {
                    new ShowScreenCommand( ViewDefs.HOME, pError ).execute();
                }
            } );
        }
    }

    @Override
    public void switchToRestrictedResource( AlternateRestrictedResourceOption pAlternateOption )
    {
        UserViewDataProvider.getInstance().attemptSwitchToRestrictedResource( (RestrictedResourceView) pAlternateOption, new SimpleDataProviderCallBack()
        {
            @Override
            public void error( String pError )
            {
                if ( UtilsCommon.isNullOrEmpty( pError ) )
                {
                    PageRefreshableProxy zRefreshableProxy = ClientContext.get().checkGet( PageRefreshableProxy.class );
                    if ( zRefreshableProxy != null )
                    {
                        zRefreshableProxy.refreshPage();
                        return;
                    }
                }
                new ShowScreenCommand( ViewDefs.HOME, pError ).execute();
            }
        } );
    }
}

Commits for litesoft/trunk/GWT_Sandbox/Prioritizer/src/org/litesoft/prioritizer/client/Prioritizer.java

Diff revisions: vs.
Revision Author Commited Message
496 Diff Diff GeorgeS picture GeorgeS Sun 11 Sep, 2011 16:58:00 +0000
494 Diff Diff GeorgeS picture GeorgeS Sun 11 Sep, 2011 13:33:20 +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 Diff Diff GeorgeS picture GeorgeS Tue 06 Sep, 2011 03:00:59 +0000
480 Diff Diff GeorgeS picture GeorgeS Sun 04 Sep, 2011 02:38:20 +0000

Progress on common User Support...

479 Diff Diff GeorgeS picture GeorgeS Sat 03 Sep, 2011 17:23:17 +0000
476 Diff Diff GeorgeS picture GeorgeS Sat 03 Sep, 2011 13:57:13 +0000
398 GeorgeS picture GeorgeS Mon 15 Aug, 2011 19:57:47 +0000