Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
827a2927
Commit
827a2927
authored
Jan 14, 2019
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved panel editing components to it's own folder
parent
b9a3239e
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
2 additions
and
104 deletions
+2
-104
public/app/features/alerting/AlertTab.tsx
+1
-1
public/app/features/dashboard/dashgrid/DashboardPanel.tsx
+1
-1
public/app/features/dashboard/dashgrid/KeyboardNavigation.tsx
+0
-71
public/app/features/dashboard/dashgrid/PanelLoader.ts
+0
-31
public/app/features/dashboard/panel_editor/DataSourceOption.tsx
+0
-0
public/app/features/dashboard/panel_editor/EditorTabBody.tsx
+0
-0
public/app/features/dashboard/panel_editor/GeneralTab.tsx
+0
-0
public/app/features/dashboard/panel_editor/PanelEditor.tsx
+0
-0
public/app/features/dashboard/panel_editor/QueriesTab.tsx
+0
-0
public/app/features/dashboard/panel_editor/QueryInspector.tsx
+0
-0
public/app/features/dashboard/panel_editor/QueryOptions.tsx
+0
-0
public/app/features/dashboard/panel_editor/VisualizationTab.tsx
+0
-0
public/app/features/dashboard/panel_editor/VizTypePicker.tsx
+0
-0
public/app/features/dashboard/panel_editor/VizTypePickerPlugin.tsx
+0
-0
No files found.
public/app/features/alerting/AlertTab.tsx
View file @
827a2927
...
...
@@ -6,7 +6,7 @@ import { AngularComponent, getAngularLoader } from 'app/core/services/AngularLoa
import
appEvents
from
'app/core/app_events'
;
// Components
import
{
EditorTabBody
,
EditorToolbarView
}
from
'../dashboard/
dashgrid
/EditorTabBody'
;
import
{
EditorTabBody
,
EditorToolbarView
}
from
'../dashboard/
panel_editor
/EditorTabBody'
;
import
EmptyListCTA
from
'app/core/components/EmptyListCTA/EmptyListCTA'
;
import
StateHistory
from
'./StateHistory'
;
import
'app/features/alerting/AlertTabCtrl'
;
...
...
public/app/features/dashboard/dashgrid/DashboardPanel.tsx
View file @
827a2927
...
...
@@ -9,7 +9,7 @@ import { AddPanelPanel } from './AddPanelPanel';
import
{
getPanelPluginNotFound
}
from
'./PanelPluginNotFound'
;
import
{
DashboardRow
}
from
'./DashboardRow'
;
import
{
PanelChrome
}
from
'./PanelChrome'
;
import
{
PanelEditor
}
from
'./PanelEditor'
;
import
{
PanelEditor
}
from
'.
./panel_editor
/PanelEditor'
;
import
{
PanelModel
}
from
'../panel_model'
;
import
{
DashboardModel
}
from
'../dashboard_model'
;
...
...
public/app/features/dashboard/dashgrid/KeyboardNavigation.tsx
deleted
100644 → 0
View file @
b9a3239e
import
React
,
{
KeyboardEvent
,
Component
}
from
'react'
;
interface
State
{
selected
:
number
;
}
export
interface
KeyboardNavigationProps
{
onKeyDown
:
(
evt
:
KeyboardEvent
<
EventTarget
>
,
maxSelectedIndex
:
number
,
onEnterAction
:
()
=>
void
)
=>
void
;
onMouseEnter
:
(
select
:
number
)
=>
void
;
selected
:
number
;
}
interface
Props
{
render
:
(
injectProps
:
any
)
=>
void
;
}
class
KeyboardNavigation
extends
Component
<
Props
,
State
>
{
constructor
(
props
)
{
super
(
props
);
this
.
state
=
{
selected
:
0
,
};
}
goToNext
=
(
maxSelectedIndex
:
number
)
=>
{
const
nextIndex
=
this
.
state
.
selected
>=
maxSelectedIndex
?
0
:
this
.
state
.
selected
+
1
;
this
.
setState
({
selected
:
nextIndex
,
});
};
goToPrev
=
(
maxSelectedIndex
:
number
)
=>
{
const
nextIndex
=
this
.
state
.
selected
<=
0
?
maxSelectedIndex
:
this
.
state
.
selected
-
1
;
this
.
setState
({
selected
:
nextIndex
,
});
};
onKeyDown
=
(
evt
:
KeyboardEvent
,
maxSelectedIndex
:
number
,
onEnterAction
:
any
)
=>
{
if
(
evt
.
key
===
'ArrowDown'
)
{
evt
.
preventDefault
();
this
.
goToNext
(
maxSelectedIndex
);
}
if
(
evt
.
key
===
'ArrowUp'
)
{
evt
.
preventDefault
();
this
.
goToPrev
(
maxSelectedIndex
);
}
if
(
evt
.
key
===
'Enter'
&&
onEnterAction
)
{
onEnterAction
();
}
};
onMouseEnter
=
(
mouseEnterIndex
:
number
)
=>
{
this
.
setState
({
selected
:
mouseEnterIndex
,
});
};
render
()
{
const
injectProps
=
{
onKeyDown
:
this
.
onKeyDown
,
onMouseEnter
:
this
.
onMouseEnter
,
selected
:
this
.
state
.
selected
,
};
return
<>
{
this
.
props
.
render
({
...
injectProps
})
}
</>;
}
}
export
default
KeyboardNavigation
;
public/app/features/dashboard/dashgrid/PanelLoader.ts
deleted
100644 → 0
View file @
b9a3239e
import
angular
from
'angular'
;
import
coreModule
from
'app/core/core_module'
;
export
interface
AttachedPanel
{
destroy
();
}
export
class
PanelLoader
{
/** @ngInject */
constructor
(
private
$compile
,
private
$rootScope
)
{}
load
(
elem
,
panel
,
dashboard
):
AttachedPanel
{
const
template
=
'<plugin-component type="panel" class="panel-height-helper"></plugin-component>'
;
const
panelScope
=
this
.
$rootScope
.
$new
();
panelScope
.
panel
=
panel
;
panelScope
.
dashboard
=
dashboard
;
const
compiledElem
=
this
.
$compile
(
template
)(
panelScope
);
const
rootNode
=
angular
.
element
(
elem
);
rootNode
.
append
(
compiledElem
);
return
{
destroy
:
()
=>
{
panelScope
.
$destroy
();
compiledElem
.
remove
();
},
};
}
}
coreModule
.
service
(
'panelLoader'
,
PanelLoader
);
public/app/features/dashboard/
dashgrid
/DataSourceOption.tsx
→
public/app/features/dashboard/
panel_editor
/DataSourceOption.tsx
View file @
827a2927
File moved
public/app/features/dashboard/
dashgrid
/EditorTabBody.tsx
→
public/app/features/dashboard/
panel_editor
/EditorTabBody.tsx
View file @
827a2927
File moved
public/app/features/dashboard/
dashgrid
/GeneralTab.tsx
→
public/app/features/dashboard/
panel_editor
/GeneralTab.tsx
View file @
827a2927
File moved
public/app/features/dashboard/
dashgrid
/PanelEditor.tsx
→
public/app/features/dashboard/
panel_editor
/PanelEditor.tsx
View file @
827a2927
File moved
public/app/features/dashboard/
dashgrid
/QueriesTab.tsx
→
public/app/features/dashboard/
panel_editor
/QueriesTab.tsx
View file @
827a2927
File moved
public/app/features/dashboard/
dashgrid
/QueryInspector.tsx
→
public/app/features/dashboard/
panel_editor
/QueryInspector.tsx
View file @
827a2927
File moved
public/app/features/dashboard/
dashgrid
/QueryOptions.tsx
→
public/app/features/dashboard/
panel_editor
/QueryOptions.tsx
View file @
827a2927
File moved
public/app/features/dashboard/
dashgrid
/VisualizationTab.tsx
→
public/app/features/dashboard/
panel_editor
/VisualizationTab.tsx
View file @
827a2927
File moved
public/app/features/dashboard/
dashgrid
/VizTypePicker.tsx
→
public/app/features/dashboard/
panel_editor
/VizTypePicker.tsx
View file @
827a2927
File moved
public/app/features/dashboard/
dashgrid
/VizTypePickerPlugin.tsx
→
public/app/features/dashboard/
panel_editor
/VizTypePickerPlugin.tsx
View file @
827a2927
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment