mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/frontend.git
synced 2024-11-22 09:36:40 +03:00
75 lines
2.2 KiB
TypeScript
75 lines
2.2 KiB
TypeScript
import type { NextPage } from 'next'
|
||
import Head from 'next/head'
|
||
import { ErrorViewer } from '../../Components/ErrorViewer'
|
||
import { FileUploader } from '../../Components/FileUploader'
|
||
import { Header } from '../../Components/header'
|
||
import styles from '../../styles/Home.module.css'
|
||
import 'antd/dist/antd.css';
|
||
import { ItemSelect, SelectItemIE } from '../../Components/ItemSelect'
|
||
import { useState } from 'react'
|
||
import { host } from '../api/consts'
|
||
import { PulseLoader } from 'react-spinners'
|
||
import axios from 'axios'
|
||
import { useRouter } from 'next/router'
|
||
|
||
|
||
|
||
const View: NextPage = () => {
|
||
let router = useRouter()
|
||
let uuid = router.query.id as string
|
||
|
||
const [data,setData] = useState("")
|
||
let i = 1;
|
||
let cards = new Array<JSX.Element>()
|
||
|
||
const getData = () =>{
|
||
if (data == ""){
|
||
axios.get(host+"/api/site/docx/" + uuid).then(res => {
|
||
setData(res.data)
|
||
})
|
||
}
|
||
}
|
||
setTimeout(getData, 2000);
|
||
if (data != ""){
|
||
for(var name in data as any) {
|
||
cards.push(
|
||
<ErrorViewer
|
||
num={i}
|
||
paragraph={(data as any)[name][0]==undefined? [["Выявлено отсутсвие данного модуля"]]:(data as any)[name]}
|
||
errText={name}
|
||
correct={(data as any)[name][0]==undefined? false:true}
|
||
></ErrorViewer>
|
||
)
|
||
i++
|
||
}
|
||
}
|
||
|
||
|
||
return (
|
||
<div className={styles.container}>
|
||
<Head>
|
||
<title>Загрузите файл</title>
|
||
<meta name="description" content="Generated by create next app" />
|
||
<link rel="icon" href="/favicon.ico" />
|
||
</Head>
|
||
<main className={styles.main}>
|
||
<Header></Header>
|
||
|
||
<div className={styles.uploader}>
|
||
<div>
|
||
<div onClick={()=>router.back()}>
|
||
<img style={{transform:"rotate(90deg)", cursor:"pointer"}}src="/images/arrow.svg"></img>
|
||
</div>
|
||
<div>
|
||
{localStorage.getItem(uuid)?.slice(48,localStorage.getItem(uuid)?.length)}
|
||
</div>
|
||
</div>
|
||
{data == ""? <PulseLoader color={"#13377D"}></PulseLoader>:cards}
|
||
</div>
|
||
</main>
|
||
</div>
|
||
)
|
||
}
|
||
|
||
export default View
|