2021-07-23 18:08:44 +08:00
|
|
|
import { request } from './schemas';
|
2021-05-23 08:38:08 +08:00
|
|
|
|
|
|
|
export interface ResourceOptions {
|
|
|
|
resourceName: string;
|
|
|
|
associatedKey?: any;
|
|
|
|
associatedName?: string;
|
|
|
|
resourceKey?: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface GetOptions {
|
|
|
|
resourceKey?: any;
|
|
|
|
appends?: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface SaveOptions {
|
|
|
|
resourceKey?: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ListOptions {
|
2021-08-04 12:38:08 +08:00
|
|
|
defaultFilter?: any;
|
|
|
|
filter?: any;
|
2021-05-23 08:38:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Resource {
|
|
|
|
|
2021-07-30 00:03:10 +08:00
|
|
|
public options: ResourceOptions;
|
2021-05-23 08:38:08 +08:00
|
|
|
|
|
|
|
constructor(options: string | ResourceOptions) {
|
|
|
|
if (typeof options === 'string') {
|
|
|
|
this.options = { resourceName: options }
|
|
|
|
} else {
|
|
|
|
this.options = options;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-04 12:38:08 +08:00
|
|
|
sort(options) {
|
|
|
|
const { resourceName } = this.options;
|
|
|
|
const { resourceKey, target, field = 'sort' } = options;
|
|
|
|
return request(`${resourceName}:sort/${resourceKey}`, {
|
|
|
|
method: 'post',
|
|
|
|
data: {
|
|
|
|
target,
|
|
|
|
field,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-23 08:38:08 +08:00
|
|
|
list(options: ListOptions = {}) {
|
2021-08-04 12:38:08 +08:00
|
|
|
const { defaultFilter, filter, ...others } = options;
|
2021-05-23 08:38:08 +08:00
|
|
|
const { resourceName } = this.options;
|
2021-08-04 12:38:08 +08:00
|
|
|
return request(`${resourceName}:list`, {
|
|
|
|
method: 'get',
|
|
|
|
params: {
|
|
|
|
filter: decodeURIComponent(JSON.stringify({ and: [defaultFilter, filter].filter(Boolean) })),
|
|
|
|
...others,
|
|
|
|
},
|
|
|
|
});
|
2021-05-23 08:38:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
get(options: GetOptions = {}) {
|
|
|
|
const resourceKey = options.resourceKey || this.options.resourceKey;
|
|
|
|
const { resourceName } = this.options;
|
|
|
|
if (!resourceKey) {
|
|
|
|
return Promise.resolve({ data: {} });
|
|
|
|
}
|
2021-07-23 18:08:44 +08:00
|
|
|
return request(`${resourceName}:get/${resourceKey}`);
|
2021-05-23 08:38:08 +08:00
|
|
|
}
|
|
|
|
|
2021-07-30 00:03:10 +08:00
|
|
|
create(values: any) {
|
|
|
|
const { resourceName } = this.options;
|
|
|
|
const url = `${resourceName}:create`;
|
|
|
|
return request(url, {
|
|
|
|
method: 'post',
|
|
|
|
data: values,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-23 08:38:08 +08:00
|
|
|
save(values: any, options: SaveOptions = {}) {
|
|
|
|
const resourceKey = options.resourceKey || this.options.resourceKey;
|
|
|
|
const { resourceName } = this.options;
|
2021-07-23 18:08:44 +08:00
|
|
|
const url = `${resourceName}:${resourceKey ? `update/${resourceKey}` : 'create'}`;
|
2021-05-23 08:38:08 +08:00
|
|
|
return request(url, {
|
|
|
|
method: 'post',
|
|
|
|
data: values,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-07-23 18:08:44 +08:00
|
|
|
destroy(filter: any) {
|
|
|
|
const { resourceName } = this.options;
|
|
|
|
const url = `${resourceName}:destroy`;
|
|
|
|
return request(url, {
|
|
|
|
method: 'get',
|
|
|
|
params: {
|
|
|
|
filter
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-07-30 00:03:10 +08:00
|
|
|
static make(options: null | string | Resource | ResourceOptions): Resource | null {
|
2021-05-23 08:38:08 +08:00
|
|
|
if (typeof options === 'string') {
|
|
|
|
return new Resource({ resourceName: options });
|
|
|
|
}
|
|
|
|
if (options instanceof Resource) {
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
if (typeof options === 'object' && options.resourceName) {
|
|
|
|
return new Resource(options);
|
|
|
|
}
|
2021-07-30 00:03:10 +08:00
|
|
|
console.warn('resource 初始化参数错误');
|
|
|
|
return null;
|
2021-05-23 08:38:08 +08:00
|
|
|
}
|
|
|
|
}
|