Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
f0b11fe9
Commit
f0b11fe9
authored
Apr 10, 2018
by
serapath
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor tabbed menu
parent
1c0472f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
34 deletions
+79
-34
tabbed-menu.js
src/app/tabs/tabbed-menu.js
+79
-34
No files found.
src/app/tabs/tabbed-menu.js
View file @
f0b11fe9
var
yo
=
require
(
'yo-yo'
)
var
helper
=
require
(
'../../lib/helper'
)
var
csjs
=
require
(
'csjs-inject'
)
var
remixLib
=
require
(
'remix-lib'
)
var
css
=
require
(
'./styles/tabbed-menu-styles'
)
var
styles
=
require
(
'../ui/styles-guide/theme-chooser'
).
chooser
(
)
class
TabbedMenu
{
constructor
(
api
=
{},
events
=
{},
opts
=
{})
{
var
self
=
this
var
tabView
=
document
.
createElement
(
'ul'
)
this
.
tabView
=
tabView
this
.
events
=
events
this
.
tabs
=
{}
this
.
contents
=
{}
events
.
app
.
register
(
'debuggingRequested'
,
()
=>
{
self
.
selectTab
(
tabView
.
querySelector
(
'li.debugView'
))
})
var
EventManager
=
remixLib
.
EventManager
events
.
rhp
.
register
(
'switchTab'
,
tabName
=>
{
self
.
selectTab
(
tabView
.
querySelector
(
`li.
${
tabName
}
`
))
})
module
.
exports
=
class
TabbedMenu
{
constructor
(
api
=
{},
events
=
{},
opts
=
{})
{
const
self
=
this
self
.
event
=
new
EventManager
()
self
.
_api
=
api
self
.
_events
=
events
self
.
_view
=
{
el
:
null
,
viewport
:
null
,
tabs
:
{},
contents
:
{}
}
self
.
data
=
{}
self
.
_components
=
{}
}
render
()
{
const
self
=
this
if
(
self
.
_view
.
el
)
return
self
.
_view
.
el
self
.
_view
.
el
=
yo
`<ul class=
${
css
.
menu
}
>
${
Object
.
values
(
self
.
_view
.
tabs
)}
</ul>`
return
self
.
_view
.
el
}
renderViewport
()
{
const
self
=
this
if
(
self
.
_view
.
viewport
)
return
self
.
_view
.
viewport
self
.
_view
.
viewport
=
yo
`
<div id="optionViews" class=
${
css
.
optionViews
}
>
${
Object
.
values
(
self
.
_view
.
contents
)}
</div>`
return
self
.
_view
.
viewport
}
addTab
(
title
,
cssClass
,
content
)
{
const
self
=
this
if
(
self
.
_view
.
contents
[
title
]
||
self
.
_view
.
tabs
[
title
])
throw
new
Error
(
'tab already exists'
)
self
.
_view
.
contents
[
title
]
=
content
self
.
_view
.
tabs
[
title
]
=
yo
`<li class="
${
css
.
options
}
${
cssClass
}
" onclick=
${
function
(
ev
)
{
self
.
selectTab
(
this
)
}
} title=
${
title
}
>
${
title
}
</li>`
if
(
self
.
_view
.
el
)
self
.
_view
.
el
.
appendChild
(
self
.
_view
.
tabs
[
title
])
if
(
self
.
_view
.
viewport
)
self
.
_view
.
viewport
.
appendChild
(
self
.
_view
.
contents
[
title
])
}
render
()
{
return
this
.
tabView
}
selectTabByTitle
(
title
)
{
this
.
selectTab
(
this
.
tabs
[
title
])
const
self
=
this
self
.
selectTab
(
self
.
_view
.
tabs
[
title
])
}
switchTab
(
tabClass
)
{
const
self
=
this
self
.
selectTab
(
self
.
_view
.
el
.
querySelector
(
`li.
${
tabClass
}
`
))
}
selectTab
(
el
)
{
const
self
=
this
if
(
!
el
.
classList
.
contains
(
css
.
active
))
{
var
nodes
=
el
.
parentNode
.
querySelectorAll
(
'li'
)
var
nodes
=
Object
.
values
(
self
.
_view
.
tabs
)
for
(
var
i
=
0
;
i
<
nodes
.
length
;
++
i
)
{
nodes
[
i
].
classList
.
remove
(
css
.
active
)
this
.
contents
[
nodes
[
i
].
getAttribute
(
'title'
)].
style
.
display
=
'none'
self
.
_view
.
contents
[
nodes
[
i
].
getAttribute
(
'title'
)].
style
.
display
=
'none'
}
}
var
title
=
el
.
getAttribute
(
'title'
)
this
.
contents
[
el
.
getAttribute
(
'title'
)].
style
.
display
=
'block'
self
.
_view
.
contents
[
el
.
getAttribute
(
'title'
)].
style
.
display
=
'block'
el
.
classList
.
add
(
css
.
active
)
this
.
events
.
app
.
trigger
(
'tabChanged'
,
[
title
])
}
addTab
(
title
,
cssClass
,
content
)
{
var
self
=
this
if
(
!
helper
.
checkSpecialChars
(
title
))
{
this
.
contents
[
title
]
=
content
this
.
tabs
[
title
]
=
yo
`<li class="
${
css
.
opts_li
}
${
css
.
options
}
${
cssClass
}
" onclick=
${
function
(
ev
)
{
self
.
selectTab
(
this
)
}
} title=
${
title
}
>
${
title
}
</li>`
this
.
tabView
.
appendChild
(
this
.
tabs
[
title
])
}
self
.
_events
.
app
.
trigger
(
'tabChanged'
,
[
title
])
}
}
module
.
exports
=
TabbedMenu
const
css
=
csjs
`
li.active {
background-color:
${
styles
.
rightPanel
.
backgroundColor_Tab
}
;
color:
${
styles
.
appProperties
.
mainText_Color
}
}
.options {
float: left;
padding-top: 0.7em;
min-width: 60px;
font-size: 0.9em;
cursor: pointer;
font-size: 1em;
text-align: center;
}
.opts {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}
.opts_li {
display: block;
font-weight: bold;
color:
${
styles
.
rightPanel
.
text_Teriary
}
}
.opts_li.active {
color:
${
styles
.
rightPanel
.
text_Primary
}
}
.opts_li:hover {
color:
${
styles
.
rightPanel
.
icon_HoverColor_TogglePanel
}
}
`
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