Merge pull request #60 from default0/project-creation-error-message

Improve project creation error message
This commit is contained in:
Vadim Lopatin 2015-12-09 09:10:36 +03:00
commit cfe4315c8f
1 changed files with 9 additions and 3 deletions

View File

@ -261,6 +261,9 @@ class NewProjectDlg : Dialog {
_statusText.text = msg;
return msg.empty;
}
dstring getError() {
return _statusText.text;
}
ProjectCreationResult _result;
@ -268,7 +271,7 @@ class NewProjectDlg : Dialog {
Action newaction = action.clone();
if (action.id == IDEActions.FileNewWorkspace || action.id == IDEActions.FileNewProject) {
if (!validate()) {
window.showMessageBox(UIString("Cannot create project"d), UIString("Invalid parameters"));
window.showMessageBox(UIString("Cannot create project"d), UIString(getError()));
return;
}
if (!createProject()) {
@ -281,8 +284,11 @@ class NewProjectDlg : Dialog {
}
bool validate() {
if (!exists(_location) || !isDir(_location)) {
return setError("Invalid location");
if (!exists(_location)) {
return setError("The location directory does not exist");
}
if(!isDir(_location)) {
return setError("The location is not a directory");
}
if (!isValidProjectName(_projectName))
return setError("Invalid project name");