mirror of https://github.com/buggins/dlangide.git
Merge pull request #60 from default0/project-creation-error-message
Improve project creation error message
This commit is contained in:
commit
cfe4315c8f
|
@ -261,6 +261,9 @@ class NewProjectDlg : Dialog {
|
||||||
_statusText.text = msg;
|
_statusText.text = msg;
|
||||||
return msg.empty;
|
return msg.empty;
|
||||||
}
|
}
|
||||||
|
dstring getError() {
|
||||||
|
return _statusText.text;
|
||||||
|
}
|
||||||
|
|
||||||
ProjectCreationResult _result;
|
ProjectCreationResult _result;
|
||||||
|
|
||||||
|
@ -268,7 +271,7 @@ class NewProjectDlg : Dialog {
|
||||||
Action newaction = action.clone();
|
Action newaction = action.clone();
|
||||||
if (action.id == IDEActions.FileNewWorkspace || action.id == IDEActions.FileNewProject) {
|
if (action.id == IDEActions.FileNewWorkspace || action.id == IDEActions.FileNewProject) {
|
||||||
if (!validate()) {
|
if (!validate()) {
|
||||||
window.showMessageBox(UIString("Cannot create project"d), UIString("Invalid parameters"));
|
window.showMessageBox(UIString("Cannot create project"d), UIString(getError()));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!createProject()) {
|
if (!createProject()) {
|
||||||
|
@ -281,8 +284,11 @@ class NewProjectDlg : Dialog {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool validate() {
|
bool validate() {
|
||||||
if (!exists(_location) || !isDir(_location)) {
|
if (!exists(_location)) {
|
||||||
return setError("Invalid location");
|
return setError("The location directory does not exist");
|
||||||
|
}
|
||||||
|
if(!isDir(_location)) {
|
||||||
|
return setError("The location is not a directory");
|
||||||
}
|
}
|
||||||
if (!isValidProjectName(_projectName))
|
if (!isValidProjectName(_projectName))
|
||||||
return setError("Invalid project name");
|
return setError("Invalid project name");
|
||||||
|
|
Loading…
Reference in New Issue