Skip to content
Snippets Groups Projects
Commit a9042a04 authored by rhenck's avatar rhenck
Browse files

Implement sub- and superscript for cloze texts

parent 7ebb1262
No related branches found
No related tags found
No related merge requests found
...@@ -145,6 +145,18 @@ import { ClozeUtils } from '../../util/cloze'; ...@@ -145,6 +145,18 @@ import { ClozeUtils } from '../../util/cloze';
{{subPart.text}} {{subPart.text}}
</span> </span>
</ng-container> </ng-container>
<ng-container *ngIf="$any(subPart).type === 'text' && (subPart.marks | markList).includes('superscript')">
<sup [ngStyle]="subPart.marks | styleMarks">
{{subPart.text}}
</sup>
</ng-container>
<ng-container *ngIf="$any(subPart).type === 'text' && (subPart.marks | markList).includes('subscript')">
<sub [ngStyle]="subPart.marks | styleMarks">
{{subPart.text}}
</sub>
</ng-container>
<ng-container *ngIf="$any(subPart).type === 'image'"> <ng-container *ngIf="$any(subPart).type === 'image'">
<img [src]="subPart.attrs.src" [alt]="subPart.attrs.alt" <img [src]="subPart.attrs.src" [alt]="subPart.attrs.alt"
[style.display]="'inline-block'" [style.display]="'inline-block'"
......
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'markList'
})
export class MarkListPipe implements PipeTransform {
transform(markList: Record<string, any>): any[] {
console.log('markList', markList);
return markList ? markList.map((element: any) => element.type) : [];
}
}
...@@ -52,6 +52,7 @@ import { MarkingBarComponent } from './components/marking-bar/marking-bar.compon ...@@ -52,6 +52,7 @@ import { MarkingBarComponent } from './components/marking-bar/marking-bar.compon
import { StyleMarksPipe } from './pipes/styleMarks.pipe'; import { StyleMarksPipe } from './pipes/styleMarks.pipe';
import { MarkingButtonComponent } from './components/marking-bar/marking-button.component'; import { MarkingButtonComponent } from './components/marking-bar/marking-button.component';
import { CompoundChildOverlayComponent } from './components/compound-child-overlay.component'; import { CompoundChildOverlayComponent } from './components/compound-child-overlay.component';
import { MarkListPipe } from './pipes/mark-list.pipe';
@NgModule({ @NgModule({
imports: [ imports: [
...@@ -104,7 +105,8 @@ import { CompoundChildOverlayComponent } from './components/compound-child-overl ...@@ -104,7 +105,8 @@ import { CompoundChildOverlayComponent } from './components/compound-child-overl
MarkingBarComponent, MarkingBarComponent,
StyleMarksPipe, StyleMarksPipe,
MarkingButtonComponent, MarkingButtonComponent,
CompoundChildOverlayComponent CompoundChildOverlayComponent,
MarkListPipe
], ],
exports: [ exports: [
CommonModule, CommonModule,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment