1
+ import * as React from "react" ;
2
+ import * as SDK from "azure-devops-extension-sdk" ;
3
+
4
+ import "./query-tabs.scss" ;
5
+
6
+ import { Header } from "azure-devops-ui/Header" ;
7
+ import { Page } from "azure-devops-ui/Page" ;
8
+
9
+ import { showRootComponent } from "../../Common" ;
10
+
11
+ class QueryTabGroup extends React . Component < { } , { } > {
12
+
13
+ constructor ( props : { } ) {
14
+ super ( props ) ;
15
+ }
16
+
17
+ public componentDidMount ( ) {
18
+ try {
19
+ console . log ( "Component did mount, initializing SDK..." ) ;
20
+ SDK . init ( ) ;
21
+
22
+ SDK . ready ( ) . then ( ( ) => {
23
+ console . log ( "SDK is ready, loading context..." ) ;
24
+ this . loadContext ( ) ;
25
+ } ) . catch ( ( error ) => {
26
+ console . error ( "SDK ready failed: " , error ) ;
27
+ } ) ;
28
+ } catch ( error ) {
29
+ console . error ( "Error during SDK initialization or context loading: " , error ) ;
30
+ }
31
+ }
32
+
33
+ public render ( ) : JSX . Element {
34
+ return (
35
+ < Page className = "sample-hub flex-grow" >
36
+ < Header title = "Custom Query Tab" />
37
+ < div className = "page-content" >
38
+ < div className = "sample-form-section flex-row flex-center" >
39
+ Hello World
40
+ </ div >
41
+ </ div >
42
+ </ Page >
43
+ ) ;
44
+ }
45
+
46
+ private async loadContext ( ) : Promise < void > {
47
+ try {
48
+ console . log ( "Attempting to get web context..." ) ;
49
+
50
+ const context = SDK . getWebContext ( ) ;
51
+ this . setState ( { webcontext : context } ) ;
52
+
53
+ console . log ( "Context loaded: " , context ) ;
54
+
55
+ SDK . notifyLoadSucceeded ( ) ;
56
+ } catch ( error ) {
57
+ console . error ( "Failed to load context: " , error ) ;
58
+ }
59
+ }
60
+ }
61
+
62
+ showRootComponent ( < QueryTabGroup /> ) ;
0 commit comments