The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/comments/CommentView.tsx

71 lines
1.9 KiB

import { css } from '@emotion/css';
import React, { FormEvent, useLayoutEffect, useRef, useState } from 'react';
import { GrafanaTheme2 } from '@grafana/data';
import { CustomScrollbar, TextArea, useStyles2 } from '@grafana/ui';
import { Comment } from './Comment';
import { Message } from './types';
type Props = {
comments: Message[];
packetCounter: number;
addComment: (comment: string) => Promise<boolean>;
};
export const CommentView = ({ comments, packetCounter, addComment }: Props) => {
const styles = useStyles2(getStyles);
const [comment, setComment] = useState('');
const [scrollTop, setScrollTop] = useState(0);
const commentViewContainer = useRef<HTMLDivElement>(null);
useLayoutEffect(() => {
if (commentViewContainer.current) {
setScrollTop(commentViewContainer.current.offsetHeight);
} else {
setScrollTop(0);
}
}, [packetCounter]);
const onUpdateComment = (event: FormEvent<HTMLTextAreaElement>) => {
const element = event.currentTarget;
setComment(element.value);
};
const onKeyPress = async (event: React.KeyboardEvent<HTMLTextAreaElement>) => {
if (event?.key === 'Enter' && !event?.shiftKey) {
event.preventDefault();
if (comment.length > 0) {
const result = await addComment(comment);
if (result) {
setComment('');
}
}
}
};
return (
<CustomScrollbar scrollTop={scrollTop}>
<div ref={commentViewContainer} className={styles.commentViewContainer}>
{comments.map((msg) => (
<Comment key={msg.id} message={msg} />
))}
<TextArea
placeholder="Write a comment"
value={comment}
onChange={onUpdateComment}
onKeyPress={onKeyPress}
autoFocus={true}
/>
</div>
</CustomScrollbar>
);
};
const getStyles = (theme: GrafanaTheme2) => ({
commentViewContainer: css`
margin: 5px;
`,
});