Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

documents: add other files components #365

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
}
],
"outputHashing": "none",
"optimization": true,
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
Expand Down
75 changes: 27 additions & 48 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
"@angular/platform-browser-dynamic": "^17.3.10",
"@angular/router": "^17.3.10",
"@biesbjerg/ngx-translate-extract-marker": "^1.0.0",
"@ngx-formly/core": "6.3.2",
"@ngx-formly/primeng": "6.3.2",
"@ngx-formly/core": "^6.3.6",
"@ngx-formly/primeng": "^6.3.6",
"@ngx-translate/core": "^15.0.0",
"@rero/ng-core": "^17.2.1",
"@rero/ng-core": "^17.2.2",
"@types/marked": "^4.0.0",
"@vpoppy/ngx-translate-extract": "^9.0.0",
"bootstrap": "^4.6.2",
Expand Down
14 changes: 12 additions & 2 deletions projects/sonar/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,13 @@ import { TooltipModule } from 'ngx-bootstrap/tooltip';
import { NgxDropzoneModule } from 'ngx-dropzone';
import { ToastrModule } from 'ngx-toastr';
import { DividerModule } from 'primeng/divider';
import { CarouselModule } from 'primeng/carousel';
import { DropdownModule } from 'primeng/dropdown';
import { FileUploadModule } from 'primeng/fileupload';
import { InputTextModule } from 'primeng/inputtext';
import { OrderListModule } from 'primeng/orderlist';
import { PanelModule } from 'primeng/panel';
import { PaginatorModule } from 'primeng/paginator';
import { AdminComponent } from './_layout/admin/admin.component';
import { AppConfigService } from './app-config.service';
import { AppInitializerService } from './app-initializer.service';
Expand Down Expand Up @@ -78,6 +80,9 @@ import { DetailComponent as UserDetailComponent } from './record/user/detail/det
import { UserComponent } from './record/user/user.component';
import { ValidationComponent } from './record/validation/validation.component';
import { UserService } from './user.service';
import { OtherFilesComponent } from './record/files/other-files/other-files.component';
import { FaIconClassPipe } from './pipe/fa-icon-class.pipe';
import { StatsFilesComponent } from './record/files/stats-files/stats-files.component';

export function appInitializerFactory(appInitializerService: AppInitializerService): () => Promise<any> {
return () => appInitializerService.initialize().toPromise();
Expand Down Expand Up @@ -124,7 +129,10 @@ export function minElementError(err: any, field: FormlyFieldConfig) {
ContributionsComponent,
ContributionComponent,
UploadFilesComponent,
FileItemComponent
FileItemComponent,
OtherFilesComponent,
FaIconClassPipe,
StatsFilesComponent
],
imports: [
BrowserModule,
Expand Down Expand Up @@ -154,7 +162,9 @@ export function minElementError(err: any, field: FormlyFieldConfig) {
OrderListModule,
DropdownModule,
PanelModule,
DividerModule
DividerModule,
CarouselModule,
PaginatorModule
],
providers: [
{
Expand Down
25 changes: 25 additions & 0 deletions projects/sonar/src/app/pipe/fa-icon-class.pipe.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*
* SONAR User Interface
* Copyright (C) 2019-2024 RERO
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

import { FaIconClassPipe } from './fa-icon-class.pipe';
jma marked this conversation as resolved.
Show resolved Hide resolved

describe('FaIconClassPipe', () => {
it('create an instance', () => {
const pipe = new FaIconClassPipe();
expect(pipe).toBeTruthy();
});
});
70 changes: 70 additions & 0 deletions projects/sonar/src/app/pipe/fa-icon-class.pipe.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
* SONAR User Interface
* Copyright (C) 2019-2024 RERO
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'faIconClass',
})
export class FaIconClassPipe implements PipeTransform {

/**
* Get the font awesome class name for a given mime type.
*
* @param mimetype mime type of a file
* @returns the font awesome class
*/
faClassForMimeType(mimetype: string): string {
if (mimetype == null) {
return 'fa-file-o';
}
switch (true) {
case mimetype.startsWith('image/'):
return 'fa-file-image-o';
case mimetype.startsWith('audio/'):
return 'fa-file-audio-o';
case mimetype.startsWith('text/'):
return 'fa-file-text-o';
case mimetype.startsWith('video/'):
return 'fa-file-video-o';
case mimetype.startsWith('application/vnd.openxmlformats-officedocument.presentationml'):
return 'fa-file-powerpoint-o';
case mimetype.startsWith('application/vnd.openxmlformats-officedocument.wordprocessingml'):
return 'fa-file-word-o';
case mimetype.startsWith('application/vnd.openxmlformats-officedocument.spreadsheetml'):
return 'fa-file-excel-o';
case mimetype.startsWith('application/pdf'):
return 'fa-file-pdf-o';
}
return 'fa-file-o';
}

/**
* Get the font awesome class given a type and a value.
*
* @param value the value corresponding to the icon
* @param type type of the icon i.e. file
* @returns the font awesome classes.
*/
transform(value: string, type: string): string | null {
switch(type) {
case 'file':
return this.faClassForMimeType(value);
}
return null;
}
}
Loading
Loading