fix file search by name

This commit is contained in:
Фролов 2021-08-31 12:30:44 +05:00
parent c8d184c590
commit c8c06f46e7
7 changed files with 140 additions and 144 deletions

View File

@ -86,3 +86,12 @@ export const upload = async (url:string, formData: FormData) => {
body: formData, body: formData,
}) })
} }
export const formatBytes = (bytes:number) => {
if(bytes < 1024)
return `${bytes.toFixed(0)}b`
if(bytes < 1024*1024)
return `${(bytes/1024).toFixed(2)}kb`
else
return `${(bytes/1024/1024).toFixed(2)}Mb`
}

View File

@ -5,10 +5,12 @@ import { FileService } from "../../services/api"
import { import {
invokeWebApiWrapperAsync, invokeWebApiWrapperAsync,
download, download,
formatBytes,
} from "../../components/factory" } from "../../components/factory"
import { EditableTable, makePaginationObject } from "../../components/Table" import { EditableTable, makePaginationObject } from "../../components/Table"
import UploadForm from "../../components/UploadForm" import UploadForm from "../../components/UploadForm"
import LoaderPortal from "../../components/LoaderPortal" import LoaderPortal from "../../components/LoaderPortal"
import {UserView} from '../../components/UserView'
const pageSize = 12 const pageSize = 12
const { RangePicker } = DatePicker const { RangePicker } = DatePicker
@ -17,7 +19,7 @@ const { Search } = Input
export default function DocumentsTemplate({ idCategory, idWell }) { export default function DocumentsTemplate({ idCategory, idWell }) {
const [page, setPage] = useState(1) const [page, setPage] = useState(1)
const [filterDataRange, setFilterDataRange] = useState([]) const [filterDataRange, setFilterDataRange] = useState([])
const [filterCompany, setFilterCompany] = useState([]) const [filterCompaniesIds, setFilterCompany] = useState([])
const [filterFileName, setFilterFileName] = useState('') const [filterFileName, setFilterFileName] = useState('')
const [pagination, setPagination] = useState(null) const [pagination, setPagination] = useState(null)
const [files, setFiles] = useState([]) const [files, setFiles] = useState([])
@ -66,13 +68,20 @@ export default function DocumentsTemplate({ idCategory, idWell }) {
title: "Дата загрузки", title: "Дата загрузки",
key: "uploadDate", key: "uploadDate",
dataIndex: "uploadDate", dataIndex: "uploadDate",
render: (item) => render: item =>
moment.utc(item).local().format("DD MMM YYYY, HH:mm:ss"), moment.utc(item).local().format("DD MMM YYYY, HH:mm:ss"),
}, },
{ {
title: "Ф.И.О.", title: "Размер",
key: "userName", key: "size",
dataIndex: "userName", dataIndex: "size",
render: item => formatBytes(item)
},
{
title: "Автор",
key: "author",
dataIndex: "author",
render: item => <UserView user={item}/>
}, },
{ {
title: "Компания", title: "Компания",
@ -102,11 +111,13 @@ export default function DocumentsTemplate({ idCategory, idWell }) {
async () => { async () => {
const paginatedFiles = await FileService.getFilesInfo( const paginatedFiles = await FileService.getFilesInfo(
idWell, idWell,
idCategory,
filterCompaniesIds,
filterFileName,
begin,
end,
(page - 1) * pageSize, (page - 1) * pageSize,
pageSize, pageSize,
idCategory,
begin,
end
) )
if (!paginatedFiles) return if (!paginatedFiles) return
addKeysAndUpdateFiles(paginatedFiles?.items) addKeysAndUpdateFiles(paginatedFiles?.items)
@ -119,7 +130,7 @@ export default function DocumentsTemplate({ idCategory, idWell }) {
) )
} }
useEffect(update, [idWell, idCategory, page, filterDataRange, filterCompany, filterFileName]) useEffect(update, [idWell, idCategory, page, filterDataRange, filterCompaniesIds, filterFileName])
const companies = [...new Set(files.map(file=>file.company))] const companies = [...new Set(files.map(file=>file.company))]
.filter(company=>company) .filter(company=>company)

View File

@ -1,132 +1,67 @@
// import {Table, Button} from 'antd' import {Table, Button} from 'antd'
// import {useEffect, useState} from 'react' import {useEffect, useState} from 'react'
// import { useParams } from "react-router-dom" import {invokeWebApiWrapperAsync, download} from '../components/factory'
// import FileInfo from '../components/FileInfo' import { FileService } from '../services/api'
// import UploadPlanFileForm from '../components/UploadPlanFileForm' import UploadForm from '../components/UploadForm'
// import { PlanService } from '../services/api' import LoaderPortal from '../components/LoaderPortal'
// import LoaderPortal from '../components/LoaderPortal'
// const originData = [ const idFileCategoryDrillingProgramItems = 13;
// {key: 1, category: 'Проект транспорт',}, //const idFileCategoryDrillingProgram = 14;
// {key: 2, category: 'Программа на бурение',},
// {key: 3, category: 'Долотная программа',},
// {key: 4, category: 'Программа промывки',},
// {key: 5, category: 'Планы на спуски',},
// {key: 6, category: 'График глубина день',},
// {key: 7, category: 'Мероприятия по бурению скважины',},
// ]
export default function DrillingProgram() { const FileInfo = (fileInfo) => {
return <div>Программа на бурение</div> return <div>{fileInfo?.name}</div>
// let { id } = useParams() }
// const [data, setData] = useState(originData)
// const [isLoaderVisible, setIsLoaderVisible] = useState(true) export default function DrillingProgram({idWell}) {
const [data, setData] = useState([])
// const columns = [ const [showLoader, setShowLoader] = useState(false)
// {
// title: '', const update = () => invokeWebApiWrapperAsync( async () => {
// dataIndex: 'key', const files = await FileService.getInfosByCategory(idWell, idFileCategoryDrillingProgramItems)
// width: 50 setData(files??[])
// }, },setShowLoader,null)
// {
// title: 'Раздел', useEffect(update, [idWell])
// dataIndex: 'category',
// key: 'category', const columns = [
// width: 250 {
// }, title: 'Файл',
// { dataIndex: 'fileInfo',
// title: 'Файл', key: 'fileInfo',
// dataIndex: 'fileInfo', render: (_, record) => <FileInfo idCategory={record.key} fileInfo={record.fileInfo} onUploadComplete={update}/>
// key: 'fileInfo', },
// render: (_, record) => record.fileInfo {
// ? <FileInfo idCategory={record.key} fileInfo={record.fileInfo} onUploadComplete={updateData}/> title: 'Автор',
// : <UploadPlanFileForm idCategory={record.key} onUploadComplete={updateData}/> key: 'owner',
// }, render: (_,record) => record.fileInfo?.owner
// { },
// title: 'Автор', {
// key: 'owner', title: 'Дата загрузки',
// render: (_,record) => record.fileInfo?.owner key: 'uploadDate',
// }, render: (_, record) => record.fileInfo ? new Date(record.fileInfo.uploadDate).toLocaleString() : ''
// { },
// title: 'Дата загрузки', ]
// key: 'uploadDate',
// render: (_, record) => record.fileInfo ? new Date(record.fileInfo.uploadDate).toLocaleString() : '' const urlDownloadProgram =`api/well/${idWell}/drillingProgram`
// },
// ] return(<>
<LoaderPortal show={showLoader}>
// const updateData = async () => { <Button
// let response = await PlanService.getFilesInfos(id) type="primary"
htmlType="button"
// if(response) { disabled={!data.some((el) => !!el.fileInfo)}
onClick={()=>{download(urlDownloadProgram)}}
// let newData = [...originData] >
// newData.forEach(item => { Сформировать программу бурения
// let newFileInfo = response.find(f=>f.idCategory === item.key) </Button>
// item.fileInfo = newFileInfo <div>&nbsp;</div>
// }) <Table
// setIsLoaderVisible(false) bordered
// setData(newData) dataSource={data}
// } columns={columns}
// } pagination={false}
/>
// useEffect(()=>{updateData()}, []) <UploadForm idCategory={idFileCategoryDrillingProgramItems}/>
</LoaderPortal>
// const downloadDrillingProgram = async () => { </>)
// setIsLoaderVisible(true)
// try{
// const response = await fetch(`/api/plan/${id}/drillingProgram`, {
// headers: {
// Authorization: 'Bearer ' + localStorage['token']
// },
// method: 'Get'
// })
// const blob = await response.blob()
// const reader = new FileReader()
// reader.readAsDataURL(blob)
// reader.onload = function (e) {
// let a = document.createElement('a')
// a.href = e.target.result
// a.download = "Программа бурения.xlsx"
// document.body.appendChild(a) // we need to append the element to the dom -> otherwise it will not work in firefox
// a.click()
// a.remove()
// }
// }catch(e){
// console.log(e)
// }
// setIsLoaderVisible(false)
// }
// const expandInfo = (fileInfo) => <p>
// <span>Автор:&nbsp{fileInfo.owner}</span>
// &nbsp&nbsp&nbsp&nbsp
// <span>Дата загрузки:&nbsp{new Date(fileInfo.uploadDate).toLocaleString()}</span>
// </p>
// return(<>
// <div>&nbsp</div>
// <LoaderPortal show={isLoaderVisible}>
// <Button
// type="primary"
// htmlType="button"
// disabled={!data.some((el) => !!el.fileInfo)}
// onClick={downloadDrillingProgram}
// >
// Сформировать программу бурения
// </Button>
// <div>&nbsp</div>
// <Table
// bordered
// dataSource={data}
// columns={columns}
// // expandable={{
// // expandedRowRender: record => expandInfo(record.fileInfo),
// // rowExpandable: record => record.fileInfo
// // }}
// pagination={false}
// />
// </LoaderPortal>
// </>)
} }

View File

@ -27,6 +27,7 @@ export type { TelemetryOperationDto } from './models/TelemetryOperationDto';
export type { TelemetryOperationDtoPaginationContainer } from './models/TelemetryOperationDtoPaginationContainer'; export type { TelemetryOperationDtoPaginationContainer } from './models/TelemetryOperationDtoPaginationContainer';
export type { TelemetryOperationDurationDto } from './models/TelemetryOperationDurationDto'; export type { TelemetryOperationDurationDto } from './models/TelemetryOperationDurationDto';
export type { TelemetryUserDto } from './models/TelemetryUserDto'; export type { TelemetryUserDto } from './models/TelemetryUserDto';
export type { UserDto } from './models/UserDto';
export type { UserTokenDto } from './models/UserTokenDto'; export type { UserTokenDto } from './models/UserTokenDto';
export type { WellDepthToDayDto } from './models/WellDepthToDayDto'; export type { WellDepthToDayDto } from './models/WellDepthToDayDto';
export type { WellDepthToIntervalDto } from './models/WellDepthToIntervalDto'; export type { WellDepthToIntervalDto } from './models/WellDepthToIntervalDto';

View File

@ -2,6 +2,8 @@
/* tslint:disable */ /* tslint:disable */
/* eslint-disable */ /* eslint-disable */
import type { UserDto } from './UserDto';
export type FileInfoDto = { export type FileInfoDto = {
id?: number; id?: number;
idWell?: number; idWell?: number;
@ -9,6 +11,7 @@ export type FileInfoDto = {
idAuthor?: number; idAuthor?: number;
name?: string | null; name?: string | null;
uploadDate?: string; uploadDate?: string;
authorName?: string | null; size?: number;
companyId?: number; author?: UserDto;
company?: string | null;
} }

View File

@ -0,0 +1,15 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type UserDto = {
login?: string | null;
level?: number | null;
name?: string | null;
surname?: string | null;
patronymic?: string | null;
id?: number;
idCompany?: number | null;
idRole?: number | null;
password?: string | null;
}

View File

@ -1,6 +1,7 @@
/* istanbul ignore file */ /* istanbul ignore file */
/* tslint:disable */ /* tslint:disable */
/* eslint-disable */ /* eslint-disable */
import type { FileInfoDto } from '../models/FileInfoDto';
import type { FileInfoDtoPaginationContainer } from '../models/FileInfoDtoPaginationContainer'; import type { FileInfoDtoPaginationContainer } from '../models/FileInfoDtoPaginationContainer';
import { request as __request } from '../core/request'; import { request as __request } from '../core/request';
@ -33,39 +34,60 @@ requestBody?: any,
/** /**
* Возвращает информацию о файлах для скважины в выбраной категории * Возвращает информацию о файлах для скважины в выбраной категории
* @param idWell id скважины * @param idWell id скважины
* @param skip для пагинации кол-во записей пропустить
* @param take для пагинации кол-во записей взять
* @param idCategory id категории файла * @param idCategory id категории файла
* @param companies id компаний для фильтрации возвращаемых файлов
* @param fileName часть имени файла для поиска
* @param begin дата начала * @param begin дата начала
* @param end дата окончания * @param end дата окончания
* @param companies id компаний для фильтрации возвращаемых файлов * @param skip для пагинации кол-во записей пропустить
* @param take для пагинации кол-во записей взять
* @returns FileInfoDtoPaginationContainer Success * @returns FileInfoDtoPaginationContainer Success
* @throws ApiError * @throws ApiError
*/ */
public static async getFilesInfo( public static async getFilesInfo(
idWell: number, idWell: number,
skip: number,
take: number = 32,
idCategory: number, idCategory: number,
companies?: Array<number>,
fileName?: string,
begin?: string, begin?: string,
end?: string, end?: string,
companies?: Array<number>, skip: number = 0,
take: number = 32,
): Promise<FileInfoDtoPaginationContainer> { ): Promise<FileInfoDtoPaginationContainer> {
const result = await __request({ const result = await __request({
method: 'GET', method: 'GET',
path: `/api/well/${idWell}/files`, path: `/api/well/${idWell}/files`,
query: { query: {
'skip': skip,
'take': take,
'idCategory': idCategory, 'idCategory': idCategory,
'companies': companies,
'fileName': fileName,
'begin': begin, 'begin': begin,
'end': end, 'end': end,
'companies': companies, 'skip': skip,
'take': take,
}, },
}); });
return result.body; return result.body;
} }
/**
* Возвращает информацию о файлах для скважины в выбраной категории
* @param idWell id скважины
* @param idCategory id категории файла
* @returns FileInfoDto Success
* @throws ApiError
*/
public static async getInfosByCategory(
idWell: number,
idCategory: number,
): Promise<Array<FileInfoDto>> {
const result = await __request({
method: 'GET',
path: `/api/well/${idWell}/files/category/${idCategory}`,
});
return result.body;
}
/** /**
* Возвращает файл с диска на сервере * Возвращает файл с диска на сервере
* @param idWell id скважины * @param idWell id скважины