Compare View

switch
from
...
to
 
Commits (3)
bower.json
... ... @@ -39,12 +39,19 @@
39 39 "angular-click-outside": "^2.7.1",
40 40 "ng-ckeditor": "^0.2.1",
41 41 "angular-tag-cloud": "^0.3.0",
42   - "angular-ui-switch": "^0.1.1"
  42 + "angular-ui-switch": "^0.1.1",
  43 + "ng-file-upload": "^12.0.4",
  44 + "ng-img-crop": "^0.3.2"
43 45 },
44 46 "devDependencies": {
45 47 "angular-mocks": "~1.5.0"
46 48 },
47 49 "overrides": {
  50 + "ng-file-upload": {
  51 + "main": [
  52 + "ng-file-upload-all.js"
  53 + ]
  54 + },
48 55 "ng-ckeditor": {
49 56 "main": [
50 57 "ng-ckeditor.js",
... ...
gulp/watch.js
... ... @@ -46,6 +46,7 @@ gulp.task('watch', ['inject'], function () {
46 46 watchPaths.push(path.join(src, '/app/**/*.html'));
47 47 watchPaths.push(path.join(src, conf.paths.plugins, '/**/*.html'));
48 48 });
  49 + watchPaths.push(stylePaths);
49 50 gulp.watch(watchPaths, function(event) {
50 51 browserSync.reload(event.path);
51 52 });
... ...
src/app/layout/blocks/profile-image/profile-image-block.component.spec.ts
... ... @@ -14,12 +14,16 @@ describe("Components", () => {
14 14 describe("Profile Image Block Component", () => {
15 15  
16 16 beforeEach(angular.mock.module("templates"));
17   -
  17 + let personService = jasmine.createSpyObj("personService", ["upload"]);
18 18 @Component({
19 19 selector: 'test-container-component',
20 20 template: htmlTemplate,
21 21 directives: [ProfileImageBlockComponent],
22   - providers: helpers.provideFilters("translateFilter")
  22 + providers: [
  23 + helpers.provideFilters("translateFilter"),
  24 + helpers.createProviderToValue("PersonService", personService),
  25 + helpers.createProviderToValue("$uibModal", helpers.mocks.$modal)
  26 + ]
23 27 })
24 28 class BlockContainerComponent {
25 29 block = { type: 'Block' };
... ...
src/app/layout/blocks/profile-image/profile-image-block.html
1 1 <div class="center-block text-center profile-image-block">
2 2 <a ui-sref="main.profile.info({profile: ctrl.owner.identifier})">
3   - <noosfero-profile-image [profile]="ctrl.owner"></noosfero-profile-image>
  3 + <noosfero-profile-image [profile]="ctrl.owner" [editable]="true" [edit-class]="'profile-image-block-editable'"></noosfero-profile-image>
4 4 </a>
5 5 <a class="settings-link" target="_self" ui-sref="main.profile.settings({profile: ctrl.owner.identifier})">{{"blocks.profile_image.control_panel" | translate}}</a>
6 6 </div>
... ...
src/app/layout/blocks/profile-image/profile-image-block.scss
... ... @@ -2,4 +2,22 @@
2 2 .settings-link {
3 3 display: block;
4 4 }
  5 + .upload-camera-container {
  6 + top: 77%;
  7 + left: 6%;
  8 + }
  9 +}
  10 +
  11 +.profile-image-block-editable {
  12 + top: 68%;
  13 + width: 284px;
  14 + font-weight: 700;
  15 + height: 43px;
  16 + padding-left: 30px;
  17 + padding-top: 13px;
5 18 }
  19 +
  20 +
  21 +
  22 +
  23 +
... ...
src/app/main/main.component.ts
... ... @@ -116,7 +116,7 @@ export class EnvironmentContent {
116 116 "angular-bind-html-compile", "angularMoment", "angular.filter", "akoenig.deckgrid",
117 117 "angular-timeline", "duScroll", "oitozero.ngSweetAlert",
118 118 "pascalprecht.translate", "tmh.dynamicLocale", "angularLoad",
119   - "angular-click-outside", "ngTagCloud", "noosfero.init", "uiSwitch"]
  119 + "angular-click-outside", "ngTagCloud", "noosfero.init", "uiSwitch", "ngFileUpload", "ngImgCrop"]
120 120 })
121 121 @StateConfig([
122 122 {
... ...
src/app/profile/image/image.component.spec.ts
... ... @@ -4,22 +4,49 @@
4 4 * @description
5 5 * This file contains the tests for the {@link components.noosfero.profile-image.ProfileImage} component.
6 6 */
7   -
  7 +import {ComponentTestHelper, createClass} from '../../../spec/component-test-helper';
8 8 import {TestComponentBuilder, ComponentFixture} from 'ng-forward/cjs/testing/test-component-builder';
9 9 import {Pipe, Input, provide, Component} from 'ng-forward';
  10 +import {PersonService} from "../../../lib/ng-noosfero-api/http/person.service";
10 11  
11 12 import * as helpers from "../../../spec/helpers";
12 13  
13 14 import {ProfileImageComponent} from "./image.component";
14 15  
15   -const tcb = new TestComponentBuilder();
  16 +const htmlTemplate: string = '<noosfero-profile-image [editable]="true" [edit-class]="editable-class" [profile]="ctrl.profile"></noosfero-profile-image>';
16 17  
17 18 describe("Components", () => {
18 19  
19 20 describe("Profile Image Component", () => {
20 21  
  22 + let helper: ComponentTestHelper<ProfileImageComponent>;
  23 +
21 24 beforeEach(angular.mock.module("templates"));
22 25  
  26 + beforeEach((done) => {
  27 + let scope = helpers.mocks.scopeWithEvents;
  28 + let personService = jasmine.createSpyObj("personService", ["upload"]);
  29 + let properties = { profile: { custom_footer: "footer" } };
  30 + let cls = createClass({
  31 + template: htmlTemplate,
  32 + directives: [ProfileImageComponent],
  33 + properties: properties,
  34 + providers: [
  35 + helpers.createProviderToValue("PersonService", personService),
  36 + helpers.createProviderToValue("$uibModal", helpers.mocks.$modal),
  37 + helpers.createProviderToValue("$scope", scope)
  38 + ]
  39 + });
  40 + helper = new ComponentTestHelper<ProfileImageComponent>(cls, done);
  41 + });
  42 +
  43 + it("set modal instance when select files modal", () => {
  44 + helper.component['$uibModal'].open = jasmine.createSpy("open");
  45 + helper.component.fileSelected("file", []);
  46 + expect(helper.component['$uibModal'].open).toHaveBeenCalled();
  47 + });
  48 +
  49 + /*
23 50 it("show community users image if profile is not Person", done => {
24 51 helpers.tcb.createAsync(ProfileImageComponent).then(fixture => {
25 52 let profileImageComponent: ProfileImageComponent = fixture.componentInstance;
... ... @@ -45,7 +72,7 @@ describe(&quot;Components&quot;, () =&gt; {
45 72 expect(profileImageComponent.defaultIcon).toEqual("fa-user", "The default icon should be person user");
46 73 done();
47 74 });
48   - });
  75 + });*/
49 76  
50 77 });
51 78 });
52 79 \ No newline at end of file
... ...
src/app/profile/image/image.component.ts
1   -import {Inject, Input, Component} from "ng-forward";
2   -
  1 +import {Inject, Input, Component, provide} from "ng-forward";
  2 +import {PersonService} from "../../../lib/ng-noosfero-api/http/person.service";
  3 +import {ProfileImageEditorComponent} from "./profile-image-editor.component";
3 4  
4 5 /**
5 6 * @ngdoc controller
... ... @@ -10,7 +11,9 @@ import {Inject, Input, Component} from &quot;ng-forward&quot;;
10 11 @Component({
11 12 selector: "noosfero-profile-image",
12 13 templateUrl: 'app/profile/image/image.html',
  14 + providers: [ provide('personService', { useClass: PersonService }) ]
13 15 })
  16 +@Inject(PersonService, "$uibModal", "$scope")
14 17 export class ProfileImageComponent {
15 18  
16 19 /**
... ... @@ -30,6 +33,48 @@ export class ProfileImageComponent {
30 33 */
31 34 defaultIcon: string;
32 35  
  36 + @Input() editable: boolean;
  37 +
  38 + @Input() editClass: string;
  39 +
  40 + picFile: any;
  41 + croppedDataUrl: any;
  42 + modalInstance: any;
  43 +
  44 + constructor(private personService: PersonService, private $uibModal: any, private $scope: ng.IScope) {
  45 + }
  46 +
  47 + fileSelected(file: any, errFiles: any) {
  48 + console.log("File selected: ", file);
  49 + if (file) {
  50 + this.picFile = file;
  51 + this.modalInstance = this.$uibModal.open({
  52 + templateUrl: 'app/profile/image/profile-image-editor.html',
  53 + controller: ProfileImageEditorComponent,
  54 + controllerAs: 'ctrl',
  55 + scope: this.$scope,
  56 + bindToController: true,
  57 + backdrop: 'static',
  58 + resolve: {
  59 + picFile: this.picFile,
  60 + profile: this.profile,
  61 + personService: this.personService
  62 + }
  63 + });
  64 + }
  65 + }
  66 +
  67 + private _showCamera: boolean = false;
  68 +
  69 + showChange(show: boolean) {
  70 + this._showCamera = show;
  71 + }
  72 +
  73 + showCamera() {
  74 + return this._showCamera;
  75 + }
  76 +
  77 +
33 78 /**
34 79 * @ngdoc method
35 80 * @name ngOnInit
... ... @@ -43,5 +88,6 @@ export class ProfileImageComponent {
43 88 this.defaultIcon = 'fa-user';
44 89 }
45 90 }
  91 +
46 92 }
47 93  
... ...
src/app/profile/image/image.html
1   -<span class="profile-image-wrap" title="{{ctrl.profile.name}}">
2   - <img ng-if="ctrl.profile.image" ng-src="{{ctrl.profile.image.url}}" class="img-responsive profile-image">
3   - <i ng-if="!ctrl.profile.image" class="fa {{ctrl.defaultIcon}} fa-5x profile-image"></i>
4   -</span>
  1 +<div id="profile-image-container" style="">
  2 + <div class="profile-image-wrap" title="{{ctrl.profile.name}}" ng-mouseenter="ctrl.showChange(true)" ng-mouseleave="ctrl.showChange(false)">
  3 + <img ng-if="ctrl.profile.image" ng-src="{{ctrl.profile.image.url}}" class="img-responsive profile-image">
  4 + <i ng-if="!ctrl.profile.image" class="fa {{ctrl.defaultIcon}} fa-5x profile-image"></i>
  5 + <div ng-if="ctrl.editable" class="upload-camera-container">
  6 + <i id="camera" class="fa fa-camera upload-camera" aria-hidden="true"></i>
  7 + </div>
  8 + <div ng-if="ctrl.editable" id="select-photo-container" name="select-photo-container" class="select-photo-container container" ng-class="ctrl.editClass">
  9 + <a id="upload-container" class="upload-container" href="#" rel="dialog" role="button">
  10 + <!-- The upload button hidden behind the camera -->
  11 + <div class="upload-button" ngf-select="ctrl.fileSelected($file)"
  12 + ngf-pattern="'image/*'" ngf-accept="'image/*'"
  13 + ngf-max-size="20MB" ngf-resize="{width: 100, height: 100}"
  14 + data-toggle="modal" data-target=".crop-dialog">
  15 + {{"profile.image.upload" | translate}}
  16 + </div>
  17 + </a>
  18 + </div>
  19 +
  20 + </div>
  21 +</div>
... ...
src/app/profile/image/image.scss
... ... @@ -5,3 +5,94 @@ i.profile-image {
5 5 background-clip: padding-box;
6 6 margin-bottom: 15px;
7 7 }
  8 +
  9 +.profile-image-wrap {
  10 + display: inline;
  11 +}
  12 +
  13 +#profile-image-container {
  14 + display: inline;
  15 +}
  16 +
  17 +#profile-image-container:hover {
  18 + .select-photo-container {
  19 + z-index: 1;
  20 + }
  21 + .upload-camera-container {
  22 + transform: scale(.75);
  23 + }
  24 +}
  25 +
  26 +.upload-camera-container {
  27 + text-align: left;
  28 + position: absolute;
  29 + z-index: 5;
  30 +}
  31 +
  32 +.upload-camera {
  33 + color: white;
  34 + position: absolute;
  35 + transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  36 + opacity: 1;
  37 +}
  38 +
  39 +.select-photo-container {
  40 + //overflow: hidden;
  41 + position: absolute;
  42 + z-index: -1;
  43 + background: #000;
  44 + background: rgba(0, 0, 0, .6);
  45 + background: linear-gradient(transparent, rgba(0, 0, 0, .6) 70%, rgba(0, 0, 0, .6) 100%);
  46 + transition: top .13s ease-out;
  47 +}
  48 +
  49 +#upload-container {
  50 + position: relative;
  51 + text-decoration: none;
  52 +}
  53 +
  54 +.upload-container a:hover {
  55 + text-decoration: none;
  56 +}
  57 +
  58 +.upload-button {
  59 + -webkit-font-smoothing: antialiased;
  60 + color: #fff;
  61 + //word-wrap: break-word;
  62 +}
  63 +
  64 +.upload-container {
  65 + color:#fff;
  66 + display: block;
  67 + overflow: hidden;
  68 + position: relative;
  69 + text-align: left;
  70 + min-width: 89px;
  71 +}
  72 +
  73 +.cropArea {
  74 + background: #E4E4E4;
  75 + overflow: hidden;
  76 + width:300px;
  77 + height:150px;
  78 +}
  79 +
  80 +.crop-area {
  81 + display: none;
  82 +}
  83 +
  84 +form .progress {
  85 + line-height: 15px;
  86 +}
  87 +
  88 +.progress {
  89 + display: inline-block;
  90 + width: 100px;
  91 + border: 3px groove #CCC;
  92 +}
  93 +.progress div {
  94 + font-size: smaller;
  95 + background: orange;
  96 + width: 0;
  97 +}
  98 +
... ...
src/app/profile/image/profile-image-editor.component.spec.ts 0 → 100644
... ... @@ -0,0 +1,62 @@
  1 +import {Pipe, Input, provide, Component} from 'ng-forward';
  2 +import {ComponentTestHelper, createClass} from '../../../spec/component-test-helper';
  3 +import * as helpers from "../../../spec/helpers";
  4 +
  5 +import {ProfileImageEditorComponent} from "./profile-image-editor.component";
  6 +
  7 +describe("Components", () => {
  8 +
  9 + describe("Profile Image Editor Component", () => {
  10 +
  11 + beforeEach(angular.mock.module("templates"));
  12 +
  13 + let expectedData = "iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAgAElEQ…Cm2OLHvfdNPte3zrH709Q0esN1LPQ0t7DL696ERpu+9/8BVPLIpElf7VYAAAAASUVORK5CYII=";
  14 +
  15 + let profile = <noosfero.Profile>{ name: "profile_name", id: 1, identifier: "test" };
  16 + let modal = helpers.mocks.$modal;
  17 + let modalInstance = jasmine.createSpyObj("$uibModalInstance", ["close"]);
  18 + let picFile = { type: "png" };
  19 + let $q: ng.IQService;
  20 + let personServiceMock: any;
  21 + let $rootScope: ng.IRootScopeService;
  22 +
  23 + beforeEach(inject((_$q_: ng.IQService, _$rootScope_: ng.IRootScopeService) => {
  24 + $q = _$q_;
  25 + $rootScope = _$rootScope_;
  26 + }));
  27 +
  28 + let comp = new ProfileImageEditorComponent(picFile, this.profile, personServiceMock, modalInstance);
  29 +
  30 + it("get data", done => {
  31 + let testDataUrl = "data:image/png;base64," + expectedData;
  32 + let result = comp.getData(testDataUrl);
  33 + expect(result).toBe(expectedData);
  34 + done();
  35 + });
  36 +
  37 + it("get image name", done => {
  38 + let imageName = "image1";
  39 + let expectedName = "profile_name_" + imageName;
  40 + comp['profile'] = profile;
  41 + let result = comp.getImageName(imageName);
  42 + expect(result).toBe(expectedName);
  43 + done();
  44 + });
  45 +
  46 + it("upload image", done => {
  47 + let testDataUrl = "data:image/png;base64," + expectedData;
  48 + let imageName = "image1";
  49 + personServiceMock = jasmine.createSpyObj("personServiceMock", ["uploadImage"]);
  50 + console.log("PersonServiceMock:", personServiceMock);
  51 + let deferredUploadImage = $q.defer();
  52 + personServiceMock.uploadImage = jasmine.createSpy('uploadImage').and.returnValue(deferredUploadImage.promise);
  53 + comp.personService = personServiceMock;
  54 + comp.uploadImage(testDataUrl, imageName);
  55 + deferredUploadImage.resolve();
  56 + $rootScope.$apply();
  57 + expect(comp.$uibModalInstance.close).toHaveBeenCalled();
  58 + done();
  59 + });
  60 +
  61 + });
  62 +});
... ...
src/app/profile/image/profile-image-editor.component.ts 0 → 100644
... ... @@ -0,0 +1,43 @@
  1 +import {StateConfig, Component, Input, Output, Inject, provide} from 'ng-forward';
  2 +import {TranslateProfile} from "../../shared/pipes/translate-profile.filter";
  3 +import {PersonService} from "../../../lib/ng-noosfero-api/http/person.service";
  4 +
  5 +export class ProfileImageEditorComponent {
  6 +
  7 + activities: any;
  8 + croppedDataUrl: string;
  9 + static $inject = ["picFile", "profile", "personService", "$uibModalInstance"];
  10 +
  11 + constructor(public picFile: any, public profile: noosfero.Profile, public personService: PersonService,
  12 + public $uibModalInstance: any) {
  13 + }
  14 +
  15 + uploadImage(dataUrl: any, name: any) {
  16 + let base64_image_json = this.getBase64ImageJson(dataUrl, name);
  17 + this.personService.uploadImage(this.profile, base64_image_json).then( (result: any) => {
  18 + this.$uibModalInstance.close(name);
  19 + });
  20 + }
  21 +
  22 + getBase64ImageJson(dataUrl: any, name: any) {
  23 + let data = this.getData(dataUrl);
  24 + let image_name = this.getImageName(name);
  25 + return {
  26 + tempfile: data,
  27 + filename: image_name,
  28 + type: this.picFile.type
  29 + };
  30 + }
  31 +
  32 + getImageName(name: any) {
  33 + return this.profile.name + "_" + name;
  34 + }
  35 +
  36 + getData(dataUrl: any) {
  37 + return dataUrl.substring(dataUrl.indexOf('base64,') + 7);
  38 + }
  39 +
  40 + cancel() {
  41 + this.$uibModalInstance.close();
  42 + }
  43 +}
... ...
src/app/profile/image/profile-image-editor.html 0 → 100644
... ... @@ -0,0 +1,24 @@
  1 +<div class="modal-header">
  2 + <h3>{{"profile.image.edit" | translate}}</h3>
  3 +</div>
  4 +<div class="modal-body">
  5 + <form class="">
  6 + <div ngf-drop ng-model="ctrl.picFile" ngf-pattern="image/*" class="cropArea">
  7 + <img-crop image="ctrl.picFile | ngfDataUrl" area-type="square"
  8 + result-image="ctrl.croppedDataUrl" ng-init="ctrl.croppedDataUrl=''">
  9 + </img-crop>
  10 + </div>
  11 + <div>
  12 + <img ng-src="{{ctrl.croppedDataUrl}}" />
  13 + </div>
  14 + <span class="progress" ng-show="progress >= 0">
  15 + <div style="width: {{progress" ng-bind="progress + '%'"></div>
  16 + </span> <span ng-show="ctrl.result">Upload Successful</span> <span class="err"
  17 + ng-show="ctrl.errorMsg">{{errorMsg}}</span>
  18 + </form>
  19 +
  20 + <div class="actions">
  21 + <button type="submit" class="btn btn-default" ng-click="ctrl.uploadImage(ctrl.croppedDataUrl, ctrl.picFile.name)">Upload</button>
  22 + <button type="submit" class="btn btn-danger" ng-click="ctrl.cancel()">Cancel</button>
  23 + </div>
  24 +</div>
... ...
src/app/profile/info/profile-info.html
... ... @@ -6,10 +6,12 @@
6 6 <h2>{{vm.profile.name}}</h2>
7 7 </header>
8 8 <div id="profile-left" class="main-box-body clearfix">
9   - <noosfero-profile-image [profile]="vm.profile" class="img-responsive center-block"></noosfero-profile-image>
10   - <span class="label" ng-class="{'label-danger': vm.profile.type == 'Community', 'label-info': vm.profile.type == 'Person'}">{{vm.profile | translateProfile}}</span>
11   - <div class="profile-since">
12   - {{"profile.member_since" | translate}}: {{vm.profile.created_at | amDateFormat:'MMMM YYYY'}}
  9 + <noosfero-profile-image [profile]="vm.profile" [editable]="true" [edit-class]="'profile-info-editable'" class="img-responsive center-block profile-info"></noosfero-profile-image>
  10 + <div id="profile-info-extrainfo" class="profile-info-extrainfo">
  11 + <span class="label" ng-class="{'label-danger': vm.profile.type == 'Community', 'label-info': vm.profile.type == 'Person'}">{{vm.profile | translateProfile}}</span>
  12 + <div class="profile-since">
  13 + {{"profile.member_since" | translate}}: {{vm.profile.created_at | amDateFormat:'MMMM YYYY'}}
  14 + </div>
13 15 </div>
14 16 </div>
15 17 </div>
... ...
src/app/profile/info/profile-info.scss 0 → 100644
... ... @@ -0,0 +1,21 @@
  1 +.profile-info .upload-camera-container {
  2 + top: 55%;
  3 + left: 39px;
  4 +}
  5 +
  6 +.profile-info-editable {
  7 + top: 51%;
  8 + width: 103px;
  9 + height: 28px;
  10 +}
  11 +
  12 +.profile-info-editable .upload-button {
  13 + font-size: 0.8em;
  14 + padding-top: 9px;
  15 + padding-left: 6px;
  16 + font-weight: bold;
  17 +}
  18 +
  19 +.profile-info-extrainfo {
  20 + margin-top: 10px;
  21 +}
0 22 \ No newline at end of file
... ...
src/languages/en.json
... ... @@ -19,6 +19,7 @@
19 19 "profile.others_info": "Others",
20 20 "profile.community.title": "Community",
21 21 "profile.person.title": "Person",
  22 + "profile.image.upload": "Upload Photo",
22 23 "activities.title": "Activities",
23 24 "activities.create_article.description": "has published on",
24 25 "activities.add_member_in_community.description": "has joined the community",
... ...
src/languages/pt.json
... ... @@ -19,6 +19,7 @@
19 19 "profile.others_info": "Outras informações",
20 20 "profile.community.title": "Comunidade",
21 21 "profile.person.title": "Pessoa",
  22 + "profile.image.upload": "Enviar photo",
22 23 "activities.title": "Atividades",
23 24 "activities.create_article.description": "publicou em",
24 25 "activities.add_member_in_community.description": "entrou na comunidade",
... ...
src/lib/ng-noosfero-api/http/person.service.ts
... ... @@ -28,4 +28,19 @@ export class PersonService extends RestangularService&lt;noosfero.Person&gt; {
28 28 p.catch(this.getHandleErrorFunction<noosfero.RestResult<any>>(deferred));
29 29 return deferred.promise;
30 30 }
  31 +
  32 + uploadImage(profile: noosfero.Profile, base64_image_json: any) {
  33 + let headers = { 'Content-Type': 'application/json' };
  34 + let deferred = this.$q.defer<noosfero.RestResult<noosfero.Profile>>();
  35 + // TODO dynamically copy the selected attributes to update
  36 + let attributesToUpdate: any = {
  37 + person: { image_builder: base64_image_json }
  38 + };
  39 + let restRequest: ng.IPromise<noosfero.RestResult<any>> =
  40 + this.getElement(profile.id).customPOST(attributesToUpdate, null, null, headers);
  41 + restRequest.then(this.getHandleSuccessFunction(deferred))
  42 + .catch(this.getHandleErrorFunction(deferred));
  43 + return deferred.promise;
  44 + }
  45 +
31 46 }
... ...