"ng-router-loader": "^1.0.2",
"ng2-file-upload": "^1.1.4-2",
"ng2-smart-table": "1.0.3",
- "ng2-tag-input": "1.0.1",
+ "ng2-tag-input": "^1.0.5",
"ngc-webpack": "1.1.0",
"ngx-bootstrap": "1.6.6",
"node-sass": "^4.1.1",
};
export const VIDEO_TAGS = {
- VALIDATORS: [ Validators.maxLength(10) ],
+ VALIDATORS: [ Validators.minLength(2), Validators.maxLength(10) ],
MESSAGES: {
+ 'minlength': 'A tag should be more than 2 characters long.',
'maxlength': 'A tag should be less than 10 characters long.'
}
};
</div>
<div class="form-group">
- <label for="tags">Tags</label> <span class="little-information">(press enter to add the tag)</span>
- <input
- type="text" class="form-control" id="currentTag"
- formControlName="currentTag" (keyup)="onTagKeyPress($event)"
- >
- <div *ngIf="formErrors.currentTag" class="alert alert-danger">
- {{ formErrors.currentTag }}
- </div>
- </div>
-
- <div class="tags">
- <div class="label label-primary tag" *ngFor="let tag of tags">
- {{ tag }}
- <span class="remove" (click)="removeTag(tag)">x</span>
- </div>
- </div>
-
- <div *ngIf="tagsError" class="alert alert-danger">
- {{ tagsError }}
+ <label for="tags" class="label-tags">Tags</label> <span class="little-information">(press enter to add the tag)</span>
+ <tag-input
+ [ngModel]="tags" [validators]="tagValidators" [errorMessages]="tagValidatorsMessages"
+ formControlName="tags" maxItems="3" modelAsStrings="true"
+ ></tag-input>
</div>
<div class="form-group">
videoLicences = [];
videoLanguages = [];
+ tagValidators = VIDEO_TAGS.VALIDATORS;
+ tagValidatorsMessages = VIDEO_TAGS.MESSAGES;
+
error: string = null;
form: FormGroup;
formErrors = {
category: '',
licence: '',
language: '',
- description: '',
- currentTag: ''
+ description: ''
};
validationMessages = {
name: VIDEO_NAME.MESSAGES,
category: VIDEO_CATEGORY.MESSAGES,
licence: VIDEO_LICENCE.MESSAGES,
language: VIDEO_LANGUAGE.MESSAGES,
- description: VIDEO_DESCRIPTION.MESSAGES,
- currentTag: VIDEO_TAGS.MESSAGES
+ description: VIDEO_DESCRIPTION.MESSAGES
};
// Special error messages
- tagsError = '';
fileError = '';
constructor(
licence: [ '', VIDEO_LICENCE.VALIDATORS ],
language: [ '', VIDEO_LANGUAGE.VALIDATORS ],
description: [ '', VIDEO_DESCRIPTION.VALIDATORS ],
- currentTag: [ '', VIDEO_TAGS.VALIDATORS ]
+ tags: [ '']
});
this.form.valueChanges.subscribe(data => this.onValueChanged(data));
const licence = this.form.value['licence'];
const language = this.form.value['language'];
const description = this.form.value['description'];
+ const tags = this.form.value['tags'];
form.append('name', name);
form.append('category', category);
form.append('description', description);
- for (let i = 0; i < this.tags.length; i++) {
- form.append(`tags[${i}]`, this.tags[i]);
+ for (let i = 0; i < tags.length; i++) {
+ form.append(`tags[${i}]`, tags[i]);
}
};
this.fileError = 'You did not add a file.';
}
- return this.form.valid === true && this.tagsError === '' && this.fileError === '';
+ return this.form.valid === true && this.fileError === '';
}
fileChanged() {
this.fileError = '';
}
- onTagKeyPress(event: KeyboardEvent) {
- // Enter press
- if (event.keyCode === 13) {
- this.addTagIfPossible();
- }
- }
-
removeFile() {
this.uploader.clearQueue();
}
- removeTag(tag: string) {
- this.tags.splice(this.tags.indexOf(tag), 1);
- this.form.get('currentTag').enable();
- }
-
upload() {
- // Maybe the user forgot to press "enter" when he filled the field
- this.addTagIfPossible();
-
if (this.checkForm() === false) {
return;
}
this.uploader.uploadAll();
}
-
- private addTagIfPossible() {
- const currentTag = this.form.value['currentTag'];
- if (currentTag === undefined) return;
-
- // Check if the tag is valid and does not already exist
- if (
- currentTag.length >= 2 &&
- this.form.controls['currentTag'].valid &&
- this.tags.indexOf(currentTag) === -1
- ) {
- this.tags.push(currentTag);
- this.form.patchValue({ currentTag: '' });
-
- if (this.tags.length >= 3) {
- this.form.get('currentTag').disable();
- }
-
- this.tagsError = '';
- }
- }
}
font-size: 0.8em;
font-style: italic;
}
+
+.label-tags {
+ margin-bottom: 0;
+}
</div>
<div class="form-group">
- <label for="tags">Tags</label> <span class="little-information">(press enter to add the tag)</span>
- <input
- type="text" class="form-control" id="currentTag"
- formControlName="currentTag" (keyup)="onTagKeyPress($event)"
- >
- <div *ngIf="formErrors.currentTag" class="alert alert-danger">
- {{ formErrors.currentTag }}
- </div>
- </div>
-
- <div class="tags">
- <div class="label label-primary tag" *ngFor="let tag of tags">
- {{ tag }}
- <span class="remove" (click)="removeTag(tag)">x</span>
- </div>
- </div>
-
- <div *ngIf="tagsError" class="alert alert-danger">
- {{ tagsError }}
+ <label for="tags" class="label-tags">Tags</label> <span class="little-information">(press enter to add the tag)</span>
+ <tag-input
+ [ngModel]="tags" [validators]="tagValidators" [errorMessages]="tagValidatorsMessages"
+ formControlName="tags" maxItems="3" modelAsStrings="true"
+ ></tag-input>
</div>
<div class="form-group">
videoLanguages = [];
video: Video;
+ tagValidators = VIDEO_TAGS.VALIDATORS;
+ tagValidatorsMessages = VIDEO_TAGS.MESSAGES;
+
error: string = null;
form: FormGroup;
formErrors = {
category: '',
licence: '',
language: '',
- description: '',
- currentTag: ''
+ description: ''
};
validationMessages = {
name: VIDEO_NAME.MESSAGES,
category: VIDEO_CATEGORY.MESSAGES,
licence: VIDEO_LICENCE.MESSAGES,
language: VIDEO_LANGUAGE.MESSAGES,
- description: VIDEO_DESCRIPTION.MESSAGES,
- currentTag: VIDEO_TAGS.MESSAGES
+ description: VIDEO_DESCRIPTION.MESSAGES
};
- // Special error messages
- tagsError = '';
fileError = '';
constructor(
licence: [ '', VIDEO_LICENCE.VALIDATORS ],
language: [ '', VIDEO_LANGUAGE.VALIDATORS ],
description: [ '', VIDEO_DESCRIPTION.VALIDATORS ],
- currentTag: [ '', VIDEO_TAGS.VALIDATORS ]
+ tags: [ '' ]
});
this.form.valueChanges.subscribe(data => this.onValueChanged(data));
);
}
- checkForm() {
- this.forceCheck();
-
- return this.form.valid === true && this.tagsError === '' && this.fileError === '';
- }
-
-
- onTagKeyPress(event: KeyboardEvent) {
- // Enter press
- if (event.keyCode === 13) {
- this.addTagIfPossible();
- }
- }
-
- removeTag(tag: string) {
- this.tags.splice(this.tags.indexOf(tag), 1);
- this.form.get('currentTag').enable();
- }
-
update() {
- // Maybe the user forgot to press "enter" when he filled the field
- this.addTagIfPossible();
-
- if (this.checkForm() === false) {
- return;
- }
-
this.video.patch(this.form.value);
this.videoService.updateVideo(this.video)
}
- private addTagIfPossible() {
- const currentTag = this.form.value['currentTag'];
- if (currentTag === undefined) return;
-
- // Check if the tag is valid and does not already exist
- if (
- currentTag.length >= 2 &&
- this.form.controls['currentTag'].valid &&
- this.tags.indexOf(currentTag) === -1
- ) {
- this.tags.push(currentTag);
- this.form.patchValue({ currentTag: '' });
-
- if (this.tags.length >= 3) {
- this.form.get('currentTag').disable();
- }
-
- this.tagsError = '';
- }
- }
-
private hydrateFormFromVideo() {
this.form.patchValue(this.video.toJSON());
}
import { NgModule } from '@angular/core';
-// import { TagInputModule } from 'ng2-tag-input';
+import { TagInputModule } from 'ng2-tag-input';
import { VideosRoutingModule } from './videos-routing.module';
import { VideosComponent } from './videos.component';
@NgModule({
imports: [
- // TagInputModule,
+ TagInputModule,
VideosRoutingModule,
SharedModule