mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
import Link from "next/link";
|
|
import React from "react";
|
|
import { Draggable } from "react-beautiful-dnd";
|
|
import { EyeOpenIcon, Pencil2Icon } from '@radix-ui/react-icons'
|
|
import styled from "styled-components";
|
|
import { getUriWithOrg } from "@services/config";
|
|
|
|
function Lecture(props: any) {
|
|
|
|
return (
|
|
<Draggable key={props.lecture.id} draggableId={props.lecture.id} index={props.index}>
|
|
{(provided) => (
|
|
<LectureWrapper key={props.lecture.id} {...provided.draggableProps} {...provided.dragHandleProps} ref={provided.innerRef}>
|
|
<p>{props.lecture.name} </p>
|
|
<Link
|
|
href={getUriWithOrg(props.orgslug,"")+`/course/${props.courseid}/lecture/${props.lecture.id.replace("lecture_", "")}`}
|
|
|
|
rel="noopener noreferrer">
|
|
<EyeOpenIcon/>
|
|
</Link>
|
|
<Link
|
|
href={getUriWithOrg(props.orgslug,"") +`/course/${props.courseid}/lecture/${props.lecture.id.replace("lecture_", "")}/edit`}
|
|
rel="noopener noreferrer">
|
|
<Pencil2Icon/>
|
|
</Link>
|
|
</LectureWrapper>
|
|
)}
|
|
</Draggable>
|
|
);
|
|
}
|
|
|
|
export const LectureWrapper = styled.div`
|
|
padding: 2px;
|
|
padding-left: 17px;
|
|
list-style: none;
|
|
/* padding-left: 2px; */
|
|
background-color: #f4f4f4c5;
|
|
border-radius: 7px;
|
|
margin: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
&:hover {
|
|
background-color: #8c949c7b;
|
|
}
|
|
|
|
`;
|
|
export default Lecture;
|