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
2d4abfed
Commit
2d4abfed
authored
Jan 10, 2019
by
jeremiG
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Works well with incognito browser!
parent
91ce7a30
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
13 deletions
+13
-13
settings-tab.js
src/app/tabs/settings-tab.js
+6
-6
styleGuideClean.js
src/app/ui/styles-guide/styleGuideClean.js
+2
-2
theme-chooser.js
src/app/ui/styles-guide/theme-chooser.js
+5
-5
No files found.
src/app/tabs/settings-tab.js
View file @
2d4abfed
...
@@ -26,7 +26,7 @@ module.exports = class SettingsTab {
...
@@ -26,7 +26,7 @@ module.exports = class SettingsTab {
el
:
null
,
el
:
null
,
optionVM
:
null
,
personal
:
null
,
warnPersonalMode
:
null
,
generateContractMetadata
:
null
,
optionVM
:
null
,
personal
:
null
,
warnPersonalMode
:
null
,
generateContractMetadata
:
null
,
pluginInput
:
null
,
versionSelector
:
null
,
version
:
null
,
pluginInput
:
null
,
versionSelector
:
null
,
version
:
null
,
theme
:
{
dark
:
null
,
light
:
null
,
david
:
null
},
theme
:
{
dark
:
null
,
light
:
null
,
clean
:
null
},
plugins
:
{},
plugins
:
{},
config
:
{
config
:
{
general
:
null
,
themes
:
null
,
general
:
null
,
themes
:
null
,
...
@@ -66,7 +66,7 @@ module.exports = class SettingsTab {
...
@@ -66,7 +66,7 @@ module.exports = class SettingsTab {
self
.
_view
.
theme
.
light
=
yo
`<input onchange=
${
onswitch2lightTheme
}
class="
${
css
.
col1
}
" name="theme" id="themeLight" type="radio">`
self
.
_view
.
theme
.
light
=
yo
`<input onchange=
${
onswitch2lightTheme
}
class="
${
css
.
col1
}
" name="theme" id="themeLight" type="radio">`
self
.
_view
.
theme
.
dark
=
yo
`<input onchange=
${
onswitch2darkTheme
}
class="
${
css
.
col1
}
" name="theme" id="themeDark" type="radio">`
self
.
_view
.
theme
.
dark
=
yo
`<input onchange=
${
onswitch2darkTheme
}
class="
${
css
.
col1
}
" name="theme" id="themeDark" type="radio">`
self
.
_view
.
theme
.
david
=
yo
`<input onchange=
${
onswitch2davidTheme
}
class="
${
css
.
col1
}
" name="theme" id="themeDavid
" type="radio">`
self
.
_view
.
theme
.
clean
=
yo
`<input onchange=
${
onswitch2cleanTheme
}
class="
${
css
.
col1
}
" name="theme" id="themeClean
" type="radio">`
self
.
_view
.
theme
[
self
.
data
.
currentTheme
].
setAttribute
(
'checked'
,
'checked'
)
self
.
_view
.
theme
[
self
.
data
.
currentTheme
].
setAttribute
(
'checked'
,
'checked'
)
self
.
_view
.
config
.
general
=
yo
`
self
.
_view
.
config
.
general
=
yo
`
...
@@ -114,8 +114,8 @@ module.exports = class SettingsTab {
...
@@ -114,8 +114,8 @@ module.exports = class SettingsTab {
<label for="themeDark">Dark Theme</label>
<label for="themeDark">Dark Theme</label>
</div>
</div>
<div class="
${
css
.
crow
}
">
<div class="
${
css
.
crow
}
">
${
self
.
_view
.
theme
.
david
}
${
self
.
_view
.
theme
.
clean
}
<label for="theme
David">David
Theme</label>
<label for="theme
Clean">Clean
Theme</label>
</div>
</div>
</div>`
</div>`
self
.
_view
.
config
.
plugins
=
yo
`<div></div>`
self
.
_view
.
config
.
plugins
=
yo
`<div></div>`
...
@@ -200,8 +200,8 @@ module.exports = class SettingsTab {
...
@@ -200,8 +200,8 @@ module.exports = class SettingsTab {
styleGuide.switchTheme('light')
styleGuide.switchTheme('light')
window.location.reload()
window.location.reload()
}
}
function onswitch2
david
Theme (event) {
function onswitch2
clean
Theme (event) {
styleGuide.switchTheme('
david
')
styleGuide.switchTheme('
clean
')
window.location.reload()
window.location.reload()
}
}
function onchangePersonal (event) {
function onchangePersonal (event) {
...
...
src/app/ui/styles-guide/styleGuide
David
.js
→
src/app/ui/styles-guide/styleGuide
Clean
.js
View file @
2d4abfed
// var csjs = require('csjs-inject')
// var csjs = require('csjs-inject')
module
.
exports
=
styleGuide
David
module
.
exports
=
styleGuide
Clean
function
styleGuide
David
()
{
function
styleGuide
Clean
()
{
/* --------------------------------------------------------------------------
/* --------------------------------------------------------------------------
CSS PROPERTIES
CSS PROPERTIES
...
...
src/app/ui/styles-guide/theme-chooser.js
View file @
2d4abfed
var
styleGuideLight
=
require
(
'./style-guide'
)
var
styleGuideLight
=
require
(
'./style-guide'
)
var
styleGuideDark
=
require
(
'./styleGuideDark'
)
var
styleGuideDark
=
require
(
'./styleGuideDark'
)
var
styleGuide
David
=
require
(
'./styleGuideDavid
'
)
var
styleGuide
Clean
=
require
(
'./styleGuideClean
'
)
var
Storage
=
require
(
'remix-lib'
).
Storage
var
Storage
=
require
(
'remix-lib'
).
Storage
module
.
exports
=
{
module
.
exports
=
{
...
@@ -10,8 +10,8 @@ module.exports = {
...
@@ -10,8 +10,8 @@ module.exports = {
if
(
themeStorage
.
exists
(
'theme'
))
{
if
(
themeStorage
.
exists
(
'theme'
))
{
if
(
themeStorage
.
get
(
'theme'
)
===
'dark'
)
{
if
(
themeStorage
.
get
(
'theme'
)
===
'dark'
)
{
return
styleGuideDark
()
return
styleGuideDark
()
}
else
if
(
themeStorage
.
get
(
'theme'
)
===
'
david
'
)
{
}
else
if
(
themeStorage
.
get
(
'theme'
)
===
'
clean
'
)
{
return
styleGuide
David
()
return
styleGuide
Clean
()
}
else
{
}
else
{
return
styleGuideLight
()
return
styleGuideLight
()
}
}
...
@@ -27,8 +27,8 @@ module.exports = {
...
@@ -27,8 +27,8 @@ module.exports = {
return
styleGuideDark
()
return
styleGuideDark
()
}
else
if
(
theme
===
'light'
)
{
}
else
if
(
theme
===
'light'
)
{
return
styleGuideLight
()
return
styleGuideLight
()
}
else
if
(
theme
===
'
david
'
)
{
}
else
if
(
theme
===
'
clean
'
)
{
return
styleGuide
David
()
return
styleGuide
Clean
()
}
else
{
}
else
{
return
styleGuideLight
()
return
styleGuideLight
()
}
}
...
...
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