Browse Source

shop-page design

pull/1994/head
Begli Nazarov 2 years ago
parent
commit
f71825a552
16 changed files with 11258 additions and 14350 deletions
  1. +1
    -1
      src/Services/Basket/Basket.API/Startup.cs
  2. +1
    -1
      src/Services/Catalog/Catalog.API/Properties/launchSettings.json
  3. +1
    -1
      src/Services/Catalog/Catalog.API/Startup.cs
  4. +1
    -1
      src/Services/Identity/Identity.API/Properties/launchSettings.json
  5. +11
    -11
      src/Services/Identity/Identity.API/libman.json
  6. +1
    -1
      src/Services/Ordering/Ordering.API/Startup.cs
  7. +1
    -1
      src/Services/Webhooks/Webhooks.API/Startup.cs
  8. +1438
    -260
      src/Web/WebSPA/Client/package-lock.json
  9. +9755
    -7809
      src/Web/WebSPA/Client/yarn.lock
  10. +3
    -1
      src/Web/WebUI/Views/Shared/_Layout.cshtml
  11. +24
    -23
      src/Web/WebUI/appsettings.json
  12. +4
    -1
      src/Web/WebUI/bundleconfig.json
  13. +3
    -4
      src/Web/WebUI/web.config
  14. +14
    -1
      src/Web/WebUI/wwwroot/css/site.min.css
  15. +0
    -3117
      src/Web/WebUI/wwwroot/js/site.js
  16. +0
    -3117
      src/Web/WebUI/wwwroot/js/site.min.js

+ 1
- 1
src/Services/Basket/Basket.API/Startup.cs View File

@ -31,7 +31,7 @@ public class Startup
{ {
options.SwaggerDoc("v1", new OpenApiInfo options.SwaggerDoc("v1", new OpenApiInfo
{ {
Title = "eShopOnContainers - Basket HTTP API",
Title = "Hemmez - Basket HTTP API",
Version = "v1", Version = "v1",
Description = "The Basket Service HTTP API" Description = "The Basket Service HTTP API"
}); });


+ 1
- 1
src/Services/Catalog/Catalog.API/Properties/launchSettings.json View File

@ -3,7 +3,7 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "http://localhost:57424/",
"applicationUrl": "http://localhost:5101/",
"sslPort": 0 "sslPort": 0
} }
}, },


+ 1
- 1
src/Services/Catalog/Catalog.API/Startup.cs View File

@ -224,7 +224,7 @@ public static class CustomExtensionMethods
{ {
options.SwaggerDoc("v1", new OpenApiInfo options.SwaggerDoc("v1", new OpenApiInfo
{ {
Title = "eShopOnContainers - Catalog HTTP API",
Title = "Hemmez - Catalog HTTP API",
Version = "v1", Version = "v1",
Description = "The Catalog Microservice HTTP API. This is a Data-Driven/CRUD microservice sample" Description = "The Catalog Microservice HTTP API. This is a Data-Driven/CRUD microservice sample"
}); });


+ 1
- 1
src/Services/Identity/Identity.API/Properties/launchSettings.json View File

@ -3,7 +3,7 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "http://localhost:54010/",
"applicationUrl": "http://localhost:5105/",
"sslPort": 0 "sslPort": 0
} }
}, },


+ 11
- 11
src/Services/Identity/Identity.API/libman.json View File

