Skip to content

Commit f646c8f

Browse files
committed
chore(qqqq): tidyup
1 parent 80f634b commit f646c8f

File tree

3 files changed

+1
-82
lines changed

3 files changed

+1
-82
lines changed

TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
.CreateLogger();
5050

5151
// Add Serilog to logging providers
52-
builder.Logging.AddSerilog(Log.Logger, dispose: true);//qqqq may not need dispose for client
52+
builder.Logging.AddSerilog(Log.Logger);
5353

5454
//for really bad fails
5555
try

TELBlazor.Components/OptionalImplementations/Test/TestComponents/SearchExperiment/SearchExperimentServiceOpenApi.cs

Lines changed: 0 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -12,71 +12,6 @@
1212

1313
namespace TELBlazor.Components.OptionalImplementations.Test.TestComponents.SearchExperiment
1414
{
15-
//curl -X 'GET' \
16-
// 'https://lh-openapi.dev.local/Search/GetAutoSuggestionResult/blood' \
17-
// -H 'accept: */*' \
18-
// -H 'Authorization: Bearer '
19-
20-
// {
21-
// "stats": {
22-
// "totalHits": 23,
23-
// "searchEngineTimeInMillis": 3,
24-
// "searchEngineRoundTripTimeInMillis": 4,
25-
// "searchProcessingTimeInMillis": 5
26-
// },
27-
// "catalogueDocument": {
28-
// "id": "catalogues_documents",
29-
// "totalHits": 0,
30-
// "catalogueDocumentList": []
31-
// },
32-
// "conceptDocument": {
33-
// "id": "concepts_documents",
34-
// "totalHits": 6,
35-
// "conceptDocumentList": [
36-
// {
37-
// "id": "blood transfusion_hee-local",
38-
// "title": "426 Blood Transfusion - Non Registered Staff, Mandatory Training Workbook 2019-20",
39-
// "concept": "blood transfusion",
40-
// "click": {
41-
// "payload": {
42-
// "searchSignal": {
43-
// "stats": {
44-
// "totalHits": 23
45-
// },
46-
// "searchId": "5b3e2cb9-2a6b-4d9a-8879-a7ba336abf3e",
47-
// "profileSignature": {
48-
// "applicationId": "HEE",
49-
// "profileType": "SEARCHER",
50-
// "profileId": "auto-suggestion-local"
51-
// },
52-
// "userQuery": "q=blood",
53-
// "query": "q=blood",
54-
// "timeOfSearch": 1750247278498
55-
// },
56-
// "hitNumber": 4,
57-
// "clickTargetUrl": "blood transfusion_hee-local",
58-
// "documentFields": {
59-
// "name": null,
60-
// "title": "426 Blood Transfusion - Non Registered Staff, Mandatory Training Workbook 2019-20"
61-
// },
62-
// "containerId": "concepts_documents",
63-
// "timeOfClick": null
64-
// },
65-
// "url": "/signals/hee/signal/click-hee"
66-
// }
67-
// }
68-
// ]
69-
// },
70-
// "resourceDocument": {
71-
// "id": "resources_documents",
72-
// "totalHits": 17,
73-
// "resourceDocumentList": [
74-
// {
75-
76-
// }
77-
// ]
78-
// }
79-
//}
8015
public class SearchExperimentServiceOpenApi :ISearchExperimentService
8116
{
8217
//qqqq can do alot better
@@ -90,11 +25,6 @@ public SearchExperimentServiceOpenApi(HttpClient httpClient, IConfiguration conf
9025
_baseUrl = configuration["SearchApi:BaseUrl"] ?? "https://lh-openapi.dev.local";
9126
_logger = logger;
9227

93-
//var token = configuration["SearchApi:BearerToken"];
94-
//if (!string.IsNullOrEmpty(token))
95-
//{
96-
// _httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);
97-
//}
9828
}
9929
public async Task<IEnumerable<string>> GetSuggestionsAsync(string term, CancellationToken cancellationToken = default)
10030
{

TELBlazor.Components/TELBlazor.Components.csproj

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,6 @@
4848
<Content Remove="..\CICDPackageLocation\**\*" />
4949
<None Remove="..\CICDPackageLocation\**\*" />
5050
</ItemGroup>
51-
<!--qqqq remove <ItemGroup>
52-
<Compile Remove="TELBlazorPackageVersion\VersionInfo.TELBlazorAssembly.cs" />
53-
</ItemGroup>
54-
<ItemGroup>
55-
<Compile Include="TELBlazorPackageVersion\VersionInfo.TELBlazorAssembly.cs" />
56-
<Content Include="TELBlazorPackageVersion\VersionInfo.TELBlazorAssembly.cs" />
57-
</ItemGroup>-->
58-
59-
<!--<ItemGroup>
60-
<Content Include="Core\DI\gitinclude.txt" />
61-
</ItemGroup>-->
6251
<ItemGroup>
6352
<Folder Include="Assets\" />
6453
<Folder Include="OptionalImplementations\Test\TestServices\" />

0 commit comments

Comments
 (0)