Skip to content

Commit

Permalink
lagt til sentiments eksterne etiketter
Browse files Browse the repository at this point in the history
  • Loading branch information
johatr committed Oct 6, 2023
1 parent fce260c commit af4ae19
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/datatypes/eksternAktivitetTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ interface RequiredLenkeProps {

type LenkeType = 'EKSTERN' | 'INTERN' | 'FELLES';

type Lenke = RequiredLenkeProps
type Lenke = RequiredLenkeProps;

type SentimentType = 'POSITIVE' | 'NEUTRAL' | 'NEGATIVE';

export interface Oppgave extends Lenke {
knapptekst: string;
Expand All @@ -22,6 +24,8 @@ export interface OppgaveLenke {
}

export interface Etikett {
tekst: string | null;
sentiment: SentimentType | null;
kode: string;
}

Expand Down
11 changes: 9 additions & 2 deletions src/moduler/aktivitet/etikett/EksterneEtikett.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,19 @@ interface Props {
const EksterneEtiketter = ({ aktivitet }: Props) => {
const { etiketter, type } = aktivitet.eksternAktivitet;

if (!etiketter) return null;
if (!etiketter || etiketter.length == 0) return null;

return (
<>
{etiketter
.map((etikett) => getEtikettByKode(type, etikett.kode))
.map((etikett) => {
if (etikett.tekst && etikett.sentiment) {
const variant = etikett.sentiment === 'POSITIVE' ? ('success' as const) : ('neutral' as const);
return { variant, tekst: etikett.tekst };
} else {
return getEtikettByKode(type, etikett.kode);
}
})
.map((eksternEtikett, i) => {
return eksternEtikett ? (
<Tag variant={eksternEtikett.variant} size="small" key={i}>
Expand Down

0 comments on commit af4ae19

Please sign in to comment.