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
8447ee6e
Commit
8447ee6e
authored
Jan 18, 2019
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
standard
parent
ee491d83
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
49 deletions
+36
-49
staticAnalysisView.js
src/app/staticanalysis/staticAnalysisView.js
+0
-4
panels-resize.js
src/lib/panels-resize.js
+1
-1
store.js
src/lib/store.js
+35
-44
No files found.
src/app/staticanalysis/staticAnalysisView.js
View file @
8447ee6e
...
@@ -4,10 +4,6 @@ var yo = require('yo-yo')
...
@@ -4,10 +4,6 @@ var yo = require('yo-yo')
var
$
=
require
(
'jquery'
)
var
$
=
require
(
'jquery'
)
var
remixLib
=
require
(
'remix-lib'
)
var
remixLib
=
require
(
'remix-lib'
)
var
utils
=
remixLib
.
util
var
utils
=
remixLib
.
util
var
styleGuide
=
require
(
'../ui/styles-guide/theme-chooser'
)
var
styles
=
styleGuide
.
chooser
()
var
css
=
require
(
'./styles/staticAnalysisView-styles'
)
var
css
=
require
(
'./styles/staticAnalysisView-styles'
)
var
globlalRegistry
=
require
(
'../../global/registry'
)
var
globlalRegistry
=
require
(
'../../global/registry'
)
...
...
src/lib/panels-resize.js
View file @
8447ee6e
...
@@ -93,7 +93,7 @@ export default class PanelsResize {
...
@@ -93,7 +93,7 @@ export default class PanelsResize {
return
{
panel1Width
,
panel2left
,
panel2Width
}
return
{
panel1Width
,
panel2left
,
panel2Width
}
}
}
window
.
addEventListener
(
'resize'
,
function
(
event
){
window
.
addEventListener
(
'resize'
,
function
(
event
)
{
setPosition
({
x
:
panel1
.
offsetLeft
+
panel1
.
clientWidth
})
setPosition
({
x
:
panel1
.
offsetLeft
+
panel1
.
clientWidth
})
})
})
...
...
src/lib/store.js
View file @
8447ee6e
/* global localStorage */
import
{
EventEmitter
}
from
'events'
import
{
EventEmitter
}
from
'events'
export
class
Store
{
export
class
Store
{
...
@@ -8,7 +9,7 @@ export class Store {
...
@@ -8,7 +9,7 @@ export class Store {
* @param {string} name The name of the store
* @param {string} name The name of the store
* @param {T} initialState The initial state used if state is not available in `localStorage`
* @param {T} initialState The initial state used if state is not available in `localStorage`
*/
*/
static
fromLocal
(
name
,
initialState
)
{
static
fromLocal
(
name
,
initialState
)
{
const
fromLocal
=
localStorage
.
getItem
(
name
)
const
fromLocal
=
localStorage
.
getItem
(
name
)
const
intial
=
fromLocal
?
JSON
.
parse
(
fromLocal
)
:
initialState
const
intial
=
fromLocal
?
JSON
.
parse
(
fromLocal
)
:
initialState
return
new
Store
(
name
,
intial
)
return
new
Store
(
name
,
intial
)
...
@@ -20,20 +21,20 @@ export class Store {
...
@@ -20,20 +21,20 @@ export class Store {
* @param {string} name The name of the store
* @param {string} name The name of the store
* @param {T} initialState The initial state of the store
* @param {T} initialState The initial state of the store
*/
*/
constructor
(
name
,
initialState
)
{
constructor
(
name
,
initialState
)
{
this
.
event
=
new
EventEmitter
()
this
.
event
=
new
EventEmitter
()
this
.
name
=
name
this
.
name
=
name
this
.
state
=
initialState
this
.
state
=
initialState
}
}
/** Listen on event from the store */
/** Listen on event from the store */
get
on
()
{
get
on
()
{
return
this
.
event
.
on
;
return
this
.
event
.
on
}
}
/** Liste once on event from the store */
/** Liste once on event from the store */
get
once
()
{
get
once
()
{
return
this
.
event
.
once
;
return
this
.
event
.
once
}
}
/**
/**
...
@@ -51,17 +52,17 @@ export class Store {
...
@@ -51,17 +52,17 @@ export class Store {
* @template Key key of `this.state`
* @template Key key of `this.state`
* @param {Key} key A key of the state
* @param {Key} key A key of the state
*/
*/
get
(
key
)
{
get
(
key
)
{
return
this
.
state
.
entities
[
key
]
return
this
.
state
.
entities
[
key
]
}
}
/** Reset the state its initial value */
/** Reset the state its initial value */
reset
()
{
reset
()
{
this
.
state
=
this
.
initialState
this
.
state
=
this
.
initialState
}
}
/** Dispatch an event with the new state */
/** Dispatch an event with the new state */
dispatch
()
{
dispatch
()
{
this
.
event
.
emit
(
'newState'
,
this
.
state
)
this
.
event
.
emit
(
'newState'
,
this
.
state
)
}
}
}
}
...
@@ -74,8 +75,6 @@ export class Store {
...
@@ -74,8 +75,6 @@ export class Store {
* @property {Object} entities A map of ids and entities
* @property {Object} entities A map of ids and entities
*/
*/
export
class
EntityStore
extends
Store
{
export
class
EntityStore
extends
Store
{
/**
/**
...
@@ -83,7 +82,7 @@ export class EntityStore extends Store {
...
@@ -83,7 +82,7 @@ export class EntityStore extends Store {
* @param {string} name The name of the store
* @param {string} name The name of the store
* @param {EntityState} initialState The initial state used if state is not available in `localStorage`
* @param {EntityState} initialState The initial state used if state is not available in `localStorage`
*/
*/
static
fromLocal
(
name
,
initialState
)
{
static
fromLocal
(
name
,
initialState
)
{
const
fromLocal
=
localStorage
.
getItem
(
name
)
const
fromLocal
=
localStorage
.
getItem
(
name
)
const
intial
=
fromLocal
?
JSON
.
parse
(
fromLocal
)
:
initialState
const
intial
=
fromLocal
?
JSON
.
parse
(
fromLocal
)
:
initialState
return
new
EntityStore
(
name
,
intial
)
return
new
EntityStore
(
name
,
intial
)
...
@@ -94,43 +93,37 @@ export class EntityStore extends Store {
...
@@ -94,43 +93,37 @@ export class EntityStore extends Store {
* @param {string} name The name of the store
* @param {string} name The name of the store
* @param {EntityState} initialState The initial state used if state is not available in `localStorage`
* @param {EntityState} initialState The initial state used if state is not available in `localStorage`
*/
*/
constructor
(
name
,
initialState
)
{
/*
constructor (name, initialState) {
super(name, initialState)
super(name, initialState)
}
}
*/
////////////
// GETTER //
////////////
/** Tne entities as a Map */
/** Tne entities as a Map */
get
entities
()
{
get
entities
()
{
return
this
.
state
.
entities
return
this
.
state
.
entities
}
}
/** List of all the ids */
/** List of all the ids */
get
ids
()
{
get
ids
()
{
return
this
.
state
.
ids
return
this
.
state
.
ids
}
}
/** List of all active ID */
/** List of all active ID */
get
actives
()
{
get
actives
()
{
return
this
.
state
.
actives
return
this
.
state
.
actives
}
}
/** Return the length of the entity collection */
/** Return the length of the entity collection */
get
length
()
{
get
length
()
{
return
this
.
state
.
ids
.
length
return
this
.
state
.
ids
.
length
}
}
/////////////
// SETTERS //
/////////////
/**
/**
* Add a new entity to the state
* Add a new entity to the state
* @param {Object} entity
* @param {Object} entity
*/
*/
add
(
id
,
entity
)
{
add
(
id
,
entity
)
{
this
.
state
.
entities
[
id
]
=
entity
this
.
state
.
entities
[
id
]
=
entity
this
.
state
.
ids
.
push
(
id
)
this
.
state
.
ids
.
push
(
id
)
this
.
event
.
emit
(
'add'
,
id
,
entity
)
this
.
event
.
emit
(
'add'
,
id
,
entity
)
...
@@ -140,7 +133,7 @@ export class EntityStore extends Store {
...
@@ -140,7 +133,7 @@ export class EntityStore extends Store {
* Add entities to the state
* Add entities to the state
* @param {Array} entities
* @param {Array} entities
*/
*/
addEntities
(
entities
)
{
addEntities
(
entities
)
{
entities
.
forEach
((
entity
)
=>
{
this
.
add
(
entity
.
profile
.
name
,
entity
)
})
entities
.
forEach
((
entity
)
=>
{
this
.
add
(
entity
.
profile
.
name
,
entity
)
})
}
}
...
@@ -148,7 +141,7 @@ export class EntityStore extends Store {
...
@@ -148,7 +141,7 @@ export class EntityStore extends Store {
* Remove an entity from the state
* Remove an entity from the state
* @param {(string|number)} id The id of the entity to remove
* @param {(string|number)} id The id of the entity to remove
*/
*/
remove
(
id
)
{
remove
(
id
)
{
delete
this
.
state
.
entities
[
id
]
delete
this
.
state
.
entities
[
id
]
this
.
state
.
ids
.
splice
(
this
.
state
.
ids
.
indexOf
(
id
),
1
)
this
.
state
.
ids
.
splice
(
this
.
state
.
ids
.
indexOf
(
id
),
1
)
this
.
state
.
actives
.
splice
(
this
.
state
.
ids
.
indexOf
(
id
),
1
)
this
.
state
.
actives
.
splice
(
this
.
state
.
ids
.
indexOf
(
id
),
1
)
...
@@ -172,7 +165,7 @@ export class EntityStore extends Store {
...
@@ -172,7 +165,7 @@ export class EntityStore extends Store {
* Activate one or several entity from the state
* Activate one or several entity from the state
* @param {((string|number))} ids An id or a list of id to activate
* @param {((string|number))} ids An id or a list of id to activate
*/
*/
activate
(
id
)
{
activate
(
id
)
{
this
.
state
.
actives
.
push
(
id
)
this
.
state
.
actives
.
push
(
id
)
this
.
event
.
emit
(
'activate'
,
id
)
this
.
event
.
emit
(
'activate'
,
id
)
}
}
...
@@ -181,20 +174,20 @@ export class EntityStore extends Store {
...
@@ -181,20 +174,20 @@ export class EntityStore extends Store {
* Deactivate one or several entity from the state
* Deactivate one or several entity from the state
* @param {(string|number))} ids An id or a list of id to deactivate
* @param {(string|number))} ids An id or a list of id to deactivate
*/
*/
deactivate
(
id
)
{
deactivate
(
id
)
{
this
.
state
.
actives
.
splice
(
this
.
state
.
actives
.
indexOf
(
id
),
1
)
this
.
state
.
actives
.
splice
(
this
.
state
.
actives
.
indexOf
(
id
),
1
)
this
.
event
.
emit
(
'deactivate'
,
id
)
this
.
event
.
emit
(
'deactivate'
,
id
)
}
}
///////////
//
/////////
// QUERY //
// QUERY //
///////////
//
/////////
/**
/**
* Get one entity
* Get one entity
* @param {(string|number)} id The id of the entity to get
* @param {(string|number)} id The id of the entity to get
*/
*/
getOne
(
id
)
{
getOne
(
id
)
{
return
this
.
state
.
entities
[
id
]
return
this
.
state
.
entities
[
id
]
}
}
...
@@ -202,29 +195,25 @@ export class EntityStore extends Store {
...
@@ -202,29 +195,25 @@ export class EntityStore extends Store {
* Get many entities as an array
* Get many entities as an array
* @param {(string|number)[]} ids An array of id of entity to get
* @param {(string|number)[]} ids An array of id of entity to get
*/
*/
getMany
(
ids
)
{
getMany
(
ids
)
{
return
ids
.
map
(
id
=>
this
.
state
.
entities
[
id
])
return
ids
.
map
(
id
=>
this
.
state
.
entities
[
id
])
}
}
/** Get all the entities as an array */
/** Get all the entities as an array */
getAll
()
{
getAll
()
{
return
this
.
state
.
ids
.
map
(
id
=>
this
.
state
.
entities
[
id
])
return
this
.
state
.
ids
.
map
(
id
=>
this
.
state
.
entities
[
id
])
}
}
/** Get all active entities */
/** Get all active entities */
getActives
()
{
getActives
()
{
return
this
.
state
.
actives
.
map
(
id
=>
this
.
state
.
entities
[
id
])
return
this
.
state
.
actives
.
map
(
id
=>
this
.
state
.
entities
[
id
])
}
}
////////////////
// CONDITIONS //
////////////////
/**
/**
* Is the entity active
* Is the entity active
* @param {(string|number)} id The id of the entity to check
* @param {(string|number)} id The id of the entity to check
*/
*/
isActive
(
id
)
{
isActive
(
id
)
{
return
this
.
state
.
actives
.
includes
(
id
)
return
this
.
state
.
actives
.
includes
(
id
)
}
}
...
@@ -232,7 +221,7 @@ export class EntityStore extends Store {
...
@@ -232,7 +221,7 @@ export class EntityStore extends Store {
* Is this id inside the store
* Is this id inside the store
* @param {(string|number)} id The id of the entity to check
* @param {(string|number)} id The id of the entity to check
*/
*/
hasEntity
(
id
)
{
hasEntity
(
id
)
{
return
this
.
state
.
ids
.
includes
(
id
)
return
this
.
state
.
ids
.
includes
(
id
)
}
}
...
@@ -240,7 +229,7 @@ export class EntityStore extends Store {
...
@@ -240,7 +229,7 @@ export class EntityStore extends Store {
* Is the state empty
* Is the state empty
* @param {(string|number)} id The id of the entity to check
* @param {(string|number)} id The id of the entity to check
*/
*/
isEmpty
()
{
isEmpty
()
{
return
this
.
state
.
ids
.
length
===
0
return
this
.
state
.
ids
.
length
===
0
}
}
}
}
...
@@ -249,7 +238,8 @@ export class EntityStore extends Store {
...
@@ -249,7 +238,8 @@ export class EntityStore extends Store {
* Store the state of the stores into LocalStorage
* Store the state of the stores into LocalStorage
* @param {Store[]} stores The list of stores to store into `localStorage`
* @param {Store[]} stores The list of stores to store into `localStorage`
*/
*/
function
localState
(
stores
)
{
/*
function localState (stores) {
stores.forEach(store => {
stores.forEach(store => {
const name = store.name
const name = store.name
store.on('newState', (state) => {
store.on('newState', (state) => {
...
@@ -257,3 +247,4 @@ function localState(stores) {
...
@@ -257,3 +247,4 @@ function localState(stores) {
})
})
})
})
}
}
*/
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