mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
fixes #87 cli create problem
This commit is contained in:
parent
a819782e5a
commit
7a1aabd123
1 changed files with 16 additions and 12 deletions
28
cbpi/cli.py
28
cbpi/cli.py
|
@ -15,7 +15,7 @@ from colorama import Fore, Back, Style
|
||||||
import importlib
|
import importlib
|
||||||
from importlib_metadata import metadata
|
from importlib_metadata import metadata
|
||||||
from tabulate import tabulate
|
from tabulate import tabulate
|
||||||
from inquirer import prompt
|
import inquirer
|
||||||
import platform
|
import platform
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
@ -74,19 +74,17 @@ class CraftBeerPiCli():
|
||||||
print(Fore.LIGHTGREEN_EX, tabulate(result, headers="keys"), Style.RESET_ALL)
|
print(Fore.LIGHTGREEN_EX, tabulate(result, headers="keys"), Style.RESET_ALL)
|
||||||
|
|
||||||
|
|
||||||
def plugin_create(self):
|
def plugin_create(self, pluginName):
|
||||||
print("Plugin Creation")
|
print("Plugin Creation")
|
||||||
print("")
|
print("")
|
||||||
|
|
||||||
questions = [
|
questions = [ inquirer.Text('name', message='Plugin Name (will be prefixed with "cbpi4-")', default=pluginName),]
|
||||||
{
|
|
||||||
'type': 'input',
|
|
||||||
'name': 'name',
|
|
||||||
'message': 'Plugin Name:',
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
answers = prompt(questions)
|
answers = inquirer.prompt(questions)
|
||||||
|
|
||||||
|
if answers["name"] == "":
|
||||||
|
print("you failed to provide a name for the new plugin - terminating")
|
||||||
|
return
|
||||||
|
|
||||||
name = "cbpi4-" + str(answers["name"]).replace('_', '-').replace(' ', '-')
|
name = "cbpi4-" + str(answers["name"]).replace('_', '-').replace(' ', '-')
|
||||||
if os.path.exists(os.path.join(".", name)) is True:
|
if os.path.exists(os.path.join(".", name)) is True:
|
||||||
|
@ -284,9 +282,15 @@ def plugins(context):
|
||||||
|
|
||||||
@main.command()
|
@main.command()
|
||||||
@click.pass_context
|
@click.pass_context
|
||||||
def create(context):
|
@click.argument('pluginname', nargs=-1, required=False)
|
||||||
|
def create(context, pluginname=[]):
|
||||||
'''Create New Plugin'''
|
'''Create New Plugin'''
|
||||||
context.obj.plugin_create()
|
sentence = ""
|
||||||
|
for word in pluginname:
|
||||||
|
if sentence != "":
|
||||||
|
sentence += " "
|
||||||
|
sentence += word
|
||||||
|
context.obj.plugin_create(sentence)
|
||||||
|
|
||||||
@main.command()
|
@main.command()
|
||||||
@click.pass_context
|
@click.pass_context
|
||||||
|
|
Loading…
Reference in a new issue