@ -7,17 +7,17 @@
"destination": "wwwroot/lib/jquery/" "destination": "wwwroot/lib/jquery/"
}, },
{ {
"provider": "unpkg",
"library": "bootstrap@4.1.3",
"files": [
"dist/css/bootstrap.css",
"dist/css/bootstrap.css.map",
"dist/css/bootstrap.min.css",
"dist/css/bootstrap.min.css.map",
"dist/js/bootstrap.js",
"dist/js/bootstrap.min.js"
],
"destination": "wwwroot/lib/bootstrap/"
"provider": "jsdelivr",
"library": "bootstrap@5.2.2",
"destination": "wwwroot/lib/bootstrap/",
"files": [
"dist/css/bootstrap.css",
"dist/css/bootstrap.css.map",
"dist/css/bootstrap.min.css",
"dist/css/bootstrap.min.css.map",
"dist/js/bootstrap.js",
"dist/js/bootstrap.min.js"
]
}, },
{ {
"library": "jquery-validation-unobtrusive@3.2.10", "library": "jquery-validation-unobtrusive@3.2.10",


+ 1
- 1
src/Services/Ordering/Ordering.API/Startup.cs View File

@ -216,7 +216,7 @@ static class CustomExtensionsMethods
{ {
options.SwaggerDoc("v1", new OpenApiInfo options.SwaggerDoc("v1", new OpenApiInfo
{ {
Title = "eShopOnContainers - Ordering HTTP API",
Title = "Hemmez - Ordering HTTP API",
Version = "v1", Version = "v1",
Description = "The Ordering Service HTTP API" Description = "The Ordering Service HTTP API"
}); });


+ 1
- 1
src/Services/Webhooks/Webhooks.API/Startup.cs View File

@ -141,7 +141,7 @@ static class CustomExtensionMethods
{ {
options.SwaggerDoc("v1", new OpenApiInfo options.SwaggerDoc("v1", new OpenApiInfo
{ {
Title = "eShopOnContainers - Webhooks HTTP API",
Title = "Hemmez - Webhooks HTTP API",
Version = "v1", Version = "v1",
Description = "The Webhooks Microservice HTTP API. This is a simple webhooks CRUD registration entrypoint" Description = "The Webhooks Microservice HTTP API. This is a simple webhooks CRUD registration entrypoint"
}); });


+ 1438
- 260
src/Web/WebSPA/Client/package-lock.json
File diff suppressed because it is too large
View File


+ 9755
- 7809
src/Web/WebSPA/Client/yarn.lock
File diff suppressed because it is too large
View File


+ 3
- 1
src/Web/WebUI/Views/Shared/_Layout.cshtml View File

@ -805,7 +805,9 @@
</p> </p>
</div> </div>
<div class="payment-image text-center mb-25"> <div class="payment-image text-center mb-25">
<a href="contact.html"><img src="assets/img/payment/payment.png" alt=""></a>
<a href="contact.html">
<img src="assets/img/payment/payment.png" alt="">
</a>
</div> </div>
<div class="copy-right-area text-center"> <div class="copy-right-area text-center">
<p>Copyright © <span>DukaMarket.</span> All Rights Reserved. Powered by <a href="#"><span class="main-color">Theme_Pure.</span></a></p> <p>Copyright © <span>DukaMarket.</span> All Rights Reserved. Powered by <a href="#"><span class="main-color">Theme_Pure.</span></a></p>


+ 24
- 23
src/Web/WebUI/appsettings.json View File

@ -1,25 +1,26 @@
{ {
"CatalogUrl": "http://localhost:5101",
"OrderingUrl": "http://localhost:5102",
"BasketUrl": "http://localhost:5103",
"IdentityUrl": "http://localhost:5105",
"CallBackUrl": "http://localhost:5100/",
"IsClusterEnv": "False",
"UseResilientHttp": "True",
"UseLoadTest": false,
"ActivateCampaignDetailFunction": "False",
"UseCustomizationData": false,
"Serilog": {
"SeqServerUrl": null,
"LogstashgUrl": null,
"MinimumLevel": {
"Default": "Information"
}
},
"ApplicationInsights": {
"InstrumentationKey": ""
},
"HttpClientRetryCount": 8,
"HttpClientExceptionsAllowedBeforeBreaking": 7,
"SessionCookieLifetimeMinutes": 60
"CatalogUrl": "http://localhost:5101",
"OrderingUrl": "http://localhost:5102",
"BasketUrl": "http://localhost:5103",
"IdentityUrl": "http://localhost:5105",
"IdentityUrlHC": "http://localhost:5105/hc",
"CallBackUrl": "http://localhost:5100/",
"IsClusterEnv": "False",
"UseResilientHttp": "True",
"UseLoadTest": false,
"ActivateCampaignDetailFunction": "False",
"UseCustomizationData": false,
"Serilog": {
"SeqServerUrl": null,
"LogstashgUrl": null,
"MinimumLevel": {
"Default": "Information"
}
},
"ApplicationInsights": {
"InstrumentationKey": ""
},
"HttpClientRetryCount": 8,
"HttpClientExceptionsAllowedBeforeBreaking": 7,
"SessionCookieLifetimeMinutes": 60
} }

+ 4
- 1
src/Web/WebUI/bundleconfig.json View File

@ -5,7 +5,10 @@
"outputFileName": "wwwroot/css/site.min.css", "outputFileName": "wwwroot/css/site.min.css",
// An array of relative input file paths. Globbing patterns supported // An array of relative input file paths. Globbing patterns supported
"inputFiles": [ "inputFiles": [
"wwwroot/css/**/*.css"
//"wwwroot/css/**/*.css",
"wwwroot/css/animate.css",
"wwwroot/css/app.css",
"wwwroot/css/backtotop.css"
] ]
}, },
{ {


+ 3
- 4
src/Web/WebUI/web.config View File

@ -1,13 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>
<!-- <!--
Configure your application settings in appsettings.json. Learn more at http://go.microsoft.com/fwlink/?LinkId=786380 Configure your application settings in appsettings.json. Learn more at http://go.microsoft.com/fwlink/?LinkId=786380
--> -->
<system.webServer> <system.webServer>
<handlers> <handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers> </handlers>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" hostingModel="InProcess" />
</system.webServer> </system.webServer>
</configuration>
</configuration>

+ 14
- 1
src/Web/WebUI/wwwroot/css/site.min.css
File diff suppressed because it is too large
View File


+ 0
- 3117
src/Web/WebUI/wwwroot/js/site.js
File diff suppressed because it is too large
View File


+ 0
- 3117
src/Web/WebUI/wwwroot/js/site.min.js
File diff suppressed because it is too large
View File


Loading…
Cancel
Save