Merge pull request #896 from hishamco/localize-themes-pages
Localize Themes Pages
This commit is contained in:
		| @ -1,38 +1,39 @@ | ||||
| @namespace Oqtane.Modules.Admin.Themes | ||||
| @namespace Oqtane.Modules.Admin.Themes | ||||
| @inherits ModuleBase | ||||
| @inject NavigationManager NavigationManager | ||||
| @inject IFileService FileService | ||||
| @inject IThemeService ThemeService | ||||
| @inject IPackageService PackageService | ||||
| @inject IStringLocalizer<Add> Localizer | ||||
|  | ||||
| @if (_packages != null) | ||||
| { | ||||
|     <TabStrip> | ||||
|         @if (_packages.Count > 0) | ||||
|         { | ||||
|             <TabPanel Name="Download"> | ||||
|             <TabPanel Name="Download" ResourceKey="Download"> | ||||
|                 <ModuleMessage Type="MessageType.Info" Message="Download one or more themes from the list below. Once you are ready click Install to complete the installation."></ModuleMessage> | ||||
|                 <Pager Items="@_packages"> | ||||
|                     <Header> | ||||
|                         <th>Name</th> | ||||
|                         <th>Version</th> | ||||
|                         <th>@Localizer["Name"]</th> | ||||
|                         <th>@Localizer["Version"]</th> | ||||
|                         <th style="width: 1px;"></th> | ||||
|                     </Header> | ||||
|                     <Row> | ||||
|                         <td>@context.Name</td> | ||||
|                         <td>@context.Version</td> | ||||
|                         <td> | ||||
|                             <button type="button" class="btn btn-primary" @onclick=@(async () => await DownloadTheme(context.PackageId, context.Version))>Download</button> | ||||
|                             <button type="button" class="btn btn-primary" @onclick=@(async () => await DownloadTheme(context.PackageId, context.Version))>@Localizer["Download"]</button> | ||||
|                         </td> | ||||
|                     </Row> | ||||
|                 </Pager> | ||||
|             </TabPanel> | ||||
|         } | ||||
|         <TabPanel Name="Upload"> | ||||
|         <TabPanel Name="Upload" ResourceKey="Upload"> | ||||
|             <table class="table table-borderless"> | ||||
|                 <tr> | ||||
|                     <td> | ||||
|                         <Label HelpText="Upload one or more theme packages. Once they are uploaded click Install to complete the installation.">Theme: </Label> | ||||
|                         <Label HelpText="Upload one or more theme packages. Once they are uploaded click Install to complete the installation." ResourceKey="Theme">Theme: </Label> | ||||
|                     </td> | ||||
|                     <td> | ||||
|                         <FileManager Filter="nupkg" ShowFiles="false" Folder="Themes" UploadMultiple="@true" /> | ||||
| @ -42,8 +43,8 @@ | ||||
|         </TabPanel> | ||||
|     </TabStrip> | ||||
|  | ||||
|     <button type="button" class="btn btn-success" @onclick="InstallThemes">Install</button> | ||||
|     <NavLink class="btn btn-secondary" href="@NavigateUrl()">Cancel</NavLink> | ||||
|     <button type="button" class="btn btn-success" @onclick="InstallThemes">@Localizer["Install"]</button> | ||||
|     <NavLink class="btn btn-secondary" href="@NavigateUrl()">@Localizer["Cancel"]</NavLink> | ||||
| } | ||||
|  | ||||
| @code { | ||||
|  | ||||
| @ -1,9 +1,10 @@ | ||||
| @namespace Oqtane.Modules.Admin.Themes | ||||
| @namespace Oqtane.Modules.Admin.Themes | ||||
| @using System.Net | ||||
| @inherits ModuleBase | ||||
| @inject NavigationManager NavigationManager | ||||
| @inject IThemeService ThemeService | ||||
| @inject IPackageService PackageService | ||||
| @inject IStringLocalizer<Index> Localizer | ||||
|  | ||||
| @if (_themes == null) | ||||
| { | ||||
| @ -17,16 +18,16 @@ else | ||||
|         <Header> | ||||
|             <th style="width: 1px;"> </th> | ||||
|             <th style="width: 1px;"> </th> | ||||
|             <th scope="col">Name</th> | ||||
|             <th scope="col">Version</th> | ||||
|             <th scope="col">@Localizer["Name"]</th> | ||||
|             <th scope="col">@Localizer["Version"]</th> | ||||
|             <th> </th> | ||||
|         </Header> | ||||
|         <Row> | ||||
|             <td><ActionLink Action="View" Parameters="@($"name=" + WebUtility.UrlEncode(context.ThemeName))" /></td> | ||||
|             <td><ActionLink Action="View" Parameters="@($"name=" + WebUtility.UrlEncode(context.ThemeName))" ResourceKey="ViewTheme" /></td> | ||||
|             <td> | ||||
|                 @if (context.AssemblyName != "Oqtane.Client") | ||||
|                     { | ||||
|                     <ActionDialog Header="Delete Theme" Message="@("Are You Sure You Wish To Delete The " + context.Name + " Theme?")" Action="Delete" Security="SecurityAccessLevel.Host" Class="btn btn-danger" OnClick="@(async () => await DeleteTheme(context))" /> | ||||
|                     <ActionDialog Header="Delete Theme" Message="@("Are You Sure You Wish To Delete The " + context.Name + " Theme?")" Action="Delete" Security="SecurityAccessLevel.Host" Class="btn btn-danger" OnClick="@(async () => await DeleteTheme(context))" ResourceKey="DeleteTheme" /> | ||||
|                     } | ||||
|             </td> | ||||
|             <td>@context.Name</td> | ||||
| @ -34,7 +35,7 @@ else | ||||
|             <td> | ||||
|                 @if (UpgradeAvailable(context.ThemeName, context.Version)) | ||||
|                     { | ||||
|                     <button type="button" class="btn btn-success" @onclick=@(async () => await DownloadTheme(context.ThemeName, context.Version))>Upgrade</button> | ||||
|                 <button type="button" class="btn btn-success" @onclick=@(async () => await DownloadTheme(context.ThemeName, context.Version))>@Localizer["Upgrade"]</button> | ||||
|                     } | ||||
|             </td> | ||||
|             <td></td> | ||||
|  | ||||
| @ -1,13 +1,14 @@ | ||||
| @namespace Oqtane.Modules.Admin.Themes | ||||
| @namespace Oqtane.Modules.Admin.Themes | ||||
| @using System.Net | ||||
| @inherits ModuleBase | ||||
| @inject IThemeService ThemeService | ||||
| @inject NavigationManager NavigationManager | ||||
| @inject IStringLocalizer<View> Localizer | ||||
|  | ||||
| <table class="table table-borderless"> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="name" HelpText="The name of the theme">Name: </Label> | ||||
|             <Label For="name" HelpText="The name of the theme" ResourceKey="Name">Name: </Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <input id="name" class="form-control" @bind="@_name" disabled /> | ||||
| @ -15,7 +16,7 @@ | ||||
|     </tr> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="themename" HelpText="The internal name of the module">Internal Name: </Label> | ||||
|             <Label For="themename" HelpText="The internal name of the module" ResourceKey="InternalName">Internal Name: </Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <input id="themename" class="form-control" @bind="@_themeName" disabled /> | ||||
| @ -23,7 +24,7 @@ | ||||
|     </tr> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="version" HelpText="The version of the thene">Version: </Label> | ||||
|             <Label For="version" HelpText="The version of the thene" ResourceKey="Version">Version: </Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <input id="version" class="form-control" @bind="@_version" disabled /> | ||||
| @ -31,7 +32,7 @@ | ||||
|     </tr> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="owner" HelpText="The owner or creator of the theme">Owner: </Label> | ||||
|             <Label For="owner" HelpText="The owner or creator of the theme" ResourceKey="Owner">Owner: </Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <input id="owner" class="form-control" @bind="@_owner" disabled /> | ||||
| @ -39,7 +40,7 @@ | ||||
|     </tr> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="url" HelpText="The reference url of the theme">Reference Url: </Label> | ||||
|             <Label For="url" HelpText="The reference url of the theme" ResourceKey="ReferenceUrl">Reference Url: </Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <input id="url" class="form-control" @bind="@_url" disabled /> | ||||
| @ -47,7 +48,7 @@ | ||||
|     </tr> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="contact" HelpText="The contact for the theme">Contact: </Label> | ||||
|             <Label For="contact" HelpText="The contact for the theme" ResourceKey="Contact">Contact: </Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <input id="contact" class="form-control" @bind="@_contact" disabled /> | ||||
| @ -55,14 +56,14 @@ | ||||
|     </tr> | ||||
|     <tr> | ||||
|         <td> | ||||
|             <Label For="license" HelpText="The license of the theme">License: </Label> | ||||
|             <Label For="license" HelpText="The license of the theme" ResourceKey="License">License: </Label> | ||||
|         </td> | ||||
|         <td> | ||||
|             <textarea id="license" class="form-control" @bind="@_license" rows="5" disabled></textarea> | ||||
|         </td> | ||||
|     </tr> | ||||
| </table> | ||||
| <NavLink class="btn btn-secondary" href="@NavigateUrl()">Cancel</NavLink> | ||||
| <NavLink class="btn btn-secondary" href="@NavigateUrl()">@Localizer["Cancel"]</NavLink> | ||||
|  | ||||
| @code { | ||||
|     private string _themeName = ""; | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Shaun Walker
					Shaun Walker