2
2
* Project: ESP-IDF VSCode Extension
3
3
* File Created: Thursday, 20th June 2019 10:39:58 am
4
4
* Copyright 2019 Espressif Systems (Shanghai) CO LTD
5
- *
5
+ *
6
6
* Licensed under the Apache License, Version 2.0 (the "License");
7
7
* you may not use this file except in compliance with the License.
8
8
* You may obtain a copy of the License at
9
- *
9
+ *
10
10
* http://www.apache.org/licenses/LICENSE-2.0
11
- *
11
+ *
12
12
* Unless required by applicable law or agreed to in writing, software
13
13
* distributed under the License is distributed on an "AS IS" BASIS,
14
14
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
15
* See the License for the specific language governing permissions and
16
16
* limitations under the License.
17
17
*/
18
- import * as fs from "fs" ;
19
18
import * as path from "path" ;
20
19
import * as vscode from "vscode" ;
21
20
import { Logger } from "../../logger/logger" ;
@@ -76,14 +75,19 @@ export class IDFSizePanel {
76
75
this . _panel = panel ;
77
76
this . _extensionPath = extensionPath ;
78
77
this . _webviewData = webviewData ;
79
- this . initWebview ( ) ;
78
+ const isNewIdfSize : boolean =
79
+ webviewData [ "overview" ] && webviewData [ "overview" ] . version ;
80
+ this . initWebview ( isNewIdfSize ) ;
80
81
}
81
82
private disposeWebview ( ) {
82
83
IDFSizePanel . currentPanel = undefined ;
83
84
}
84
- private initWebview ( ) {
85
+ private initWebview ( isNewIdfSize : boolean ) {
85
86
this . _panel . iconPath = getWebViewFavicon ( this . _extensionPath ) ;
86
- this . _panel . webview . html = this . getHtmlContent ( this . _panel . webview ) ;
87
+ this . _panel . webview . html = this . getHtmlContent (
88
+ this . _panel . webview ,
89
+ isNewIdfSize
90
+ ) ;
87
91
this . _panel . onDidDispose ( this . disposeWebview , null , this . _disposables ) ;
88
92
this . _panel . webview . onDidReceiveMessage (
89
93
( msg ) => {
@@ -94,7 +98,7 @@ export class IDFSizePanel {
94
98
case "requestInitialValues" :
95
99
this . _panel . webview . postMessage ( {
96
100
command : "initialLoad" ,
97
- ...this . _webviewData
101
+ ...this . _webviewData ,
98
102
} ) ;
99
103
break ;
100
104
default :
@@ -110,10 +114,18 @@ export class IDFSizePanel {
110
114
) ;
111
115
}
112
116
113
- private getHtmlContent ( webview : vscode . Webview ) : string {
117
+ private getHtmlContent (
118
+ webview : vscode . Webview ,
119
+ isNewIdfSize : boolean
120
+ ) : string {
114
121
const scriptPath = webview . asWebviewUri (
115
122
vscode . Uri . file (
116
- path . join ( this . _extensionPath , "dist" , "views" , "size-bundle.js" )
123
+ path . join (
124
+ this . _extensionPath ,
125
+ "dist" ,
126
+ "views" ,
127
+ isNewIdfSize ? "newSize-bundle.js" : "size-bundle.js"
128
+ )
117
129
)
118
130
) ;
119
131
return `<!DOCTYPE html>
0 commit comments