125 lines
4.7 KiB
Plaintext
125 lines
4.7 KiB
Plaintext
@namespace Oqtane.Modules.Admin.ModuleCreator
|
|
@inherits ModuleBase
|
|
@inject NavigationManager NavigationManager
|
|
@inject IModuleDefinitionService ModuleDefinitionService
|
|
@inject IModuleService ModuleService
|
|
@inject ISystemService SystemService
|
|
|
|
<table class="table table-borderless">
|
|
<tr>
|
|
<td>
|
|
<Label For="owner" HelpText="Enter the name of the organization who is developing this module. It should not contain spaces or punctuation.">Owner Name: </Label>
|
|
</td>
|
|
<td>
|
|
<input id="owner" class="form-control" @bind="@_owner" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<Label For="module" HelpText="Enter a name for this module. It should not contain spaces or punctuation.">Module Name: </Label>
|
|
</td>
|
|
<td>
|
|
<input id="module" class="form-control" @bind="@_module" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<Label For="description" HelpText="Enter s short description for the module">Description: </Label>
|
|
</td>
|
|
<td>
|
|
<textarea id="description" class="form-control" @bind="@_description" rows="3"></textarea>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<Label For="template" HelpText="Select a module template. Internal modules are created inside of the Oqtane solution. External modules are created outside of the Oqtane solution.">Template: </Label>
|
|
</td>
|
|
<td>
|
|
<select id="template" class="form-control" @onchange="(e => TemplateChanged(e))">
|
|
<option value="-"><Select Template></option>
|
|
<option value="internal">Internal</option>
|
|
<option value="external">External</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
@if (!string.IsNullOrEmpty(_location))
|
|
{
|
|
<tr>
|
|
<td>
|
|
<Label For="location" HelpText="Location where the module will be created">Location: </Label>
|
|
</td>
|
|
<td>
|
|
<input id="module" class="form-control" @bind="@_location" readonly />
|
|
</td>
|
|
</tr>
|
|
}
|
|
</table>
|
|
|
|
<button type="button" class="btn btn-success" @onclick="CreateModule">Create Module</button>
|
|
|
|
@code {
|
|
private string _owner = string.Empty;
|
|
private string _module = string.Empty;
|
|
private string _description = string.Empty;
|
|
private string _template = "-";
|
|
private string _location = string.Empty;
|
|
|
|
public override SecurityAccessLevel SecurityAccessLevel => SecurityAccessLevel.Host;
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
AddModuleMessage("Please Note That Once You Select The Create Module Button The Application Must Restart In Order To Complete The Process. If You Create An External Module You Will Need To Compile The Source Code In Order To Make It Functional.", MessageType.Info);
|
|
}
|
|
|
|
private async Task CreateModule()
|
|
{
|
|
try
|
|
{
|
|
if (!string.IsNullOrEmpty(_owner) && !string.IsNullOrEmpty(_module) && _template != "-")
|
|
{
|
|
var moduleDefinition = new ModuleDefinition { Owner = _owner.Replace(" ", ""), Name = _module.Replace(" ", ""), Description = _description, Template = _template };
|
|
await ModuleDefinitionService.CreateModuleDefinitionAsync(moduleDefinition, ModuleState.ModuleId);
|
|
}
|
|
else
|
|
{
|
|
AddModuleMessage("You Must Provide An Owner, Module Name, And Template", MessageType.Warning);
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
await logger.LogError(ex, "Error Creating Module");
|
|
}
|
|
}
|
|
|
|
private async void TemplateChanged(ChangeEventArgs e)
|
|
{
|
|
try
|
|
{
|
|
_location = string.Empty;
|
|
_template = (string)e.Value;
|
|
if (_template != "-")
|
|
{
|
|
Dictionary<string, string> systeminfo = await SystemService.GetSystemInfoAsync();
|
|
if (systeminfo != null)
|
|
{
|
|
string[] path = systeminfo["serverpath"].Split('\\');
|
|
if (_template == "internal")
|
|
{
|
|
_location = string.Join("\\", path, 0, path.Length - 1) + "\\Oqtane.Client\\Modules\\" + _owner + "." + _module + "s";
|
|
}
|
|
else
|
|
{
|
|
_location = string.Join("\\", path, 0, path.Length - 2) + "\\" + _owner + "." + _module + "s";
|
|
}
|
|
}
|
|
}
|
|
StateHasChanged();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
await logger.LogError(ex, "Error Getting System Info {Error}", ex.Message);
|
|
AddModuleMessage("Error Getting System Info", MessageType.Error);
|
|
}
|
|
}
|
|
}
|