-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mariusz Jurowicz
committed
Jun 7, 2018
1 parent
615daa7
commit 8c15cc7
Showing
106 changed files
with
2,008 additions
and
8 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { DataGrid } from "@phosphor/datagrid"; | ||
export default class BeakerXThemeHelper { | ||
static readonly isDark: boolean; | ||
static getStyle(): DataGrid.IStyle; | ||
static readonly DEFAULT_DATA_FONT_COLOR: string; | ||
static readonly DEFAULT_HEADER_FONT_COLOR: string; | ||
static readonly DEFAULT_HIGHLIGHT_COLOR: string; | ||
static readonly DEFAULT_CELL_BACKGROUND: string; | ||
static readonly FOCUSED_CELL_BACKGROUND: string; | ||
private static getDarkStyle(); | ||
private static getLightStyle(); | ||
} |
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,12 @@ | ||
import widgets from './widgets'; | ||
export declare class BxHTMLModel extends widgets.HTMLModel { | ||
defaults(): any; | ||
} | ||
export declare class BxHTMLView extends widgets.HTMLView { | ||
render(): void; | ||
} | ||
declare const _default: { | ||
BxHTMLModel: typeof BxHTMLModel; | ||
BxHTMLView: typeof BxHTMLView; | ||
}; | ||
export default _default; |
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,14 @@ | ||
import widgets from './widgets'; | ||
export declare class CyclingDisplayBoxModel extends widgets.BoxModel { | ||
defaults(): any; | ||
} | ||
export declare class CyclingDisplayBoxView extends widgets.BoxView { | ||
initialize(): void; | ||
update_children(): void; | ||
draw_widget(): void; | ||
} | ||
declare const _default: { | ||
CyclingDisplayBoxView: typeof CyclingDisplayBoxView; | ||
CyclingDisplayBoxModel: typeof CyclingDisplayBoxModel; | ||
}; | ||
export default _default; |
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,34 @@ | ||
import widgets from './widgets'; | ||
export * from './easyForm/selectMultipleWidget'; | ||
export * from './easyForm/selectMultipleSingleWidget'; | ||
export * from './easyForm/datePickerWidget'; | ||
export * from './easyForm/comboBoxWidget'; | ||
export * from './easyForm/textWidget'; | ||
export * from './easyForm/passwordWidget'; | ||
export * from './easyForm/TextareaWidget'; | ||
export * from './easyForm/checkboxWidget'; | ||
import './easyForm/css/jupyter-easyform.scss'; | ||
import 'flatpickr/dist/flatpickr.css'; | ||
import 'jquery-ui/themes/base/all.css'; | ||
import 'jquery-ui/ui/widgets/button'; | ||
import 'jquery-ui/ui/widgets/autocomplete'; | ||
export declare class EasyFormModel extends widgets.DOMWidgetModel { | ||
defaults(): any; | ||
static serializers: { | ||
children: { | ||
deserialize: any; | ||
}; | ||
}; | ||
} | ||
export declare class EasyFormView extends widgets.BoxView { | ||
render(): void; | ||
events(): { | ||
'keypress': string; | ||
}; | ||
handleEnterKeyPress(event: any): any; | ||
} | ||
declare const _default: { | ||
EasyFormModel: typeof EasyFormModel; | ||
EasyFormView: typeof EasyFormView; | ||
}; | ||
export default _default; |
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,39 @@ | ||
import { Widget, Panel } from '@phosphor/widgets'; | ||
import widgets from './widgets'; | ||
export declare class FoldoutModel extends widgets.BoxModel { | ||
defaults(): any; | ||
} | ||
export declare class FoldoutView extends widgets.BoxView { | ||
label: Panel; | ||
labelContent: Widget; | ||
content: Panel; | ||
previewContainer: Widget; | ||
previewContent: HTMLElement; | ||
previewContentParent: HTMLElement; | ||
hiddenContainer: HTMLElement; | ||
timeoutId: number; | ||
active: boolean; | ||
hidePreview: boolean; | ||
initialize(parameters: any): void; | ||
add_child_model(model: any): any; | ||
addLabel(): void; | ||
addContent(): void; | ||
addPreviewContent(): void; | ||
addHiddenContainer(): void; | ||
headerClickCallback(): void; | ||
activateFoldout(): void; | ||
deactivateFoldout(): void; | ||
activateFoldoutCallback(): void; | ||
deactivateFoldoutCallback(): void; | ||
getPreviewContent(): HTMLElement; | ||
render(): void; | ||
updateHiddenContainer(): void; | ||
restorePreviewContent(): void; | ||
renderPreview(): void; | ||
dispose(): void; | ||
} | ||
declare const _default: { | ||
FoldoutModel: typeof FoldoutModel; | ||
FoldoutView: typeof FoldoutView; | ||
}; | ||
export default _default; |
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,13 @@ | ||
import widgets from './widgets'; | ||
import './gridView/grid-view.scss'; | ||
export declare class GridViewModel extends widgets.VBoxModel { | ||
defaults(): any; | ||
} | ||
export declare class GridView extends widgets.VBoxView { | ||
render(): void; | ||
} | ||
declare const _default: { | ||
GridViewModel: typeof GridViewModel; | ||
GridView: typeof GridView; | ||
}; | ||
export default _default; |
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,12 @@ | ||
import widgets from './widgets'; | ||
export declare class HTMLPreModel extends widgets.StringModel { | ||
defaults(): any; | ||
} | ||
export declare class HTMLPreView extends widgets.DescriptionView { | ||
render(): void; | ||
} | ||
declare const _default: { | ||
HTMLPreModel: typeof HTMLPreModel; | ||
HTMLPreView: typeof HTMLPreView; | ||
}; | ||
export default _default; |
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,11 @@ | ||
import widgets from './widgets'; | ||
export declare class SparkConfigurationModel extends widgets.VBoxModel { | ||
defaults(): any; | ||
} | ||
export declare class SparkConfigurationView extends widgets.VBoxView { | ||
} | ||
declare const _default: { | ||
SparkConfigurationModel: typeof SparkConfigurationModel; | ||
SparkConfigurationView: typeof SparkConfigurationView; | ||
}; | ||
export default _default; |
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,13 @@ | ||
import Foldout from "./Foldout"; | ||
import widgets from './widgets'; | ||
export declare class SparkFoldoutModel extends widgets.BoxModel { | ||
defaults(): any; | ||
} | ||
export declare class SparkFoldoutView extends Foldout.FoldoutView { | ||
getPreviewContent(): HTMLElement; | ||
} | ||
declare const _default: { | ||
SparkFoldoutModel: typeof SparkFoldoutModel; | ||
SparkFoldoutView: typeof SparkFoldoutView; | ||
}; | ||
export default _default; |
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,31 @@ | ||
import widgets from './widgets'; | ||
import "./shared/style/spark.scss"; | ||
export declare class SparkStateProgressModel extends widgets.VBoxModel { | ||
defaults(): any; | ||
} | ||
export declare class SparkStateProgressView extends widgets.VBoxView { | ||
progressBar: HTMLElement; | ||
progressBarDone: HTMLElement; | ||
progressBarActive: HTMLElement; | ||
progressBarWaiting: HTMLElement; | ||
progressLabels: HTMLElement; | ||
progressLabelDone: HTMLElement; | ||
progressLabelActive: HTMLElement; | ||
progressLabelWaiting: HTMLElement; | ||
progressLabelAll: HTMLElement; | ||
render(): void; | ||
update(): any; | ||
private updateLabelWidths(); | ||
private createWidget(); | ||
private createJobPanel(); | ||
private createJobLink(state); | ||
private createStagePanel(state); | ||
private createStageLink(state); | ||
private createStageProgressBar(state); | ||
private createStageProgressLabels(state); | ||
} | ||
declare const _default: { | ||
SparkStateProgressModel: typeof SparkStateProgressModel; | ||
SparkStateProgressView: typeof SparkStateProgressView; | ||
}; | ||
export default _default; |
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,42 @@ | ||
import widgets from './widgets'; | ||
export declare class SparkUIModel extends widgets.VBoxModel { | ||
defaults(): any; | ||
} | ||
export declare class SparkUIView extends widgets.VBoxView { | ||
private sparkStats; | ||
private sparkAppId; | ||
private sparkUiWebUrl; | ||
private sparkMasterUrl; | ||
private apiCallIntervalId; | ||
private connectionLabelActive; | ||
private connectionLabelMemory; | ||
private connectionLabelDead; | ||
private connectionStatusElement; | ||
private masterUrlInput; | ||
private executorCoresInput; | ||
private executorMemoryInput; | ||
initialize(parameters: any): void; | ||
render(): void; | ||
update(): void; | ||
private addSparkUrls(); | ||
private addSparUiWebUrl(); | ||
private addMasterUrl(); | ||
private handleLocalMasterUrl(); | ||
private toggleExecutorConfigInputs(); | ||
private openWebUi(); | ||
private openExecutors(); | ||
private updateChildren(); | ||
private resolveChildren(view); | ||
private createSparkMetricsWidget(); | ||
private connectToApi(); | ||
private setApiCallInterval(api); | ||
private clearApiCallInterval(); | ||
private updateMetrics(data); | ||
private addSparkMetricsWidget(); | ||
dispose(): void; | ||
} | ||
declare const _default: { | ||
SparkUIModel: typeof SparkUIModel; | ||
SparkUIView: typeof SparkUIView; | ||
}; | ||
export default _default; |
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,14 @@ | ||
import widgets from './widgets'; | ||
export declare class TabModel extends widgets.TabModel { | ||
defaults(): any; | ||
} | ||
export declare class TabView extends widgets.TabView { | ||
render(): void; | ||
_onTabChanged(tabBar: any, tabs: any): void; | ||
_triggerSelectEventForChildren(currentIndex: any): void; | ||
} | ||
declare const _default: { | ||
TabModel: typeof TabModel; | ||
TabView: typeof TabView; | ||
}; | ||
export default _default; |
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,18 @@ | ||
import widgets from './widgets'; | ||
export declare class TableDisplayModel extends widgets.DOMWidgetModel { | ||
defaults(): any; | ||
} | ||
export declare class TableDisplayView extends widgets.DOMWidgetView { | ||
private _currentScope; | ||
render(): void; | ||
handleModellUpdate(): void; | ||
handleUpdateData(): void; | ||
showWarning(data: any): void; | ||
initDataGridTable(data: any): void; | ||
remove(): void; | ||
} | ||
declare const _default: { | ||
TableDisplayModel: typeof TableDisplayModel; | ||
TableDisplayView: typeof TableDisplayView; | ||
}; | ||
export default _default; |
Oops, something went wrong.