-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
7330: advanced settings spark (#7374)
* #7267 SparkProgress and foldout js part * #7267 SparkProgress and Foldout java part * #7267 fix Foldout paddings * #7330: add spark configuration widget * #7330: add foldout to spark option * #7330: add hide preview option * #7330: show all jobs in opened spark progress * #7330 Foldout without preview js * #7330: add header label for foldout * #7330 fix SparkUI labels width * #7330: add header label for foldout * #7330: fix tests * #7330 use headerLabel property from Foldout widget * #7330: show only one progress * #7330: ignore spark conf when name is null * #7330 add missing catch statement in SparkUI view promise * #7330: fix test and NullPointerException * #7330: move the "connect" button to the top, remove the fold out, rename "connect" to "start".
- Loading branch information
1 parent
8120e57
commit 8a3ffce
Showing
19 changed files
with
495 additions
and
119 deletions.
There are no files selected for viewing
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
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,27 @@ | ||
|
||
const widgets = require('./widgets'); | ||
|
||
|
||
class SparkConfigurationModel extends widgets.VBoxModel { | ||
|
||
defaults() { | ||
return { | ||
...super.defaults(), | ||
_view_name: "SparkConfigurationView", | ||
_model_name: "SparkConfigurationModel", | ||
_model_module: 'beakerx', | ||
_view_module: 'beakerx', | ||
_model_module_version: BEAKERX_MODULE_VERSION, | ||
_view_module_version: BEAKERX_MODULE_VERSION, | ||
}; | ||
} | ||
} | ||
|
||
class SparkConfigurationView extends widgets.VBoxView { | ||
|
||
} | ||
|
||
export default { | ||
SparkConfigurationModel, | ||
SparkConfigurationView | ||
}; |
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
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
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
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
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
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
Oops, something went wrong.