OOPhoto Prototype - Understanding The Interface Before Defining The Domain Model

Posted July 7, 2008 at 9:33 AM

Tags: ColdFusion

The latest OOPhoto application can be experienced here.

The latest OOPhoto code can be seen here.

I have completed the prototype for OOPhoto - my latest attempt at learning object oriented programming (OOP) in ColdFusion. As I stated before, since I'm really trying to wrap my head around OOP, I am going to be keeping this application as small as I possibly can, while at the same time, trying to touch on several aspects of object oriented programming. In fact, as I was building this prototype and running through the different use-cases, I decided to eliminate the photo sorting; originally, I was gonna use some drag-n-drop functionality, but I decided that that was going to be too much overhead and more of distraction from OO rather than a benefit. Right now, I just want to get my head around the basic, which is hard enough - I can come back afterwards and add the bells and whistles.

Here are the use cases that I ran through:

  • Create a new gallery.
  • View a gallery using a given Jump Code.
  • Find a gallery using a keyword search.
  • Edit an existing gallery using a given Jump Code.
  • Delete a gallery.

Not very many different use cases and only a single persona to test. In my next OOPhoto post, I will start to get into the domain model for this object oriented program. For those of you not familiar with the principles of Interface Driven Architecture, it is crucial that we create a complete and robust prototype before we do any coding. Not only does this allow us to stay very agile, it allows us to get a much more complete understanding of what our domain model will be and the services that will need to be made available. Without a full prototype, it would be extremely difficult to be able to capture the full scope of the project.

I have tested the prototype in FireFox and IE 7. I tried to keep the CSS and XHTML as clean as possible; but, at the same time, I didn't want to lose sight of the primary goal of the project - learning object oriented programming. As such, I held the mark up to a high standard, but did not stress myself too much about the naming convensions and minutia of CSS optimization.

Post Comment  |  Ask Ben  |  Other Searches  |  Print Page


You Might Also Be Interested In:



Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Jul 7, 2008 at 10:10 AM // reply »
34 Comments

Looks good, Ben. I am sorry to hear that the drag-and-drop tool is no longer part of the first version (though I completely understand why). Having messed around with sorting/rearranging items in a number of different situations, I was curious to see how you'd approach it.


Jul 7, 2008 at 10:37 AM // reply »
7,501 Comments

@Brian,

I probably would have just used some sort of "sortable" plug-ins for jQuery. The underlying sort action would have just resorted a hidden ID list:

<input type="hidden" name="lst_photo_id" value="1,5,8,2,4" />

This sort would have then been used to sort the photos on the back end. However, I just feel like it would have been a bit too much for my brain to deal with just now. It's already struggling to absorb all the great stuff the Brian Kotek and others have said in my previous posts.


Jul 7, 2008 at 10:53 AM // reply »
34 Comments

Yep, that would have been the easiest way to do it.

And by leaving it for the next version, you'll get to see how doing things in OO helps with refactoring.


Jul 7, 2008 at 10:55 AM // reply »
7,501 Comments

@Brian,

That is what I am hoping :)


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 15, 2010 at 1:26 PM
Finding The Distance Between Latitude / Longitude Locations In ColdFusion
as i said, "routing". googlemaps work well enough, even here in thailand. if that's not good enough & you have better transport infrastructure data (which is probably the only reason it's not "good ... read »
Mar 15, 2010 at 1:25 PM
Muscle: Confessions Of An Unlikely Bodybuilder By Samuel Wilson Fussell
It's been interesting reading some of the comments on Sam's book. Like Ben, I really appreciated his literary take on the subject of bodybuilding and his reasons for wanting to something more than a ... read »
Mar 15, 2010 at 1:09 PM
Your jQuery Selector Context Can Be A jQuery Object
@Karl, Ah, gotcha; yes you are making sense :) ... read »
Mar 15, 2010 at 1:03 PM
Your jQuery Selector Context Can Be A jQuery Object
@Ben, Yeah. By default, .live() binds events to document and uses event delegation to see if $(event.target).closest(selector) exists before executing your function. As of jQuery 1.4, you can s ... read »
Mar 15, 2010 at 12:52 PM
Finding The Distance Between Latitude / Longitude Locations In ColdFusion
@PaulH, These calcs are fine for flying city-to-city type long distance but does not help too much for driving distances. Any thoughts on driving distance between two geopoints? ... read »
Mar 15, 2010 at 12:50 PM
Your jQuery Selector Context Can Be A jQuery Object
@Karl, Is this for when it uses delegation? ... read »
Mar 15, 2010 at 12:49 PM
Google Maps Not Working in Internet Explorer (IE)
@Ralph, thanks in advance for the look at: http://76.12.123.25/asia/map/ ... read »
Mar 15, 2010 at 12:48 PM
Your jQuery Selector Context Can Be A jQuery Object
There is one case in which you need a DOM node as the "context" argument: when you're using it for the .live() method. Otherwise, you're right. ... read »