-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Show confirmation dialog (#221) * Added `showConfirmation` to replace native JS alert using `MessageBox.ts` * Validations and bug fixes * Don't use showConfirmation at deleteFile (modal inside modal) * Missing jjmasterdata.js * Load Additional ConnectionStrings from IOptions (#220) AdditionalConnectionStrings * Encryption fixes * UI and rename `showConfirmation` to `showConfirmationMessage` * Create _ConnectionStringModel.cshtml * Created `jj-list-group` CSS class * Fixed `ExpressionTagHelper` at FloatingLabel * `IconPickerTagHelper` bug fix * _Menu `ms-auto` * Better NCalc extension method with pre-configured options (#223) * Message toast (#224) A simple toast message * Added `GetDataSet` methods to `DataAccess` (#226) * Add `GetDataSet` to `IEntityRepository` * Invert `MessageBox.ts` `showConfirmationMessage` buttons * Fix CodeMirror not looking good at Dark Mode * Added `GetDataSetAsync` * Update docs * Update to NCalc v13 (#230) * Update to NCalc v13 * Added --md-sticky-top-height variable * Change `GetDataSetAsync` CommandBehavior * Delete unused class * Remove unused `DeleteSelectedRowsAction` * `ModelStateWrapper` now allow empty `ModelStateDictionary` * Adjust the log layout * Breadcrumb Component * Added `TypeIdentifier` to `FormElement` * Use Breadcrumb component * Added `Content` init accessor to `BreadcrumbItem` * Breadcrumb development * Support FormElement Identifier * Add default padding to `_MasterDataLayout` * Adjust Horizontal Layout * `ViewBag.IsForm` conditionals * Added `ExpressionDataAccessCommandFactory` * Added ModelState support to `ValidationSummary` taghelper * Added `JJOffcanvas` * Remove dependencies from About * Allow `JJDataPanel` at `PageState.Filter` (#232) * Fix `DbLogger` eventId and added `LogGridViewDataSourceException` * Move Floating Labels to `FormElementOptions` * Added `GridRenderingTemplate` * l10n and missing `JsonProperty` * Fix `PdfWriter.cs` * `loadFieldDetails` bug fix * Fix `list-group-item` at dark theme. * Use `ExpressionHelper` for `GridRenderingTemplate` * Fix `DataItem.Command.Sql` editor * Add `ViewBag.IsForm` to `_FieldLayout.cshtml` * Update Directory.Build.props * fix Settings breadcrumb * bugfix: Add `IFloatingLabelControl` to handle more floating label components * bugfix: Add `small` CSS class to selected items at `GridPagination` * Remove unnecesary async keyword at OffcanvasHelper.ts * Remove unnecessary `SetsRequiredMembersAttribute` * Added `MessageToastTagHelper` and `MessageToast.ts` * Update NCalc to v4 - Now without Antlr! * Update Core.csproj * Added actions to `JJTitle` and allow editing element from /Render * Improve `JJDataPanel` debug by using `Task<List<HtmlBuilder>>` instead of `IAsyncEnumerable<HtmlBuilder>` * bugfix: `DataPanel` not respecting `AutoReloadFormFields` * bugfix: `Modal.ts` not using `getMasterDataForm()` * Improve debug by removing `System.Linq.Async` from `JJMasterData.Commons` * Improve HtmlBuilder performance (dotnet/runtime/issues/57748) * Fix `InsertAtGridView` DataPanel `AutoReloadFormFields` behavior. * Hide `BackAction` when `IsChildFormView` * Remove redundant value * Remove More from `_Menu` * Remove preview from package version and update plugins --------- Co-authored-by: Gustavo Mauricio de Barros <[email protected]>
- Loading branch information
1 parent
6efea7a
commit ad3e577
Showing
224 changed files
with
3,319 additions
and
1,936 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#nullable enable | ||
using System; | ||
using System.Diagnostics.CodeAnalysis; | ||
|
||
namespace JJMasterData.Commons.Configuration.Options; | ||
|
||
public class ConnectionString() | ||
{ | ||
[SetsRequiredMembers] | ||
public ConnectionString(string connectionString, string connectionProvider) : this() | ||
{ | ||
Connection = connectionString; | ||
ConnectionProvider = connectionProvider; | ||
} | ||
|
||
public Guid Guid { get; init; } = Guid.NewGuid(); | ||
public required string? Name { get; init; } | ||
public required string Connection { get; init; } | ||
public required string ConnectionProvider { get; init; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#nullable enable | ||
|
||
namespace JJMasterData.Commons.Data; | ||
|
||
public class ConnectionResult(bool isConnectionSuccessful, string? errorMessage) | ||
{ | ||
public bool? IsConnectionSuccessful { get; } = isConnectionSuccessful; | ||
public string? ErrorMessage { get; } = errorMessage; | ||
} |
Oops, something went wrong.