Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Codecrew
/
Moya
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
30
Merge Requests
2
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 3012b2dc
authored
Apr 03, 2018
by
Tuukka Kivilahti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed obsolute menucomponents
1 parent
2374f975
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
0 additions
and
129 deletions
code/moya-angular/src/app/menu/admin-menu/admin-menu.component.html
code/moya-angular/src/app/menu/admin-menu/admin-menu.component.scss
code/moya-angular/src/app/menu/admin-menu/admin-menu.component.spec.ts
code/moya-angular/src/app/menu/admin-menu/admin-menu.component.ts
code/moya-angular/src/app/menu/info-menu/info-menu.component.html
code/moya-angular/src/app/menu/info-menu/info-menu.component.scss
code/moya-angular/src/app/menu/info-menu/info-menu.component.spec.ts
code/moya-angular/src/app/menu/info-menu/info-menu.component.ts
code/moya-angular/src/app/menu/user-menu/user-menu.component.html
code/moya-angular/src/app/menu/user-menu/user-menu.component.scss
code/moya-angular/src/app/menu/user-menu/user-menu.component.spec.ts
code/moya-angular/src/app/menu/user-menu/user-menu.component.ts
code/moya-angular/src/app/menu/admin-menu/admin-menu.component.html
deleted
100644 → 0
View file @
2374f97
<!-- <left-menu [menu]="menu" styleClass="adminMenu"></left-menu> -->
code/moya-angular/src/app/menu/admin-menu/admin-menu.component.scss
deleted
100644 → 0
View file @
2374f97
File mode changed
code/moya-angular/src/app/menu/admin-menu/admin-menu.component.spec.ts
deleted
100644 → 0
View file @
2374f97
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
AdminMenuComponent
}
from
'./admin-menu.component'
;
describe
(
'AdminMenuComponent'
,
()
=>
{
let
component
:
AdminMenuComponent
;
let
fixture
:
ComponentFixture
<
AdminMenuComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
AdminMenuComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
AdminMenuComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should be created'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
code/moya-angular/src/app/menu/admin-menu/admin-menu.component.ts
deleted
100644 → 0
View file @
2374f97
import
{
Component
}
from
'@angular/core'
;
import
{
MenuGroup
}
from
'../models/menu-group.model'
;
import
{
MENU
}
from
'../defines/menu'
;
@
Component
({
selector
:
'moya-admin-menu'
,
templateUrl
:
'./admin-menu.component.html'
,
styleUrls
:
[
'./admin-menu.component.scss'
]
})
export
class
AdminMenuComponent
{
menu
:
MenuGroup
[]
=
MENU
.
ADMIN
;
}
code/moya-angular/src/app/menu/info-menu/info-menu.component.html
deleted
100644 → 0
View file @
2374f97
<!-- <left-menu [menu]="menu" styleClass="infoMenu"></left-menu> -->
code/moya-angular/src/app/menu/info-menu/info-menu.component.scss
deleted
100644 → 0
View file @
2374f97
File mode changed
code/moya-angular/src/app/menu/info-menu/info-menu.component.spec.ts
deleted
100644 → 0
View file @
2374f97
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
InfoMenuComponent
}
from
'./info-menu.component'
;
describe
(
'InfoMenuComponent'
,
()
=>
{
let
component
:
InfoMenuComponent
;
let
fixture
:
ComponentFixture
<
InfoMenuComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
InfoMenuComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
InfoMenuComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should be created'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
code/moya-angular/src/app/menu/info-menu/info-menu.component.ts
deleted
100644 → 0
View file @
2374f97
import
{
Component
,
OnInit
}
from
'@angular/core'
;
import
{
MenuGroup
}
from
'../models/menu-group.model'
;
import
{
MENU
}
from
'../defines/menu'
;
@
Component
({
selector
:
'moya-info-menu'
,
templateUrl
:
'./info-menu.component.html'
,
styleUrls
:
[
'./info-menu.component.scss'
]
})
export
class
InfoMenuComponent
implements
OnInit
{
menu
:
MenuGroup
[]
=
MENU
.
INFO
;
constructor
()
{
}
ngOnInit
()
{
}
}
code/moya-angular/src/app/menu/user-menu/user-menu.component.html
deleted
100644 → 0
View file @
2374f97
<!-- <left-menu [menu]="menu" styleClass="userMenu"></left-menu> -->
code/moya-angular/src/app/menu/user-menu/user-menu.component.scss
deleted
100644 → 0
View file @
2374f97
File mode changed
code/moya-angular/src/app/menu/user-menu/user-menu.component.spec.ts
deleted
100644 → 0
View file @
2374f97
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
UserMenuComponent
}
from
'./user-menu.component'
;
describe
(
'UserMenuComponent'
,
()
=>
{
let
component
:
UserMenuComponent
;
let
fixture
:
ComponentFixture
<
UserMenuComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
UserMenuComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
UserMenuComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should be created'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
code/moya-angular/src/app/menu/user-menu/user-menu.component.ts
deleted
100644 → 0
View file @
2374f97
import
{
Component
,
OnInit
}
from
'@angular/core'
;
import
{
MenuGroup
}
from
'../models/menu-group.model'
;
import
{
MENU
}
from
'../defines/menu'
;
@
Component
({
selector
:
'moya-user-menu'
,
templateUrl
:
'./user-menu.component.html'
,
styleUrls
:
[
'./user-menu.component.scss'
]
})
export
class
UserMenuComponent
implements
OnInit
{
menu
:
MenuGroup
[]
=
MENU
.
USER
;
constructor
()
{
}
ngOnInit
()
{
}
}
Write
Preview
Markdown
is supported
Attach a file
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 post a comment