- added lots of debug to Services classes
- refined Logging App
- added distinct styling for FATAL, ERROR, WARN, INFO, DEBUG
- adding more debugging to Login Service.
Monthly Archives: January 2015
Phil 1.30.15
8:00 – 5:00 SR
- Had a scary email from Ronda about the center where our servers live getting shut down sometime in June. I thought we had started this process, but maybe not?
- Meeting with Ronda at 4:00 on Monday.
- More Typescript/Angular integration. Today’s results!
- First, plain old angular HTML:
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body ng-app="simpleApp"> <div ng-controller="MainCtrl as mc"> <p>String = {{mc.myString}}</p> </div> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.10/angular.min.js"></script> <script src="simple.js"></script> </body> </html>
- Next, the TypeScript (simple.ts):
/// <reference path="../definitelytyped/angularjs/angular.d.ts" /> class TestClass{ myString:string; constructor(){ this.myString = "Hello, TypeScript4"; } } class AngularMain{ myModule:ng.IModule; myController:ng.IModule; public doCreate(angular:ng.IAngularStatic, sfn:Function){ this.myModule = angular.module('simpleApp', []); this.myController = this.myModule.controller('MainCtrl', [sfn]); } } new AngularMain().doCreate(angular, TestClass);
- Last, the generated JavaScript code (simple.js):
/// <reference path="../definitelytyped/angularjs/angular.d.ts" /> var TestClass = (function () { function TestClass() { this.myString = "Hello, TypeScript4"; } return TestClass; })(); var AngularMain = (function () { function AngularMain() { } AngularMain.prototype.doCreate = function (angular, sfn) { this.myModule = angular.module('simpleApp', []); this.myController = this.myModule.controller('MainCtrl', [sfn]); }; return AngularMain; })(); new AngularMain().doCreate(angular, TestClass); //# sourceMappingURL=simple.js.map
Phil 1.29.15
8:00 – 5:00 SR
- Deployed swf fix
- Tried FR webapp again, but login still won’t work. The service can’t be found.
- Working on using Typescript for our modules, now that we’ve settled on a variant of the Angular Prototype pattern.
- Had to get the definitely typed angular and jquery ‘libraries’ and put them in their own folder for the
/// <reference path="../definitelytyped/angularjs/angular.d.ts" />
- declarations(?) to work.
- Went back to the angular with typescript video. The key points are really around 15:00 in, where the controllers and factories are built. Sean Hess’s github repository for the demo code is here.
Dong Shin 01.29.2015
- deployed new FA to fix AddableComboCB errors – done
- deployed new Funding Request
- couldn’t login – /FinancialAssistant/login returns 404
- working on Funding Request
- added more debug flags for Spring libs, outputs to FinancialAssistant logs
- added dialog, more detailed messages on login failure
- adding more debugging to server codes
Dong Shin 01.28.2015
- deployed new FA/RA
- AddableComboCB not behaving – fixed
- working on Funding Request
- added login field
- re-arranged Load Funding Request window
- working on Logging
- fixed error deleting logs
Phil 1.28.15
8:00 – 3:30 SR
- DB backups
- Deployed new FA RA and RQ
- DB updates
- Reset passwords for new FR
- Culled all users who have not logged in since 01-01-2014
- Getting odd error: ‘default value not found for table: sub_budget_center_numbers’
- Angular
- Walked Dong through the OO Angular coding style I’ve been working out
- Angular talk with Material Design, Typescript and threejs content
- Angular Material Design CSS framework?
- Closure Compiler – It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what’s left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls.
- Getting back to charting.
- How to integrate Angular and threejs
- ThreeJS CSS examples
- Simple Sandbox
- Molecules – particularly interesting because of the bonds
- Periodic Table
- Sprites
Dong Shin 01.27.2015
- working on adding Primary Lab PM to FA/RA
ALTER TABLE `budget_centers` ADD `primary_lab_pm` VARCHAR(255) NULL DEFAULT NULL AFTER `req_type`;
- CREATE TABLE IF NOT EXISTS `primary_lab_pms` (
`name` varchar(255) NOT NULL
) ENGINE=InnoDB - added Primary Lab PM to FA as AddableComboBox
- added Primary Lab PM to __view_project_detailed_data for Query Builder – budget_centers_primary_lab_pm
- added Primary Lab PM to RA
Phil 1.27.15
8:00 – 4:00 SR
- Working on promoting the dialog and server components to the Novetta libs folder(s)
- Aaaaaand while working on that I figured I’d make sure that inheritance works with my example server factory class. Turns out the Revealing Module Pattern breaks inheritance because the private functions don’t come along with closure, which surprised me. A google search brings up this post by MetaDuck, which I’m looking at….
- No luck with that. It’s wierd, I’m just not getting the pointer from angular when I inherit. Giving up for a little while.
- Moved password dialog to the novetta libs
- Moved phpConnection to novetta libs
- Ok, after a long walk to clear my head, I realized that my problems are because factories require a return object. This means that you have to change the first line of the inheritance code to store that return object so that it in turn can be returned to angular:
function QueryServiceFn2($http){ var retObj = QueryServiceFn.call(this, $http); globalU.inheritPrototype(this, QueryServiceFn); return retObj; }
- And that works just fine. Going to check that closure works the way that I think it should now. And lo, it does. So here’s a full example of inheriting a factory object:
globalUtils.appMap.phpFactories2 = (function(globalU, base){ "use strict"; function QueryServiceFn($http){ var retObj = base.call(this, $http); globalU.inheritPrototype(this, base); return retObj; } return{ queryServicePtr: QueryServiceFn }; })(globalUtils, globalUtils.appMap.phpFactories.queryServicePtr);
- To override a function, simply declare it normally and then set the pointer in retObj to point at the new version. The only thing to watch out for is that closure won’t hold. If you need access to an item in the base class that’s accessed through closure, you’ll probably have to copy it.
Dong Shin 01.26.2014
- working on Funding Request App
- added a flag and a dialog when clearing data, check for any edits
- fixed a bug in Contract Details – need a copy (deep copy) of the array for independent management
Phil 1.26.14
8:00 – 3:00 SR
- Looks like the presentation went well. Chris wants a single presentation as well, which should be easy – just add the FY to the title and then make one large slideshow.
- Hopefully finishing login directive.
- Added in the factory calls to the http calls. Needed to add an additional then to process the reselts of the password query.
- Working on a reset password capability – done.
- Cleaning up CSS.
Phil 1.23.15
9:00 – 5:00 SR
- Validating that my new, improved inheritance pattern works. Yep!
- Building a login directive using OO. If that all behaves, then I can get back to scatterplot.
- Broke apart the set login/password and the check password functions. For the test app, I’m communicating with PHP, since it comes with apache and I don’t have to spend a lot of time switching between Eclipse/Tomcat and Webstorm.
- Good lord, I’ve completely forgotten how to build a simple directive. Ok, maybe not. What I’m trying to do is make a self-contained directive that will reach out through a couple of objects to a server to set and check a password. The calling page really just needs to know it the directive succeeds. As such, I need to have self contained information in the scope of the directives. After poking around for a while, I discovered that I could declare the variables in the link function, and then refer to them by name using ng-model
- HTML
<div class="passwordDialog" ng-hide="isValid"> <form> Name: <input type="text" ng-model="name" /><br /> Password: <input type="text" ng-model="password" /><br /> <input type="submit" ng-click="checkValues()" value="Check" /> </form> <div> <input type="button" value="Click Me" ng-click="isValid = true"> </div> </div>
- Directive JavaScript
function passwordFn(){ return { restrict: 'AE', scope: {isValid: '@'}, // all we need to return - passed in from calling page. templateUrl: 'directives/passwordDialog.html', link: function(scope, element, attr) { scope.name = 'unset Name'; scope.password = 'unset Password'; scope.checkValues = function(nm,pw){ console.log('scope.name = '+scope.name); //call the server and do tests here. Scope values are visible }; } }; }
Dong Shin 01.23.2014
- worked on Presentation data for past two days
- fixed master table
- worked in getting right data
- working on Funding Request
- deploy wasn’t successful – couldn’t log in. found that the login URL should /login
- adding replace routines for funding request update
Phil 1.22.15
8:00 – 5:00 SR
- Add a script that checks to see if a user has logged in within the last n months. If they have not, delete them
- In future, add a ‘last used’ timestamp to user-generated content so that it can be culled
- Look into why the FinancialAssistantServices logs file is being placed at the root.
- Inheritance. So it turned out that what I thought was parasitic combination inheritance was just parasitic. The globalUtils.inheritPrototype() function was being called before the function/objects were being called. I think that this is because Angular is calling the functions after the other JavaScript is called. Since (I think!) the code has to be structured in this decoupled way to allow flexible use of OO, I had to look again at how all the pieces fit together. It turns out that a properly configured function object that inherits from a base class looks like this:
function ChildFn3(globalService) { console.log("Start ChildFn3"); ChildFn2.call(this, globalService); globalU.inheritPrototype(this, ChildFn2); console.log("Finish ChildFn3"); }
- we can adjust inherited values such as arrays without ‘static’ behaviors as well:
function ChildFn4(globalService) { console.log("Start ChildFn4"); ChildFn2.call(this, globalService); globalU.inheritPrototype(this, ChildFn2); this.colors.push('black'); console.log("Finish ChildFn4"); }
- Here’s the better, running example: http://embed.plnkr.co/KZccZB/preview
Phil 1.21.15
8:00 – 5:00 SR
- Deploying new dynamic chart script
- Fixed a few things, but a Month4 Obligated is not working. Manually updating tables for briefing.
- Got promises to work. This is a very nice thing.
- Working on Object/Function construction and it is way strange. Masking depends on the order of declarations in a very counter intuitive way. More here.
Dong Shin 01.20.2015
- deployed new monthly status script
- changed to put empty values for the non-covering months
- committed amount should be cummulative
- created __view_committed_amounts_cumulative_by_budget_center
- modified __view_project_detailed_data to use the new view
You must be logged in to post a comment.