brokers.controller.js
6.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
app.controller('brokersController', function ($scope, $mdDialog, $mdToast, brokersFactory ) {
// read products
$scope.readBrokers = function () {
// use products factory
brokersFactory.readBrokers().then(function successCallback(response) {
$scope.brokers = response.data;
}, function errorCallback(response) {
$scope.showToast("Unable to read record.");
});
}
// show 'create form' in dialog box
$scope.showCreateForm = function (event) {
$mdDialog.show({
controller: DialogController,
templateUrl: '/wp-content/plugins/broker-settings/create_broker.template.html',
parent: angular.element(document.body),
targetEvent: event,
clickOutsideToClose: true,
scope: $scope,
preserveScope: true,
fullscreen: true // Only for -xs, -sm breakpoints.
});
}
// methods for dialog box
function DialogController($scope, $mdDialog) {
$scope.cancel = function () {
$mdDialog.cancel();
};
}
// create new product
$scope.createBroker = function () {
brokersFactory.createBroker($scope).then(function successCallback(response) {
// tell the user new product was created
$scope.showToast(response.data.message);
// refresh the list
$scope.readBrokers();
// close dialog
$scope.cancel();
// remove form values
$scope.clearBrokerForm();
}, function errorCallback(response) {
$scope.showToast("Unable to create record.");
});
}
// clear variable / form values
$scope.clearBrokerForm = function () {
$scope.broker_id = "";
$scope.brokerage = "";
}
// show toast message
$scope.showToast = function (message) {
$mdToast.show(
$mdToast.simple()
.textContent(message)
.hideDelay(3000)
.position("top right")
);
}
// retrieve record to fill out the form
$scope.readOneBroker = function (id) {
// get product to be edited
brokersFactory.readOneBroker(id).then(function successCallback(response) {
// put the values in form
$scope.id = response.data.id;
$scope.broker_id = response.data.broker_id;
$scope.brokerage = response.data.brokerage;
$mdDialog.show({
controller: DialogController,
templateUrl: '/wp-content/plugins/broker-settings/read_one_broker.template.html',
parent: angular.element(document.body),
targetEvent: event,
clickOutsideToClose: true,
scope: $scope,
preserveScope: true,
fullscreen: true
}).then(
function () {
},
// user clicked 'Cancel'
function () {
// clear modal content
$scope.clearBrokerForm();
}
);
}, function errorCallback(response) {
$scope.showToast("Unable to retrieve record.");
});
}
// retrieve record to fill out the form
$scope.showUpdateBrokerForm = function (id) {
// get product to be edited
brokersFactory.readOneBroker(id).then(function successCallback(response) {
// put the values in form
$scope.id = response.data.id;
$scope.broker_id = response.data.broker_id;
$scope.brokerage = response.data.brokerage;
$mdDialog.show({
controller: DialogController,
templateUrl: '/wp-content/plugins/broker-settings/update_broker.template.html',
parent: angular.element(document.body),
targetEvent: event,
clickOutsideToClose: true,
scope: $scope,
preserveScope: true,
fullscreen: true
}).then(
function () {
},
// user clicked 'Cancel'
function () {
// clear modal content
$scope.clearBrokerForm();
}
);
}, function errorCallback(response) {
$scope.showToast("Unable to retrieve record.");
});
}
// update product record / save changes
$scope.updateBroker = function () {
brokersFactory.updateBroker($scope).then(
function successCallback(response) {
// tell the user product record was updated
$scope.showToast(response.data.message);
// refresh the product list
$scope.readBrokers();
// close dialog
$scope.cancel();
// clear modal content
$scope.clearBrokerForm();
},
function errorCallback(response) {
$scope.showToast("Unable to update record.");
}
);
}
// cofirm product deletion
$scope.confirmDeleteBroker = function (event, id) {
// set id of record to delete
$scope.id = id;
// dialog settings
var confirm = $mdDialog.confirm()
.title('Are you sure?')
.textContent('Broker will be deleted.')
.targetEvent(event)
.ok('Yes')
.cancel('No');
// show dialog
$mdDialog.show(confirm).then(
// 'Yes' button
function () {
// if user clicked 'Yes', delete product record
$scope.deleteBroker();
},
// 'No' button
function () {
// hide dialog
}
);
}
// delete product
$scope.deleteBroker = function () {
brokersFactory.deleteBroker($scope.id).then(function successCallback(response) {
// tell the user product was deleted
$scope.showToast(response.data.message);
// refresh the list
$scope.readBrokers();
}, function errorCallback(response) {
$scope.showToast("Unable to delete record.");
});
}
});