0.0.28 • Published 10 months ago
@min98/filemanager-react v0.0.28
Package File Manager
Frontend Package File Manager for
Documentation
Use
import { Client, FileManagerAPI, FileManager } from "@min98/filemanager-react";
const token = LocalStorage.getItem("access_token");
const lang = LocalStorage.getItem("lang");
const client = new Client(
"http://127.0.0.1:8000/api/v1/fm",
true,
token,
"en"
);
const API = new FileManagerAPI(client);
<FileManager API={API} lang={lang} />
- can customize the file manager if you not use API follow interface
- example default file manager for
import { Client } from "./Client";
import { AbstractFileManagerAPI } from "./AbstractFileManagerAPI ";
export class FileManagerAPI extends AbstractFileManagerAPI {
public client: Client;
constructor(client: Client) {
super(client,);
this.client = client;
}
/**
* api disk
*/
initialize = (disk: string, path: string = "") => {
return this.client.createRequest("get", "initialize", {
params: {
disk,
path
}
});
};
content = (disk: string, path: string = "") => {
return this.client.createRequest("get", "content", {
params: {
disk,
path
}
});
};
// Continue method follow AbstractFileManagerAPI
}
0.0.28
10 months ago
0.0.20
1 year ago
0.0.21
1 year ago
0.0.22
1 year ago
0.0.23
1 year ago
0.0.24
1 year ago
0.0.25
1 year ago
1.0.7
1 year ago
1.0.6
1 year ago
1.0.5
1 year ago
1.0.4
1 year ago
1.0.3
1 year ago
0.0.15
1 year ago
0.0.16
1 year ago
0.0.17
1 year ago
0.0.18
1 year ago
0.0.19
1 year ago
0.0.10
1 year ago
0.0.11
1 year ago
0.0.12
1 year ago
0.0.13
1 year ago
0.0.14
1 year ago
0.0.1
1 year ago
0.0.0
1 year ago
0.0.3
1 year ago
0.0.2
1 year ago
0.0.26
12 months ago
0.0.9
1 year ago
0.0.27
12 months ago
0.0.8
1 year ago
0.0.5
1 year ago
0.0.4
1 year ago
0.0.7
1 year ago
0.0.6
1 year ago
1.0.2
1 year ago
1.0.1
1 year ago
1.0.0
1 year ago