Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
833
Issues
833
List
Boards
Labels
Service Desk
Milestones
Merge Requests
44
Merge Requests
44
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
d596bad017dbceee7d7e8b88b253a3560630a0c0...74d12411d476a620d83c9a9e0593b54633efe4e8
Source
74d12411d476a620d83c9a9e0593b54633efe4e8
Select Git revision
...
Target
d596bad017dbceee7d7e8b88b253a3560630a0c0
Select Git revision
Compare
Commits (2)
(chore): Unwanted change
· cec64bf7
Emiliano Balbuena
authored
1 hour ago
cec64bf7
(wip): Smarter list
· 74d12411
Emiliano Balbuena
authored
59 minutes ago
74d12411
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
7 deletions
+15
-7
sorted.component.ts
src/app/modules/groups/profile/feed/sorted.component.ts
+1
-1
channel.component.html
src/app/modules/pro/channel/channel.component.html
+1
-1
list.component.html
src/app/modules/pro/channel/list/list.component.html
+13
-5
No files found.
src/app/modules/groups/profile/feed/sorted.component.ts
View file @
74d12411
...
...
@@ -64,8 +64,8 @@ export class GroupProfileFeedSortedComponent {
@
ViewChild
(
'
poster
'
,
{
static
:
false
})
protected
poster
:
PosterComponent
;
constructor
(
public
feedsService
:
FeedsService
,
protected
service
:
GroupsService
,
public
feedsService
:
FeedsService
,
protected
sortedService
:
SortedService
,
protected
session
:
Session
,
protected
router
:
Router
,
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/channel.component.html
View file @
74d12411
...
...
@@ -14,7 +14,7 @@
<a
[
routerLink
]="['/
pro
',
channel
.
username
,
'
videos
']"
routerLinkActive=
"active"
i18n
>
Videos
</a>
<a
[
routerLink
]="['/
pro
',
channel
.
username
,
'
images
']"
routerLinkActive=
"active"
i18n
>
Images
</a>
<a
[
routerLink
]="['/
pro
',
channel
.
username
,
'
articles
']"
routerLinkActive=
"active"
i18n
>
Articles
</a>
<a
[
routerLink
]="['/
pro
',
channel
.
username
,
'
groups
']"
routerLinkActive=
"active"
i18n
>
Groups
</a
>
<!-- <a [routerLink]="['/pro', channel.username, 'groups']" routerLinkActive="active" i18n>Groups</a>--
>
<a
[
routerLink
]="['/
pro
',
channel
.
username
,
'
feed
']"
routerLinkActive=
"active"
i18n
>
Feed
</a>
<!-- <a [routerLink]="['/pro', username, 'donate']" routerLinkActive="active">Donate</a>-->
<!-- <a [routerLink]="['/pro', username, 'signup']" routerLinkActive="active">Signup | Login</a>-->
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/list/list.component.html
View file @
74d12411
...
...
@@ -37,9 +37,17 @@
<!--<!– TODO: add infinite scroll or something to load more –>-->
<div
class=
"m-proChannelList__content"
>
<ul
class=
"m-proChannelListContent__list"
>
<li
*
ngFor=
"let entity of (feedsService.feed | async)"
>
<img
style=
"max-height: 320px; width: 100%; height: 100%; object-fit: cover"
[
src
]="(
entity
|
async
).
thumbnail_src
"
alt=
""
>
</li>
</ul>
<ng-container
*
ngIf=
"type === 'images' || type === 'videos' || type === 'blogs'"
>
<ul
class=
"m-proChannelListContent__list"
>
<li
*
ngFor=
"let entity of (feedsService.feed | async)"
>
<img
style=
"max-height: 320px; width: 100%; height: 100%; object-fit: cover"
[
src
]="(
entity
|
async
).
thumbnail_src
"
alt=
""
>
</li>
</ul>
</ng-container>
<ng-container
*
ngIf=
"type === 'activities'"
>
<pre
*
ngFor=
"let entity of (feedsService.feed | async)"
>
{{entity | async | json}}
</pre>
</ng-container>
<ng-container
*
ngIf=
"type === 'groups'"
>
<pre
*
ngFor=
"let entity of (feedsService.feed | async)"
>
{{entity | async | json}}
</pre>
</ng-container>
</div>
This diff is collapsed.
Click to expand it.