feat: display availability and item data for library items

This commit is contained in:
Jovan Krunić
2022-09-08 13:02:19 +00:00
committed by Thea Schöbl
parent 605aa1b782
commit d571b1dbe5
25 changed files with 695 additions and 145 deletions

View File

@@ -0,0 +1,34 @@
/*
* Copyright (C) 2022 StApps
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation, version 3.
*
* 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 General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <https://www.gnu.org/licenses/>.
*/
import {Component, Input} from '@angular/core';
import {Browser} from '../../../util/browser.factory';
@Component({
selector: 'stapps-external-link',
templateUrl: './external-link.html',
styleUrls: ['./external-link.scss'],
})
export class ExternalLinkComponent {
@Input() link: string;
@Input() text: string;
constructor(private browser: Browser) {}
onLinkClick(url: string) {
this.browser.open(url);
}
}