Refactored new and process actions to ask the user for a context.
Also added logic to copy items to their correct project folder if a project is given and the corresponding project folder exists.
This commit is contained in:
parent
9fee96cb25
commit
085b8d1d14
@ -1,8 +1,8 @@
|
|||||||
#Tue, 08 Oct 2013 14:15:21 -0500
|
#Mon, 21 Oct 2013 14:00:48 +0000
|
||||||
lib.local=true
|
lib.local=true
|
||||||
name=jdb-gtd
|
name=jdb-gtd
|
||||||
version=1.3
|
version=1.4
|
||||||
nailgun.classpath.dir=/home/jdbernard/programs/nailgun/classpath
|
nailgun.classpath.dir=/home/jdbernard/programs/nailgun/classpath
|
||||||
executable.jar=true
|
executable.jar=true
|
||||||
main.class=com.jdblabs.gtd.cli.GTDCLI
|
main.class=com.jdblabs.gtd.cli.GTDCLI
|
||||||
build.number=2
|
build.number=1
|
||||||
|
@ -184,6 +184,7 @@ public class GTDCLI {
|
|||||||
println ""
|
println ""
|
||||||
def response
|
def response
|
||||||
def readline = {stdin.nextLine().trim()}
|
def readline = {stdin.nextLine().trim()}
|
||||||
|
def oldFile = item.file
|
||||||
|
|
||||||
/// 1. Is it actionable?
|
/// 1. Is it actionable?
|
||||||
if (!item.title) item.title = filenameToString(item.file)
|
if (!item.title) item.title = filenameToString(item.file)
|
||||||
@ -209,7 +210,6 @@ public class GTDCLI {
|
|||||||
PropertyHelp.parse(parts[1].trim())
|
PropertyHelp.parse(parts[1].trim())
|
||||||
print "> " }
|
print "> " }
|
||||||
|
|
||||||
def oldFile = item.file
|
|
||||||
item.file = new File(gtdDirs.incubate, item.file.name)
|
item.file = new File(gtdDirs.incubate, item.file.name)
|
||||||
item.save()
|
item.save()
|
||||||
oldFile.delete() }
|
oldFile.delete() }
|
||||||
@ -224,7 +224,6 @@ public class GTDCLI {
|
|||||||
readline();
|
readline();
|
||||||
|
|
||||||
def date = new DateMidnight().toString("YYYY-MM-dd")
|
def date = new DateMidnight().toString("YYYY-MM-dd")
|
||||||
def oldFile = item.file
|
|
||||||
item.file = new File(gtdDirs.done, "$date-${item.file.name}")
|
item.file = new File(gtdDirs.done, "$date-${item.file.name}")
|
||||||
item.save()
|
item.save()
|
||||||
oldFile.delete()
|
oldFile.delete()
|
||||||
@ -250,7 +249,6 @@ public class GTDCLI {
|
|||||||
|
|
||||||
/// Yes, this deserves it's own project folder.
|
/// Yes, this deserves it's own project folder.
|
||||||
if (response ==~ /yes|y/) {
|
if (response ==~ /yes|y/) {
|
||||||
def oldFile = item.file
|
|
||||||
item.file = new File(gtdDirs.projects,
|
item.file = new File(gtdDirs.projects,
|
||||||
stringToFilename(item.outcome))
|
stringToFilename(item.outcome))
|
||||||
item.save()
|
item.save()
|
||||||
@ -271,27 +269,16 @@ public class GTDCLI {
|
|||||||
item.action = prompt([
|
item.action = prompt([
|
||||||
"Next action (who needs to do what).", ""])
|
"Next action (who needs to do what).", ""])
|
||||||
|
|
||||||
def oldFile = item.file
|
item.file = new File(promptContext(gtdDirs.waiting),
|
||||||
item.file = new File(gtdDirs.waiting,
|
stringToFilename(item.action)) }
|
||||||
stringToFilename(item.action))
|
|
||||||
item.save()
|
|
||||||
oldFile.delete()
|
|
||||||
|
|
||||||
println "Moved to ${gtdDirs.waiting.name} folder." }
|
|
||||||
|
|
||||||
|
|
||||||
/// Defer, move to teh *next-actions* folder.
|
/// Defer, move to the *next-actions* folder.
|
||||||
else if (response =~ /def/) {
|
else if (response =~ /def/) {
|
||||||
item.action = prompt(["Next action.", ""])
|
item.action = prompt(["Next action.", ""])
|
||||||
|
|
||||||
def oldFile = item.file
|
item.file = new File(promptContext(gtdDirs["next-actions"]),
|
||||||
item.file = new File(gtdDirs["next-actions"],
|
stringToFilename(item.action)) }
|
||||||
stringToFilename(item.action))
|
|
||||||
item.save()
|
|
||||||
oldFile.delete()
|
|
||||||
|
|
||||||
println "Moved to the ${gtdDirs['next-actions'].name} folder."
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Forget for now, move it to the *tickler* folder.
|
/// Forget for now, move it to the *tickler* folder.
|
||||||
else {
|
else {
|
||||||
@ -300,12 +287,26 @@ public class GTDCLI {
|
|||||||
"When do you want it to become active?",
|
"When do you want it to become active?",
|
||||||
"(YYYY-MM-DD)"])
|
"(YYYY-MM-DD)"])
|
||||||
|
|
||||||
def oldFile = item.file
|
|
||||||
item.file = new File(gtdDirs.tickler,
|
item.file = new File(gtdDirs.tickler,
|
||||||
|
stringToFilename(item.action)) }
|
||||||
|
|
||||||
|
item.save()
|
||||||
|
oldFile.delete()
|
||||||
|
|
||||||
|
println "Moved to " +
|
||||||
|
getRelativePath(gtdDirs.root, item.file.parentFile)
|
||||||
|
|
||||||
|
/// If we have a project property, and a corresponding
|
||||||
|
/// project folder exists, copy the item there.
|
||||||
|
def projectDir = new File(gtdDirs.projects,
|
||||||
|
item.project ?: '')
|
||||||
|
if (item.project && projectDir.exists() &&
|
||||||
|
projectDir.isDirectory()) {
|
||||||
|
item.file = new File(projectDir,
|
||||||
stringToFilename(item.action))
|
stringToFilename(item.action))
|
||||||
item.save()
|
item.save()
|
||||||
oldFile.delete()
|
println "Copied to " +
|
||||||
println "Moved to the ${gtdDirs.tickler.name} folder." } } } } }
|
getRelativePath(gtdDirs.root, item.file.parentFile) } } } } }
|
||||||
|
|
||||||
/** #### `done`
|
/** #### `done`
|
||||||
* Implement the `done` command to mark items as completed. For detailed
|
* Implement the `done` command to mark items as completed. For detailed
|
||||||
@ -475,7 +476,16 @@ public class GTDCLI {
|
|||||||
PropertyHelp.parse(parts[1].trim())
|
PropertyHelp.parse(parts[1].trim())
|
||||||
print "> " }
|
print "> " }
|
||||||
|
|
||||||
item.save() }
|
item.save()
|
||||||
|
|
||||||
|
/// If we have a project property, and a corresponding project folder
|
||||||
|
/// exists, copy the item there.
|
||||||
|
def projectDir = new File(gtdDirs.projects, item.project ?: '')
|
||||||
|
if (item.project && projectDir.exists() && projectDir.isDirectory()) {
|
||||||
|
item.file = new File(projectDir, stringToFilename(item.action))
|
||||||
|
item.save()
|
||||||
|
println "Copied to " +
|
||||||
|
getRelativePath(gtdDirs.root, item.file.parentFile) } }
|
||||||
|
|
||||||
/** #### `tickler`
|
/** #### `tickler`
|
||||||
* Implement the `tickler` command to move items in the *tickler* folder to
|
* Implement the `tickler` command to move items in the *tickler* folder to
|
||||||
@ -707,6 +717,28 @@ context or project is named, all contexts are listed."""
|
|||||||
|
|
||||||
return line }
|
return line }
|
||||||
|
|
||||||
|
/** #### `promptContext`
|
||||||
|
* Prompt the user to choose a context (subdirectory of the given
|
||||||
|
* directory). */
|
||||||
|
protected File promptContext(File baseDir) {
|
||||||
|
print "Context?> "
|
||||||
|
def line
|
||||||
|
def contextFile
|
||||||
|
|
||||||
|
line = stdin.nextLine().trim()
|
||||||
|
contextFile = line ? new File(baseDir, line) : baseDir
|
||||||
|
|
||||||
|
while (!contextFile.exists() || !contextFile.isDirectory()) {
|
||||||
|
println "Available contexts:"
|
||||||
|
baseDir.eachDir { print "\t${it.name}"}
|
||||||
|
println ""
|
||||||
|
|
||||||
|
print "Context?> "
|
||||||
|
line = stdin.nextLine().trim()
|
||||||
|
contextFile = line ? new File(baseDir, line) : baseDir }
|
||||||
|
|
||||||
|
return contextFile }
|
||||||
|
|
||||||
/** #### `filenameToString`
|
/** #### `filenameToString`
|
||||||
* The default pretty-print conversion for filenames. */
|
* The default pretty-print conversion for filenames. */
|
||||||
public static String filenameToString(File f) {
|
public static String filenameToString(File f) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user