summaryrefslogtreecommitdiff
path: root/src/vgstash_cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/vgstash_cli.py')
-rw-r--r--src/vgstash_cli.py37
1 files changed, 19 insertions, 18 deletions
diff --git a/src/vgstash_cli.py b/src/vgstash_cli.py
index e4d1a32..5aada8c 100644
--- a/src/vgstash_cli.py
+++ b/src/vgstash_cli.py
@@ -28,24 +28,24 @@ def init():
else:
raise sqlite3.OperationalError("Cannot create schema.")
+
def row_format(row, width, header):
"""
- TODO
+ Prints a row from the result set into a nice table.
"""
- # There's another way to do this, involving gathering the entire results and
- # *then* formatting them. That is incredibly wasteful of resources imo, so
- # it may need some testing to see if it's better. Ideally, we'd only make
- # the table as wide as needed; that can't happen unless we know the longest
- # title's length...
-
- twidth = int(width) - 35
+ # The magic number comes from:
+ # game ID (4)
+ # system name (8)
+ # ownership (3)
+ # progress (9)
+ twidth = int(width) - 36
if header == True:
- click.echo("{:^4s} | {:<{w}s} | {:<8s} | {:^3s} | {:<7s}".format(
+ click.echo("{:^4s} | {:<{w}s} | {:<8s} | {:^3s} | {:<9s}".format(
"ID",
"Title",
"System",
"Own",
- "Status",
+ "Progress",
w=twidth)
)
click.echo("-" * int(width))
@@ -56,15 +56,16 @@ def row_format(row, width, header):
# unowned, physical, digital, both
ownltr = [' ', 'P', ' D', 'P D']
ownstr = "{: <3s}".format(ownltr[row['ownership']])
- statltr = {
- -1: 'U',
- 0: 'N',
- 1: 'P',
- 2: 'B',
- 3: 'C'
+ progltr = {
+ 0: '',
+ 1: 'N',
+ 2: 'P',
+ 3: 'B',
+ 4: 'C'
}
- statstr = "{: <7s}".format((" " * row['progress'] * 2) + statltr[row['progress']])
- print(" | ".join((gidstr, titlestr, systemstr, ownstr, statstr)))
+ progstr = "{: <7s}".format((" " * row['progress'] * 2) + progltr[row['progress']])
+ print(" | ".join((gidstr, titlestr, systemstr, ownstr, progstr)))
+
@cli.command('add')
@click.argument('title', type=str)
deletions'>-80/+67 2018-09-03Branch off from master with pytest, tox, clickzlg16-778/+779 2018-03-18Flesh out filter types and ownership statuszlg3-82/+144 2018-03-18README.mdown: break line correctlyzlg1-1/+1 2018-03-18add 'playlog' list filterzlg2-2/+9 2018-03-13Update helpers a bitzlg1-2/+9 2018-03-13Make VGSTASH_DB_LOCATION point to a filezlg2-21/+20 2016-11-18Remove settings from helpers.shZe Libertine Gamer1-5/+0 2016-11-15Correct phrasing in README.Ze Libertine Gamer1-4/+4 2016-11-13DerpZe Libertine Gamer1-0/+1 2016-11-03Improve error handling in shell scriptsZe Libertine Gamer4-3/+23 2016-10-24Correct run_again, add recursionZe Libertine Gamer1-0/+4 2016-10-21Add quotes to correct behavior for arglistZe Libertine Gamer1-1/+1 2016-10-14updater.sh: add recursion, error handlingZe Libertine Gamer1-43/+101 2016-10-14Correct pipe-handling behaviorZe Libertine Gamer1-1/+9 2016-10-12Clarify a method to move between platformsZe Libertine Gamer1-2/+5