Merge Request #16
← To merge requests
From
display-content-block
into
master
Commits (2)
Showing
13 changed files
Show diff stats
src/app/layout/blocks/display-content/display-content-block.component.spec.ts
0 → 100644
@@ -0,0 +1,75 @@ | @@ -0,0 +1,75 @@ | ||
1 | +import {TestComponentBuilder} from 'ng-forward/cjs/testing/test-component-builder'; | ||
2 | +import {Provider, provide} from 'ng-forward'; | ||
3 | +import {ComponentTestHelper, createClass} from './../../../../spec/component-test-helper'; | ||
4 | +import {providers} from 'ng-forward/cjs/testing/providers'; | ||
5 | +import {DisplayContentBlockComponent} from './display-content-block.component'; | ||
6 | +import * as helpers from './../../../../spec/helpers'; | ||
7 | + | ||
8 | +const htmlTemplate: string = '<noosfero-display-content-block [block]="ctrl.block" [owner]="ctrl.owner"></noosfero-display-content-block>'; | ||
9 | + | ||
10 | +describe("Components", () => { | ||
11 | + | ||
12 | + describe("Display Content Block Component", () => { | ||
13 | + let state = jasmine.createSpyObj("state", ["go"]); | ||
14 | + let providers = [ | ||
15 | + provide('ArticleService', { | ||
16 | + useValue: helpers.mocks.articleService | ||
17 | + }), | ||
18 | + provide('$state', { useValue: state }) | ||
19 | + ].concat(helpers.provideFilters("translateFilter")); | ||
20 | + | ||
21 | + let sections: noosfero.Section[] = [ | ||
22 | + { value: 'abstract', checked: 'abstract'}, | ||
23 | + { value: 'title', checked: 'title' } | ||
24 | + ]; | ||
25 | + let settings: noosfero.Settings = { | ||
26 | + limit: 6, | ||
27 | + sections: sections | ||
28 | + }; | ||
29 | + | ||
30 | + let helper: ComponentTestHelper<DisplayContentBlockComponent>; | ||
31 | + | ||
32 | + beforeEach(angular.mock.module("templates")); | ||
33 | + | ||
34 | + /** | ||
35 | + * The beforeEach procedure will initialize the helper and parse | ||
36 | + * the component according to the given providers. Unfortunetly, in | ||
37 | + * this mode, the providers and properties given to the construtor | ||
38 | + * can't be overriden. | ||
39 | + */ | ||
40 | + beforeEach((done) => { | ||
41 | + // Create the component bed for the test. Optionally, this could be done | ||
42 | + // in each test if one needs customization of these parameters per test | ||
43 | + let cls = createClass({ | ||
44 | + template: htmlTemplate, | ||
45 | + directives: [DisplayContentBlockComponent], | ||
46 | + providers: providers, | ||
47 | + properties: { | ||
48 | + block: { | ||
49 | + settings: settings | ||
50 | + } | ||
51 | + } | ||
52 | + }); | ||
53 | + helper = new ComponentTestHelper<DisplayContentBlockComponent>(cls, done); | ||
54 | + }); | ||
55 | + | ||
56 | + it("verify settings is injected", () => { | ||
57 | + expect(helper.component.block).not.toBeNull; | ||
58 | + expect(helper.component.block.settings).not.toBeNull; | ||
59 | + expect(helper.component.block.settings.limit).toEqual(6); | ||
60 | + expect(helper.component.block.settings.sections.length).toEqual(3); | ||
61 | + }); | ||
62 | + | ||
63 | + it("verify abstract is displayed", () => { | ||
64 | + expect(helper.all("div[ng-bind-html|='article.abstract']")[0]).not.toBeNull; | ||
65 | + }); | ||
66 | + | ||
67 | + it("verify title is displayed", () => { | ||
68 | + expect(helper.all("div > h5")[0]).not.toBeNull; | ||
69 | + }); | ||
70 | + | ||
71 | + it("verify body is not displayed", () => { | ||
72 | + expect(helper.all("div[ng-bind-html|='article.body']")[0]).toBeNull; | ||
73 | + }); | ||
74 | + }); | ||
75 | +}); |
src/app/layout/blocks/display-content/display-content-block.component.ts
0 → 100644
@@ -0,0 +1,54 @@ | @@ -0,0 +1,54 @@ | ||
1 | +import {Input, Inject, Component} from "ng-forward"; | ||
2 | +import {ArticleService} from "../../../../lib/ng-noosfero-api/http/article.service"; | ||
3 | + | ||
4 | +@Component({ | ||
5 | + selector: "noosfero-display-content-block", | ||
6 | + templateUrl: 'app/layout/blocks/display-content/display-content-block.html', | ||
7 | +}) | ||
8 | +@Inject(ArticleService, "$state") | ||
9 | +export class DisplayContentBlockComponent { | ||
10 | + | ||
11 | + @Input() block: noosfero.Block; | ||
12 | + @Input() owner: noosfero.Profile; | ||
13 | + | ||
14 | + profile: noosfero.Profile; | ||
15 | + articles: noosfero.Article[]; | ||
16 | + sections: noosfero.Section[]; | ||
17 | + | ||
18 | + documentsLoaded: boolean = false; | ||
19 | + | ||
20 | + constructor(private articleService: ArticleService, private $state: ng.ui.IStateService) {} | ||
21 | + | ||
22 | + ngOnInit() { | ||
23 | + this.profile = this.owner; | ||
24 | + let limit = ((this.block && this.block.settings) ? this.block.settings.limit : null) || 5; | ||
25 | + this.articleService.getByProfile(this.profile, { content_type: 'TinyMceArticle', per_page: limit }) | ||
26 | + .then((result: noosfero.RestResult<noosfero.Article[]>) => { | ||
27 | + this.articles = <noosfero.Article[]>result.data; | ||
28 | + this.sections = this.block.settings.sections; | ||
29 | + // Add sections not defined by Noosfero API | ||
30 | + this.addDefaultSections(); | ||
31 | + this.documentsLoaded = true; | ||
32 | + }); | ||
33 | + } | ||
34 | + | ||
35 | + /** | ||
36 | + * This configuration doesn't exists on Noosfero. Statically typing here. | ||
37 | + */ | ||
38 | + private addDefaultSections() { | ||
39 | + let author: noosfero.Section = <noosfero.Section>{ value: 'author', checked: 'author' }; | ||
40 | + this.sections.push(author); | ||
41 | + } | ||
42 | + | ||
43 | + /** | ||
44 | + * Returns whether a settings section should be displayed. | ||
45 | + * | ||
46 | + */ | ||
47 | + private display(section_name: string): boolean { | ||
48 | + let section: noosfero.Section = this.sections.find( function(section: noosfero.Section) { | ||
49 | + return section.value === section_name; | ||
50 | + }); | ||
51 | + return section !== undefined && section.checked !== undefined; | ||
52 | + } | ||
53 | + | ||
54 | +} |
src/app/layout/blocks/display-content/display-content-block.html
0 → 100644
@@ -0,0 +1,46 @@ | @@ -0,0 +1,46 @@ | ||
1 | +<div class="{{ctrl.type}}-block"> | ||
2 | + <div ng-repeat="article in ctrl.articles" ui-sref="main.profile.page({profile: ctrl.profile.identifier, page: article.path})"" class="article"> | ||
3 | + <!-- Article Title --> | ||
4 | + <div class="page-header" ng-if="ctrl.display('title')"> | ||
5 | + <h5 class="title media-heading" ng-bind="article.title"></h3> | ||
6 | + </div> | ||
7 | + | ||
8 | + <div class="sub-header clearfix"> | ||
9 | + <!-- Article Abstract and Read More Link --> | ||
10 | + <div class="post-lead" ng-if="ctrl.display('abstract')"> | ||
11 | + <div ng-bind-html="article.abstract"></div> | ||
12 | + <a href="#" ui-sref="main.profile.page({profile: ctrl.profile.identifier, page: article.path})"> | ||
13 | + <i class="fa fa-pencil-square-o fa-fw fa-lg"></i> {{"article.actions.read_more" | translate}} | ||
14 | + </a> | ||
15 | + </div> | ||
16 | + <div class="page-info pull-right small text-muted" ng-if="ctrl.display('publish_date')"> | ||
17 | + <!-- Article Published Date --> | ||
18 | + <span class="time"> | ||
19 | + <i class="fa fa-clock-o"></i> <span am-time-ago="article.created_at | dateFormat"></span> | ||
20 | + </span> | ||
21 | + <!-- Article Author --> | ||
22 | + <span class="author" ng-if="ctrl.display('author')"> | ||
23 | + <i class="fa fa-user"></i> | ||
24 | + <a ui-sref="main.profile.home({profile: article.author.identifier})" ng-if="article.author"> | ||
25 | + <span class="author-name" ng-bind="article.author.name"></span> | ||
26 | + </a> | ||
27 | + </span> | ||
28 | + </div> | ||
29 | + </div> | ||
30 | + | ||
31 | + <div class="post-lead"> | ||
32 | + <!-- Article Image --> | ||
33 | + <img ng-show="ctrl.display('image')" ng-src="{{article.image.url}}" class="img-responsive article-image"> | ||
34 | + <!-- Article Body --> | ||
35 | + <div ng-bind-html="article.body" ng-show="ctrl.display('body')"></div> | ||
36 | + </div> | ||
37 | + | ||
38 | + <!-- Article Tags --> | ||
39 | + <div ng-if="ctrl.display('tags')" class="post-lead"> | ||
40 | + <div class="label" ng-repeat="tag in article.tag_list"> | ||
41 | + <span class="badge" ng-bind="tag"></span> | ||
42 | + </div> | ||
43 | + </div> | ||
44 | + | ||
45 | + </div> | ||
46 | +</div> |
src/app/layout/blocks/display-content/display-content-block.scss
0 → 100644
@@ -0,0 +1,17 @@ | @@ -0,0 +1,17 @@ | ||
1 | +.members-block { | ||
2 | + .member { | ||
3 | + img, i.profile-image { | ||
4 | + width: 60px; | ||
5 | + } | ||
6 | + img { | ||
7 | + display: inline-block; | ||
8 | + vertical-align: top; | ||
9 | + } | ||
10 | + i.profile-image { | ||
11 | + text-align: center; | ||
12 | + background-color: #889DB1; | ||
13 | + color: #F1F1F1; | ||
14 | + font-size: 4.5em; | ||
15 | + } | ||
16 | + } | ||
17 | +} |
src/app/layout/services/body-state-classes.service.ts
1 | import {Directive, Inject, Injectable} from "ng-forward"; | 1 | import {Directive, Inject, Injectable} from "ng-forward"; |
2 | -import {AuthEvents} from "./../../login/auth-events"; | 2 | +import {AuthEvents} from "../../login/auth-events"; |
3 | import {AuthService} from "./../../login/auth.service"; | 3 | import {AuthService} from "./../../login/auth.service"; |
4 | import {HtmlUtils} from "../html-utils"; | 4 | import {HtmlUtils} from "../html-utils"; |
5 | import {INgForwardJQuery} from 'ng-forward/cjs/util/jqlite-extensions'; | 5 | import {INgForwardJQuery} from 'ng-forward/cjs/util/jqlite-extensions'; |
src/app/main/main.component.ts
@@ -10,14 +10,15 @@ import {BlockComponent} from "../layout/blocks/block.component"; | @@ -10,14 +10,15 @@ import {BlockComponent} from "../layout/blocks/block.component"; | ||
10 | import {EnvironmentComponent} from "../environment/environment.component"; | 10 | import {EnvironmentComponent} from "../environment/environment.component"; |
11 | import {EnvironmentHomeComponent} from "../environment/environment-home.component"; | 11 | import {EnvironmentHomeComponent} from "../environment/environment-home.component"; |
12 | import {PeopleBlockComponent} from "../layout/blocks/people/people-block.component"; | 12 | import {PeopleBlockComponent} from "../layout/blocks/people/people-block.component"; |
13 | -import {LinkListBlockComponent} from "./../layout/blocks/link-list/link-list-block.component"; | 13 | +import {DisplayContentBlockComponent} from "../layout/blocks/display-content/display-content-block.component"; |
14 | +import {LinkListBlockComponent} from "../layout/blocks/link-list/link-list-block.component"; | ||
14 | import {RecentDocumentsBlockComponent} from "../layout/blocks/recent-documents/recent-documents-block.component"; | 15 | import {RecentDocumentsBlockComponent} from "../layout/blocks/recent-documents/recent-documents-block.component"; |
15 | import {ProfileImageBlockComponent} from "../layout/blocks/profile-image/profile-image-block.component"; | 16 | import {ProfileImageBlockComponent} from "../layout/blocks/profile-image/profile-image-block.component"; |
16 | import {RawHTMLBlockComponent} from "../layout/blocks/raw-html/raw-html-block.component"; | 17 | import {RawHTMLBlockComponent} from "../layout/blocks/raw-html/raw-html-block.component"; |
17 | import {StatisticsBlockComponent} from "../layout/blocks/statistics/statistics-block.component"; | 18 | import {StatisticsBlockComponent} from "../layout/blocks/statistics/statistics-block.component"; |
18 | 19 | ||
19 | -import {MembersBlockComponent} from "./../layout/blocks/members/members-block.component"; | ||
20 | -import {CommunitiesBlockComponent} from "./../layout/blocks/communities/communities-block.component"; | 20 | +import {MembersBlockComponent} from "../layout/blocks/members/members-block.component"; |
21 | +import {CommunitiesBlockComponent} from "../layout/blocks/communities/communities-block.component"; | ||
21 | 22 | ||
22 | import {LoginBlockComponent} from "../layout/blocks/login-block/login-block.component"; | 23 | import {LoginBlockComponent} from "../layout/blocks/login-block/login-block.component"; |
23 | 24 | ||
@@ -94,7 +95,7 @@ export class EnvironmentContent { | @@ -94,7 +95,7 @@ export class EnvironmentContent { | ||
94 | template: '<div ng-view></div>', | 95 | template: '<div ng-view></div>', |
95 | directives: [ | 96 | directives: [ |
96 | ArticleBlogComponent, ArticleViewComponent, BoxesComponent, BlockComponent, | 97 | ArticleBlogComponent, ArticleViewComponent, BoxesComponent, BlockComponent, |
97 | - EnvironmentComponent, PeopleBlockComponent, | 98 | + EnvironmentComponent, PeopleBlockComponent, DisplayContentBlockComponent, |
98 | LinkListBlockComponent, CommunitiesBlockComponent, HtmlEditorComponent, | 99 | LinkListBlockComponent, CommunitiesBlockComponent, HtmlEditorComponent, |
99 | MainBlockComponent, RecentDocumentsBlockComponent, Navbar, SidebarComponent, ProfileImageBlockComponent, | 100 | MainBlockComponent, RecentDocumentsBlockComponent, Navbar, SidebarComponent, ProfileImageBlockComponent, |
100 | MembersBlockComponent, NoosferoTemplate, DateFormat, RawHTMLBlockComponent, StatisticsBlockComponent, | 101 | MembersBlockComponent, NoosferoTemplate, DateFormat, RawHTMLBlockComponent, StatisticsBlockComponent, |
src/languages/en.json
@@ -37,6 +37,7 @@ | @@ -37,6 +37,7 @@ | ||
37 | "comment.post.success.message": "Comment saved!", | 37 | "comment.post.success.message": "Comment saved!", |
38 | "comment.reply": "reply", | 38 | "comment.reply": "reply", |
39 | "article.actions.edit": "Edit", | 39 | "article.actions.edit": "Edit", |
40 | + "article.actions.read_more": "Read More", | ||
40 | "article.basic_editor.title": "Title", | 41 | "article.basic_editor.title": "Title", |
41 | "article.basic_editor.body": "Body", | 42 | "article.basic_editor.body": "Body", |
42 | "article.basic_editor.save": "Save", | 43 | "article.basic_editor.save": "Save", |
src/languages/pt.json
@@ -37,6 +37,7 @@ | @@ -37,6 +37,7 @@ | ||
37 | "comment.post.success.message": "Comentário salvo com sucesso!", | 37 | "comment.post.success.message": "Comentário salvo com sucesso!", |
38 | "comment.reply": "responder", | 38 | "comment.reply": "responder", |
39 | "article.actions.edit": "Editar", | 39 | "article.actions.edit": "Editar", |
40 | + "article.actions.read_more": "Ler mais", | ||
40 | "article.basic_editor.title": "Título", | 41 | "article.basic_editor.title": "Título", |
41 | "article.basic_editor.body": "Corpo", | 42 | "article.basic_editor.body": "Corpo", |
42 | "article.basic_editor.save": "Salvar", | 43 | "article.basic_editor.save": "Salvar", |
src/lib/ng-noosfero-api/interfaces/article.ts
src/lib/ng-noosfero-api/interfaces/block.ts
@@ -0,0 +1,16 @@ | @@ -0,0 +1,16 @@ | ||
1 | +namespace noosfero { | ||
2 | + /** | ||
3 | + * @ngdoc interface | ||
4 | + * @name noosfero.Section | ||
5 | + * @description | ||
6 | + * Represents a block settings section. A Section has a value property, | ||
7 | + * which represents the Section name, and an optinally checked property which | ||
8 | + * has the same value as the value property indicating that this property is | ||
9 | + * selected in the block configuration. | ||
10 | + */ | ||
11 | + export interface Section { | ||
12 | + | ||
13 | + value: string; | ||
14 | + checked: string; | ||
15 | + } | ||
16 | +} | ||
0 | \ No newline at end of file | 17 | \ No newline at end of file |
-
Reassigned to @mfdeveloper
-
Added 34 new commits:
- cd6f200a - Initial commit for login-block
- 99531814 - Merge remote-tracking branch 'origin/master' into login-block
- 4f1c6294 - Login block component - initial implementation
- e1903c92 - Refactored test methods names
- bdbea3cd - Fixed user since html in login block
- b420f699 - Removed console log
- 49c1ee26 - Merging with master
- 479a013a - Merge remote-tracking branch 'origin/master' into login-block
- f68015db - Fixed merge request issues
- 5161636a - Merge branch 'login-block' into 'master'
- 9a88aab0 - using link list as top menu
- a4fb50e2 - Test behavior of comment component when article doesn't accept comments
- 5cb6e8a3 - Improve gulp build
- 0fdd5d98 - picture for people block participa-consulta-theme
- 1f4da208 - People block style
- 5727b1d8 - Fix build of ckeditor
- 4e270e6c - Fix gulp conf
- 246f026b - Do not show discussion header in regular articles
- b4421c0d - Fix warning in body states classes service
- 39a5fc2d - Merge branch 'master' of softwarepublico.gov.br:noosfero-themes/angular-theme
- 58a458df - people block style for participa consulta
- 8dde2ffd - using inheritance of classes for box
- 9cf0c6e6 - statistics block style for participa consulta theme
- ab10b960 - align center header content for participa consulta theme
- 00f7087d - Merge branch 'master' of softwarepublico.gov.br:noosfero-themes/angular-theme
- 7921e436 - Fix article cms test
- a7f0a708 - Use block endpoint to get block content
- eb097fe2 - Add test for block service
- 0f9e6899 - Use api_content to get articles for discussion block
- bdd5ee03 - Merge branch 'block-service' into 'master'
- 33b085bf - Add tests for article content hotspot in comment paragraph
- 076a7f18 - Accept grep parameter when running karma
- 29d769ad - Add tests for discussion editor in comment paragraph
- 451be0ef - Display content block initial version
-
mentioned in commit 628d8b3b057d5f461624e8affb7433c9ce3dedee