1. support dns zone page in the administrator 2. support dns zone's recordsets in the administrator 3. update dns zone fetch to pagination request 4. update recordsets fetch to pagination request 5. support sort zone by api 6. support sort recordsets by api 7. update search filters for the dns zone list page 8. update search filters for the recordset list Change-Id: If426060bcb0c3ecd3fa485a9be09953ae74734dc
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
import client from 'client';
|
|
import { action } from 'mobx';
|
|
import Base from './base';
|
|
|
|
export class DNSRecordSetsStore extends Base {
|
|
get client() {
|
|
return client.designate.zones.recordsets;
|
|
}
|
|
|
|
get isSubResource() {
|
|
return true;
|
|
}
|
|
|
|
getFatherResourceId = (params) => params.zoneId || params.id;
|
|
|
|
get paramsFuncPage() {
|
|
return (params) => {
|
|
const { id, zoneId, all_projects, current, ...rest } = params;
|
|
return rest;
|
|
};
|
|
}
|
|
|
|
@action
|
|
delete = ({ zone_id, recordset_id }) =>
|
|
this.submitting(this.client.delete(zone_id, recordset_id));
|
|
|
|
@action
|
|
update = (zone_id, recordset_id, body) =>
|
|
this.submitting(this.client.update(zone_id, recordset_id, body));
|
|
|
|
@action
|
|
create = ({ id }, body) => this.submitting(this.client.create(id, body));
|
|
}
|
|
|
|
const globalDNSRecordSetsStore = new DNSRecordSetsStore();
|
|
export default globalDNSRecordSetsStore;
|