ecr.commands.cmd_now

src/ecr/commands/cmd_now.py
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
from typing import cast

from .. import log, shared, ui
from ..core import WorkManager
from ..ui.command import Command, Namespace, ReturnCode
from .helper import assertInited


class NowCommand(Command):
    @staticmethod
    def default(args: Namespace)->ReturnCode:  # pylint: disable=W0613
        if not assertInited():
            return ReturnCode.UNLOADED
        tman: WorkManager = cast(WorkManager, shared.getManager())
        if tman.setCurrent(args.file, args.dir):
            return ReturnCode.OK
        else:
            msg = "Load work-item failed"
            log.error(msg)
            ui.getConsole().error(msg)
            return ReturnCode.ERROR

    def __init__(self):
        super().__init__("now", help="Change current file", func=NowCommand.default)

    def createParser(self, parsers):
        cmd = super().createParser(parsers)
        cmd.add_argument("file", nargs="?", default=None, type=str,
                         help="Set current file (clear for none)")
        cmd.add_argument("-d", "--dir", action="store_true",
                         default=False, help="As directory")
        return cmd