-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge create and edit device screen (#1992)
* merge create and edit device screen * fix unit tests * update unit tests * fix solution project * update unit tests * update unit tests * update unit tests * update unit tests * update unit tests * update unit tests --------- Co-authored-by: GuillaumeM <mourlonguillaume@gmail.com>
- Loading branch information
1 parent
8216046
commit 917a8ae
Showing
8 changed files
with
2,180 additions
and
1,871 deletions.
There are no files selected for viewing
815 changes: 815 additions & 0 deletions
815
src/AzureIoTHub.Portal.Client/Components/Devices/EditDevice.razor
Large diffs are not rendered by default.
Oops, something went wrong.
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,11 @@ | ||
// Copyright (c) CGI France. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
namespace AzureIoTHub.Portal.Client.Enums | ||
{ | ||
public enum CreateEditMode | ||
{ | ||
Create, | ||
Edit | ||
} | ||
} |
542 changes: 1 addition & 541 deletions
542
src/AzureIoTHub.Portal.Client/Pages/Devices/CreateDevicePage.razor
Large diffs are not rendered by default.
Oops, something went wrong.
420 changes: 3 additions & 417 deletions
420
src/AzureIoTHub.Portal.Client/Pages/Devices/DeviceDetailPage.razor
Large diffs are not rendered by default.
Oops, something went wrong.
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
1,318 changes: 1,318 additions & 0 deletions
1,318
src/AzureIoTHub.Portal.Tests.Unit/Client/Components/Devices/EditDeviceTests.cs
Large diffs are not rendered by default.
Oops, something went wrong.
403 changes: 12 additions & 391 deletions
403
src/AzureIoTHub.Portal.Tests.Unit/Client/Pages/Devices/CreateDevicePageTests.cs
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.