mirror of
https://gitlab.com/openlp/web-remote.git
synced 2024-12-22 11:32:47 +00:00
Merge branch 'chord-stage-view-adjustments' into 'master'
Remaking the chordpro routines and the chord + stage viewer See merge request openlp/web-remote!46
This commit is contained in:
commit
cde10571a7
19
src/app/components/_overlay-common.scss
Normal file
19
src/app/components/_overlay-common.scss
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
$mobile-breakpoint: 1024px;
|
||||||
|
|
||||||
|
@mixin slide-font-size($scale: 1, $desktop-scale: $scale) {
|
||||||
|
font-size: calc(#{4vw * $scale} + #{1.5vh * $scale});
|
||||||
|
|
||||||
|
@media (orientation: landscape) {
|
||||||
|
font-size: #{6vmin * $scale};
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (orientation: landscape) and (max-aspect-ratio: 16/9) {
|
||||||
|
font-size: #{3vw * $scale};
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: $mobile-breakpoint) {
|
||||||
|
font-size: calc(#{3.1vw * $desktop-scale} + #{1.5vh * $desktop-scale});
|
||||||
|
//font-size: #{4vw * $scale};
|
||||||
|
//font-size: #{5.6vmin * $scale};
|
||||||
|
}
|
||||||
|
}
|
@ -1,26 +1,33 @@
|
|||||||
<div class="overlay">
|
<div class="overlay">
|
||||||
<div>
|
<div class="overlay-content">
|
||||||
<div class="tags">
|
<div class="tags">
|
||||||
<span *ngFor="let tag of tags" [class.active]="tag.active">{{ tag.text }}</span>
|
<span *ngFor="let tag of tags" [class.active]="tag.active">{{ tag.text }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="slide currentSlide song mat-display-3" [innerHTML]="chordproFormatted(currentSlides[activeSlide])|chordpro"></div>
|
<div class="slide currentSlide song mat-display-3" [innerHTML]="chordproFormatted(currentSlides[activeSlide])|chordpro"></div>
|
||||||
<div class="nextSlides">
|
<div class="nextSlides">
|
||||||
<div class="slide song" [class.first]="slide.first_slide_of_tag" *ngFor="let slide of nextSlides" [innerHTML]="chordproFormatted(slide)|chordpro"></div>
|
<div
|
||||||
|
class="slide song"
|
||||||
|
[class.first]="slide.first_slide_of_tag"
|
||||||
|
*ngFor="let slide of nextSlides"
|
||||||
|
[innerHTML]="chordproFormatted(slide)|chordpro">
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="sidebar">
|
<div class="toolbar">
|
||||||
<div class="time">{{ (openlpService.getIsTwelveHourTime()) ? (time|date:'h:mm a') : (time|date:'HH:mm') }}</div>
|
<a class="back-button" mat-mini-fab color="" routerLink="/" [matTooltip]="'Go back to controller'">
|
||||||
|
<mat-icon>arrow_back</mat-icon>
|
||||||
|
</a>
|
||||||
<div class="transpose">
|
<div class="transpose">
|
||||||
<button mat-icon-button (click)="transposeUp()">
|
|
||||||
<mat-icon>keyboard_arrow_up</mat-icon>
|
|
||||||
</button>
|
|
||||||
<span>{{ transposeLevel }}</span>
|
|
||||||
<button mat-icon-button (click)="transposeDown()">
|
<button mat-icon-button (click)="transposeDown()">
|
||||||
<mat-icon>keyboard_arrow_down</mat-icon>
|
<mat-icon>keyboard_arrow_down</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
|
<span>{{ transposeLevel }}</span>
|
||||||
|
<button mat-icon-button (click)="transposeUp()">
|
||||||
|
<mat-icon>keyboard_arrow_up</mat-icon>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<button mat-raised-button routerLink="/">Close</button>
|
<div class="time">{{ (openlpService.getIsTwelveHourTime()) ? (time|date:'h:mm a') : (time|date:'HH:mm') }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,12 +1,19 @@
|
|||||||
|
@import '../overlay-common';
|
||||||
|
|
||||||
.transpose {
|
.transpose {
|
||||||
margin-left: 25px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
justify-content: center;
|
||||||
font-size: 3rem;
|
align-items: center;
|
||||||
|
font-size: 2rem;
|
||||||
|
|
||||||
mat-icon {
|
mat-icon {
|
||||||
font-size: 3rem;
|
transform: scale(1.5);
|
||||||
}
|
}
|
||||||
span {
|
|
||||||
margin-left: 17px;
|
@media screen and (min-width: $mobile-breakpoint) {
|
||||||
|
font-size: 3rem;
|
||||||
|
mat-icon {
|
||||||
|
transform: scale(2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -52,6 +52,8 @@ export class ChordProPipe implements PipeTransform {
|
|||||||
notesSharpNotation = {};
|
notesSharpNotation = {};
|
||||||
notesFlatNotation = {};
|
notesFlatNotation = {};
|
||||||
|
|
||||||
|
private fillHtml = `<span class="fill"><span class="fill-inner"></span></span>`;
|
||||||
|
|
||||||
decodeHTML(value: string) {
|
decodeHTML(value: string) {
|
||||||
const tempElement = document.createElement('div');
|
const tempElement = document.createElement('div');
|
||||||
tempElement.innerHTML = value;
|
tempElement.innerHTML = value;
|
||||||
@ -146,40 +148,103 @@ export class ChordProPipe implements PipeTransform {
|
|||||||
// becuase it gets messed up when a chord is placed on it..
|
// becuase it gets messed up when a chord is placed on it..
|
||||||
// shouldn't be relevant if we actually get chordpro format
|
// shouldn't be relevant if we actually get chordpro format
|
||||||
song = this.decodeHTML(song);
|
song = this.decodeHTML(song);
|
||||||
const comp = this;
|
|
||||||
if (!song) {
|
if (!song) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
let chordText = '';
|
let chordText = '';
|
||||||
let lastChord = '';
|
if (!song.match(this.chordRegex)) {
|
||||||
if (!song.match(comp.chordRegex)) {
|
|
||||||
return `<div class="no-chords">${song}</div>`;
|
return `<div class="no-chords">${song}</div>`;
|
||||||
}
|
}
|
||||||
song.split(comp.chordRegex).forEach((part, index) => {
|
// Processing backwards so we can better identify where chords should overlap lyric letters
|
||||||
if (index % 2 === 0) {
|
// or insert a space in lyrics
|
||||||
// text
|
song.split(/\n/).reverse().forEach((row, index) => {
|
||||||
if (lastChord) {
|
|
||||||
chordText += `<span data-chord="${lastChord}">${part.substring(0, 1)}</span>${part.substring(1)}`;
|
chordText = `</div>${index > 0 ? '<br>' : ''}` + chordText;
|
||||||
lastChord = '';
|
const rowParts = row.split(this.chordRegex);
|
||||||
} else {
|
let lastPart;
|
||||||
chordText += part;
|
|
||||||
|
for (let i = rowParts.length - 1, r = 0, isFirst = true; i >= -1; i--, r++ ) {
|
||||||
|
if (!isFirst) {
|
||||||
|
chordText = this._processChordRow(nHalfSteps, rowParts[i], i, lastPart, r) + chordText;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
|
lastPart = rowParts[i];
|
||||||
|
isFirst = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
chordText = '<div class="song-row">' + chordText;
|
||||||
|
});
|
||||||
|
return `<div class="with-chords">${chordText}</div>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected _processChordRow(nHalfSteps, part, index, lastPart, reverseIndex) {
|
||||||
|
if (index % 2 !== 0) {
|
||||||
|
if (index > 0) {
|
||||||
// chord
|
// chord
|
||||||
lastChord = part.replace(/[[]]/, '');
|
let chord = part.replace(/[[]]/, '');
|
||||||
if (nHalfSteps !== 0) {
|
if (nHalfSteps !== 0) {
|
||||||
lastChord = lastChord.split('/').map(chord => {
|
chord = chord.split('/').map(chordPart => {
|
||||||
const chordRoot = comp.chordRoot(chord);
|
const chordRoot = this.chordRoot(chordPart);
|
||||||
const newRoot = comp.transposeChord(chordRoot, nHalfSteps);
|
const newRoot = this.transposeChord(chordRoot, nHalfSteps);
|
||||||
return newRoot + comp.restOfChord(chord);
|
return newRoot + this.restOfChord(chordPart);
|
||||||
}).join('/');
|
}).join('/');
|
||||||
}
|
}
|
||||||
|
|
||||||
// use proper symbols
|
// use proper symbols
|
||||||
lastChord = lastChord.replace(/b/g, '♭');
|
chord = chord.replace(/b/g, '♭');
|
||||||
lastChord = lastChord.replace(/#/g, '♯');
|
chord = chord.replace(/#/g, '♯');
|
||||||
|
const textFirstLetter = `${lastPart.substring(0, 1)}`;
|
||||||
|
const textRest = lastPart.substring(1);
|
||||||
|
const isChordMusicKey = chord.startsWith('=');
|
||||||
|
const chordLength = chord.length;
|
||||||
|
const isFirstChordAfterRealWord = (lastPart.length && (reverseIndex === 1));
|
||||||
|
const shouldOverlapChord = (!isChordMusicKey) && (isFirstChordAfterRealWord || (lastPart.length > chord.length));
|
||||||
|
const isChordOnly = !lastPart.trim().length;
|
||||||
|
|
||||||
|
const chordClass = (shouldOverlapChord && 'overlap-chord' || '') + (isChordOnly && ' chord-only' || '');
|
||||||
|
|
||||||
|
const textLength = 1 + textRest.length;
|
||||||
|
const fillHtmlNeededLength = (!shouldOverlapChord && (textLength < chordLength)) ? chordLength - 1 : (chordLength - 1);
|
||||||
|
let fillHtml = !shouldOverlapChord && !isChordMusicKey ? this._makeFillHtml(fillHtmlNeededLength || 1) : '';
|
||||||
|
let fillHtmlLength = fillHtml?.length ?? 0;
|
||||||
|
const finalTextLength = 1 + textRest.length + fillHtmlLength;
|
||||||
|
const needExtraFill = (!shouldOverlapChord && (finalTextLength <= chordLength));
|
||||||
|
|
||||||
|
if (needExtraFill) {
|
||||||
|
fillHtml = this._makeFillHtml(fillHtmlLength + 1);
|
||||||
|
fillHtmlLength++;
|
||||||
|
chord += ' ';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!lastPart || (textFirstLetter === ' ')) {
|
||||||
|
fillHtml = ' '.repeat(fillHtmlLength);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((fillHtmlLength === 1 && chordLength < 2)) {
|
||||||
|
// To match text separator
|
||||||
|
chord += ' ';
|
||||||
|
}
|
||||||
|
|
||||||
|
return `<span data-chord="${chord}" class="${chordClass}"><span class="chord">${chord}</span><span class="text ${fillHtml ? 'with-fill' : ''}"><span class="first-letter">${textFirstLetter}</span>${fillHtml}</span></span>${textRest}`;
|
||||||
|
} else {
|
||||||
|
return `${lastPart}`;
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
return `<div class="with-chords">${chordText}</div>`;
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
protected _makeFillHtml(length) {
|
||||||
|
if (length >= 3) {
|
||||||
|
let text = '';
|
||||||
|
const middle = Math.floor(length / 2);
|
||||||
|
|
||||||
|
for (let i = 0; i < length; i++) {
|
||||||
|
text += (i === middle) ? '\u2014' : ' ';
|
||||||
|
}
|
||||||
|
|
||||||
|
return text;
|
||||||
|
} else {
|
||||||
|
return '\u00B7' + (length === 2 ? ' ' : '');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,23 +1,93 @@
|
|||||||
|
@import '../overlay-common';
|
||||||
|
|
||||||
.song {
|
.song {
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
|
|
||||||
.with-chords {
|
.with-chords {
|
||||||
line-height: 2;
|
line-height: 1;
|
||||||
|
font-family: monospace;
|
||||||
|
padding-top: 0.45em; // To avoid chord overlapping top bar
|
||||||
|
@include slide-font-size(0.85, 0.725);
|
||||||
|
|
||||||
|
> span {
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
span[data-chord]:before {
|
&-row {
|
||||||
position: relative;
|
|
||||||
top: -1em;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
content: attr(data-chord);
|
}
|
||||||
width: 0;
|
|
||||||
color: yellow;
|
span[data-chord]{
|
||||||
|
display: inline;
|
||||||
|
position: relative;
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
|
.text, .chord {
|
||||||
|
line-height: 1em;
|
||||||
|
height: 1em;
|
||||||
|
line-height: 2.4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.first-letter {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chord {
|
||||||
|
color: yellow;
|
||||||
|
display: inline-block;
|
||||||
|
transform: translateY(-100%);
|
||||||
|
white-space: pre;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Chords that invades next text
|
||||||
|
&.overlap-chord {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.chord {
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.overlap-chord) {
|
||||||
|
display: inline-flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
.text {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Chords without text
|
||||||
|
&.chord-only {
|
||||||
|
display: inline-flex;
|
||||||
|
flex-direction: column;
|
||||||
|
margin-right: 0.3em;
|
||||||
|
|
||||||
|
.chord {
|
||||||
|
position: static;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.nextSlides {
|
.nextSlides {
|
||||||
.song {
|
.song {
|
||||||
span[data-chord]:before {
|
span[data-chord] {
|
||||||
color: gray;
|
.chord {
|
||||||
|
color: gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fill .fill-inner {
|
||||||
|
background-color: gray;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.slide .with-chords {
|
||||||
|
@include slide-font-size(0.75, 0.65);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,3 +1,5 @@
|
|||||||
|
@import "./overlay-common";
|
||||||
|
|
||||||
.overlay {
|
.overlay {
|
||||||
background: black;
|
background: black;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -9,71 +11,158 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
color: white;
|
color: white;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
|
||||||
|
&-content {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
|
@media (orientation: portrait) {
|
||||||
|
overflow: hidden;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags {
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: flex-start;
|
||||||
|
color: green;
|
||||||
|
align-items: center;
|
||||||
|
@include slide-font-size(1);
|
||||||
|
|
||||||
|
@media screen and (min-width: $mobile-breakpoint) {
|
||||||
|
margin-top: 1rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
font-size: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
margin-left: 1rem;
|
||||||
|
&.active {
|
||||||
|
color: lightgreen;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar {
|
||||||
|
padding: 0.8rem;
|
||||||
|
max-width: 30%;
|
||||||
|
margin-top: 1em;
|
||||||
|
overflow-y: auto;
|
||||||
|
|
||||||
|
.notes {
|
||||||
|
@include slide-font-size(0.9);
|
||||||
|
line-height: 1;
|
||||||
|
|
||||||
|
color: salmon;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: $mobile-breakpoint) {
|
||||||
|
margin-top: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (orientation: portrait) {
|
||||||
|
max-width: none;
|
||||||
|
max-height: 20%;
|
||||||
|
margin-bottom: 3.75rem;
|
||||||
|
background-color: rgb(64, 64, 64);
|
||||||
|
|
||||||
|
.notes {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (orientation: portrait) {
|
||||||
|
flex-direction: column;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slide {
|
||||||
|
line-height: 1.2;
|
||||||
|
white-space: pre-line;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
&.first {
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include slide-font-size();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar {
|
.toolbar {
|
||||||
margin: 1rem;
|
padding: 0.8rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
justify-content: flex-start;
|
||||||
justify-content: space-between;
|
align-items: center;
|
||||||
width: 30%;
|
width: auto;
|
||||||
}
|
gap: 1.5rem;
|
||||||
|
|
||||||
.time {
|
.back-button {
|
||||||
font-size: 3rem;
|
background: #fff;
|
||||||
color: yellow;
|
}
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.notes {
|
@media screen and (max-width: ($mobile-breakpoint - 0.125px)){
|
||||||
margin-top: 1em;
|
position: absolute;
|
||||||
font-size: 3rem;
|
bottom: 0;
|
||||||
line-height: 3rem;
|
left: 0;
|
||||||
color: salmon;
|
right: 0;
|
||||||
text-align: right;
|
background: rgba(64, 64, 64, 0.5);
|
||||||
|
backdrop-filter: blur(2px);
|
||||||
|
padding: 0.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: $mobile-breakpoint) {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: ($mobile-breakpoint - 0.125px)) and (orientation: landscape) {
|
||||||
|
left: auto;
|
||||||
|
border-top-left-radius: 0.5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.close {
|
.close {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tags {
|
.time {
|
||||||
margin-top: 1rem;
|
color: yellow;
|
||||||
margin-bottom: 1rem;
|
text-align: right;
|
||||||
|
white-space: nowrap;
|
||||||
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
justify-content: flex-end;
|
||||||
justify-content: flex-start;
|
align-items: center;
|
||||||
color: green;
|
padding-right: 0.8rem;
|
||||||
font-size: 4rem;
|
font-size: 2rem;
|
||||||
span {
|
|
||||||
margin-left: 1rem;
|
|
||||||
&.active {
|
|
||||||
color: lightgreen;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.slide {
|
@media screen and (min-width: $mobile-breakpoint) {
|
||||||
font-size: 3rem;
|
font-size: 3rem;
|
||||||
white-space: pre-line;
|
|
||||||
margin: 0;
|
|
||||||
&.first {
|
|
||||||
margin-top: 1rem;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
margin-left: 1rem;
|
margin: 0 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nextSlides {
|
.nextSlides {
|
||||||
font-size: 2rem;
|
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
color: grey;
|
color: grey;
|
||||||
|
|
||||||
.slide {
|
.slide {
|
||||||
font-size: 2rem;
|
@include slide-font-size(0.75);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<div class="overlay">
|
<div class="overlay">
|
||||||
<div>
|
<div class="overlay-content">
|
||||||
<div class="tags">
|
<div class="tags">
|
||||||
<span *ngFor="let tag of tags" [class.active]="tag.active">{{ tag.text }}</span>
|
<span *ngFor="let tag of tags" [class.active]="tag.active">{{ tag.text }}</span>
|
||||||
</div>
|
</div>
|
||||||
@ -26,11 +26,23 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="sidebar">
|
<div class="toolbar">
|
||||||
<div class="top">
|
<a class="back-button" mat-mini-fab color="" routerLink="/" [matTooltip]="'Go back to controller'">
|
||||||
<div class="time">{{ (openlpService.getIsTwelveHourTime()) ? (time|date:'h:mm a') : (time|date:'HH:mm') }}</div>
|
<mat-icon>arrow_back</mat-icon>
|
||||||
<div class="notes" [innerHTML]="notes|nl2br"></div>
|
</a>
|
||||||
</div>
|
<button
|
||||||
<div class="close"><button mat-raised-button class="closeButton" routerLink="/">Close</button></div>
|
mat-mini-fab
|
||||||
|
class="show-notes"
|
||||||
|
[matTooltip]="'Show/hide notes'"
|
||||||
|
[color]="showNotes ? 'primary' : ''"
|
||||||
|
[class.show-notes-disabled]="!showNotes"
|
||||||
|
(click)="showNotes = !showNotes"
|
||||||
|
>
|
||||||
|
<mat-icon>sticky_note_2</mat-icon>
|
||||||
|
</button>
|
||||||
|
<div class="time">{{ (openlpService.getIsTwelveHourTime()) ? (time|date:'h:mm a') : (time|date:'HH:mm') }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="sidebar" *ngIf="showNotes && notes">
|
||||||
|
<div class="notes" [innerHTML]="notes|nl2br"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -18,3 +18,11 @@
|
|||||||
.next-slides-text {
|
.next-slides-text {
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.toolbar {
|
||||||
|
.show-notes {
|
||||||
|
&-disabled {
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -19,6 +19,7 @@ export class StageViewComponent implements OnInit {
|
|||||||
activeSlide = 0;
|
activeSlide = 0;
|
||||||
tags: Tag[] = [];
|
tags: Tag[] = [];
|
||||||
time = new Date();
|
time = new Date();
|
||||||
|
showNotes = true;
|
||||||
|
|
||||||
constructor(public openlpService: OpenLPService) {
|
constructor(public openlpService: OpenLPService) {
|
||||||
setInterval(() => this.time = new Date(), 1000);
|
setInterval(() => this.time = new Date(), 1000);
|
||||||
|
Loading…
Reference in New Issue
Block a user