44 lines
789 B
JavaScript
44 lines
789 B
JavaScript
|
|
|
||
|
|
|
||
|
|
import fileupload from './fileManager.upload.js';
|
||
|
|
|
||
|
|
import fileList from "./fileManager.list.js";
|
||
|
|
|
||
|
|
import removeIcons from "./fileManager.removeIcons.js";
|
||
|
|
|
||
|
|
import header from '/elements/header.js';
|
||
|
|
|
||
|
|
import page from '/elements/page.js';
|
||
|
|
|
||
|
|
import previewWindow from "./fileManager.imagePreviewWindow.js"
|
||
|
|
|
||
|
|
import fileChooser from '/elements/fileChooser/fileChooser.js';
|
||
|
|
|
||
|
|
|
||
|
|
export default class fileManager extends page{
|
||
|
|
|
||
|
|
|
||
|
|
width = "100%"
|
||
|
|
|
||
|
|
minHeight = 350;
|
||
|
|
|
||
|
|
flexDirection = "column"
|
||
|
|
|
||
|
|
uploadHeader = new header("Upload");
|
||
|
|
|
||
|
|
fileupload = new fileupload();
|
||
|
|
|
||
|
|
filesHeader = new header("Files");
|
||
|
|
|
||
|
|
removeIcons = new removeIcons();
|
||
|
|
|
||
|
|
fileList = new fileList();
|
||
|
|
|
||
|
|
previewWindow = new previewWindow();
|
||
|
|
|
||
|
|
|
||
|
|
fileChooser = new fileChooser();
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|