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
7d165068
Commit
7d165068
authored
Apr 16, 2018
by
Daniel Lee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix merge conflict
parent
7ef61061
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
238 deletions
+2
-238
public/app/core/directives/dropdown_typeahead.js
+0
-236
public/app/core/directives/dropdown_typeahead.ts
+2
-2
No files found.
public/app/core/directives/dropdown_typeahead.js
deleted
100644 → 0
View file @
7ef61061
define
([
'lodash'
,
'jquery'
,
'../core_module'
,
],
function
(
_
,
$
,
coreModule
)
{
'use strict'
;
coreModule
.
default
.
directive
(
'dropdownTypeahead'
,
function
(
$compile
)
{
var
inputTemplate
=
'<input type="text"'
+
' class="gf-form-input input-medium tight-form-input"'
+
' spellcheck="false" style="display:none"></input>'
;
var
buttonTemplate
=
'<a class="gf-form-label tight-form-func dropdown-toggle"'
+
' tabindex="1" gf-dropdown="menuItems" data-toggle="dropdown"'
+
' data-placement="top"><i class="fa fa-plus"></i></a>'
;
return
{
scope
:
{
menuItems
:
"=dropdownTypeahead"
,
dropdownTypeaheadOnSelect
:
"&dropdownTypeaheadOnSelect"
,
model
:
'=ngModel'
},
link
:
function
(
$scope
,
elem
,
attrs
)
{
var
$input
=
$
(
inputTemplate
);
var
$button
=
$
(
buttonTemplate
);
$input
.
appendTo
(
elem
);
$button
.
appendTo
(
elem
);
if
(
attrs
.
linkText
)
{
$button
.
html
(
attrs
.
linkText
);
}
if
(
attrs
.
ngModel
)
{
$scope
.
$watch
(
'model'
,
function
(
newValue
)
{
_
.
each
(
$scope
.
menuItems
,
function
(
item
)
{
_
.
each
(
item
.
submenu
,
function
(
subItem
)
{
if
(
subItem
.
value
===
newValue
)
{
$button
.
html
(
subItem
.
text
);
}
});
});
});
}
var
typeaheadValues
=
_
.
reduce
(
$scope
.
menuItems
,
function
(
memo
,
value
,
index
)
{
if
(
!
value
.
submenu
)
{
value
.
click
=
'menuItemSelected('
+
index
+
')'
;
memo
.
push
(
value
.
text
);
}
else
{
_
.
each
(
value
.
submenu
,
function
(
item
,
subIndex
)
{
item
.
click
=
'menuItemSelected('
+
index
+
','
+
subIndex
+
')'
;
memo
.
push
(
value
.
text
+
' '
+
item
.
text
);
});
}
return
memo
;
},
[]);
$scope
.
menuItemSelected
=
function
(
index
,
subIndex
)
{
var
menuItem
=
$scope
.
menuItems
[
index
];
var
payload
=
{
$item
:
menuItem
};
if
(
menuItem
.
submenu
&&
subIndex
!==
void
0
)
{
payload
.
$subItem
=
menuItem
.
submenu
[
subIndex
];
}
$scope
.
dropdownTypeaheadOnSelect
(
payload
);
};
$input
.
attr
(
'data-provide'
,
'typeahead'
);
$input
.
typeahead
({
source
:
typeaheadValues
,
minLength
:
1
,
items
:
10
,
updater
:
function
(
value
)
{
var
result
=
{};
_
.
each
(
$scope
.
menuItems
,
function
(
menuItem
)
{
_
.
each
(
menuItem
.
submenu
,
function
(
submenuItem
)
{
if
(
value
===
(
menuItem
.
text
+
' '
+
submenuItem
.
text
))
{
result
.
$subItem
=
submenuItem
;
result
.
$item
=
menuItem
;
}
});
});
if
(
result
.
$item
)
{
$scope
.
$apply
(
function
()
{
$scope
.
dropdownTypeaheadOnSelect
(
result
);
});
}
$input
.
trigger
(
'blur'
);
return
''
;
}
});
$button
.
click
(
function
()
{
$button
.
hide
();
$input
.
show
();
$input
.
focus
();
});
$input
.
keyup
(
function
()
{
elem
.
toggleClass
(
'open'
,
$input
.
val
()
===
''
);
});
$input
.
blur
(
function
()
{
$input
.
hide
();
$input
.
val
(
''
);
$button
.
show
();
$button
.
focus
();
// clicking the function dropdown menu won't
// work if you remove class at once
setTimeout
(
function
()
{
elem
.
removeClass
(
'open'
);
},
200
);
});
$compile
(
elem
.
contents
())(
$scope
);
}
};
});
coreModule
.
default
.
directive
(
'dropdownTypeahead2'
,
function
(
$compile
)
{
var
inputTemplate
=
'<input type="text"'
+
' class="gf-form-input"'
+
' spellcheck="false" style="display:none"></input>'
;
var
buttonTemplate
=
'<a class="gf-form-input dropdown-toggle"'
+
' tabindex="1" gf-dropdown="menuItems" data-toggle="dropdown"'
+
' data-placement="top"><i class="fa fa-plus"></i></a>'
;
return
{
scope
:
{
menuItems
:
"=dropdownTypeahead2"
,
dropdownTypeaheadOnSelect
:
"&dropdownTypeaheadOnSelect"
,
model
:
'=ngModel'
},
link
:
function
(
$scope
,
elem
,
attrs
)
{
var
$input
=
$
(
inputTemplate
);
var
$button
=
$
(
buttonTemplate
);
$input
.
appendTo
(
elem
);
$button
.
appendTo
(
elem
);
if
(
attrs
.
linkText
)
{
$button
.
html
(
attrs
.
linkText
);
}
if
(
attrs
.
ngModel
)
{
$scope
.
$watch
(
'model'
,
function
(
newValue
)
{
_
.
each
(
$scope
.
menuItems
,
function
(
item
)
{
_
.
each
(
item
.
submenu
,
function
(
subItem
)
{
if
(
subItem
.
value
===
newValue
)
{
$button
.
html
(
subItem
.
text
);
}
});
});
});
}
var
typeaheadValues
=
_
.
reduce
(
$scope
.
menuItems
,
function
(
memo
,
value
,
index
)
{
if
(
!
value
.
submenu
)
{
value
.
click
=
'menuItemSelected('
+
index
+
')'
;
memo
.
push
(
value
.
text
);
}
else
{
_
.
each
(
value
.
submenu
,
function
(
item
,
subIndex
)
{
item
.
click
=
'menuItemSelected('
+
index
+
','
+
subIndex
+
')'
;
memo
.
push
(
value
.
text
+
' '
+
item
.
text
);
});
}
return
memo
;
},
[]);
$scope
.
menuItemSelected
=
function
(
index
,
subIndex
)
{
var
menuItem
=
$scope
.
menuItems
[
index
];
var
payload
=
{
$item
:
menuItem
};
if
(
menuItem
.
submenu
&&
subIndex
!==
void
0
)
{
payload
.
$subItem
=
menuItem
.
submenu
[
subIndex
];
}
$scope
.
dropdownTypeaheadOnSelect
(
payload
);
};
$input
.
attr
(
'data-provide'
,
'typeahead'
);
$input
.
typeahead
({
source
:
typeaheadValues
,
minLength
:
1
,
items
:
10
,
updater
:
function
(
value
)
{
var
result
=
{};
_
.
each
(
$scope
.
menuItems
,
function
(
menuItem
)
{
_
.
each
(
menuItem
.
submenu
,
function
(
submenuItem
)
{
if
(
value
===
(
menuItem
.
text
+
' '
+
submenuItem
.
text
))
{
result
.
$subItem
=
submenuItem
;
result
.
$item
=
menuItem
;
}
});
});
if
(
result
.
$item
)
{
$scope
.
$apply
(
function
()
{
$scope
.
dropdownTypeaheadOnSelect
(
result
);
});
}
$input
.
trigger
(
'blur'
);
return
''
;
}
});
$button
.
click
(
function
()
{
$button
.
hide
();
$input
.
show
();
$input
.
focus
();
});
$input
.
keyup
(
function
()
{
elem
.
toggleClass
(
'open'
,
$input
.
val
()
===
''
);
});
$input
.
blur
(
function
()
{
$input
.
hide
();
$input
.
val
(
''
);
$button
.
show
();
$button
.
focus
();
// clicking the function dropdown menu won't
// work if you remove class at once
setTimeout
(
function
()
{
elem
.
removeClass
(
'open'
);
},
200
);
});
$compile
(
elem
.
contents
())(
$scope
);
}
};
});
});
public/app/core/directives/dropdown_typeahead.ts
View file @
7d165068
...
...
@@ -110,7 +110,7 @@ export function dropdownTypeahead($compile) {
$input
.
val
(
''
);
$button
.
show
();
$button
.
focus
();
// clicking the function dropdown menu wont
// clicking the function dropdown menu won
'
t
// work if you remove class at once
setTimeout
(
function
()
{
elem
.
removeClass
(
'open'
);
...
...
@@ -228,7 +228,7 @@ export function dropdownTypeahead2($compile) {
$input
.
val
(
''
);
$button
.
show
();
$button
.
focus
();
// clicking the function dropdown menu wont
// clicking the function dropdown menu won
'
t
// work if you remove class at once
setTimeout
(
function
()
{
elem
.
removeClass
(
'open'
);
...
...
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