Skip to content

Commit c52f02e

Browse files
authoredOct 5, 2021
Merge pull request krayin#418 from devansh-webkul/kanban-filter-remove-fixed
Kanban filter remove fixed krayin#377
2 parents 0a73311 + 0fb7f89 commit c52f02e

File tree

4 files changed

+45
-26
lines changed

4 files changed

+45
-26
lines changed
 

‎packages/Webkul/Admin/src/Http/Controllers/Lead/LeadController.php

+16-14
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@
1313
class LeadController extends Controller
1414
{
1515
/**
16-
* LeadRepository object
16+
* Lead repository instance.
1717
*
1818
* @var \Webkul\Lead\Repositories\LeadRepository
1919
*/
2020
protected $leadRepository;
2121

2222
/**
23-
* PipelineRepository object
23+
* Pipeline repository instance.
2424
*
2525
* @var \Webkul\Lead\Repositories\PipelineRepository
2626
*/
2727
protected $pipelineRepository;
2828

2929
/**
30-
* StageRepository object
30+
* Stage repository instance.
3131
*
3232
* @var \Webkul\Lead\Repositories\StageRepository
3333
*/
@@ -69,32 +69,34 @@ public function index()
6969
} else {
7070
$createdAt = request('created_at') ?? null;
7171

72-
if ($createdAt) {
72+
if ($createdAt && isset($createdAt["bw"])) {
7373
$createdAt = explode(",", $createdAt["bw"]);
74-
74+
7575
$createdAt[0] .= ' 00:01';
76-
76+
7777
$createdAt[1] = $createdAt[1]
7878
? $createdAt[1] . ' 23:59'
7979
: Carbon::now()->format('Y-m-d 23:59');
80+
} else {
81+
$createdAt = null;
8082
}
8183

8284
if (request('pipeline_id')) {
8385
$pipeline = $this->pipelineRepository->find(request('pipeline_id'));
8486
} else {
8587
$pipeline = $this->pipelineRepository->getDefaultPipeline();
8688
}
87-
89+
8890
$leads = $this->leadRepository->getLeads($pipeline->id, request('search') ?? '', $createdAt)->toArray();
89-
91+
9092
$totalCount = [];
91-
93+
9294
foreach ($leads as $key => $lead) {
9395
$totalCount[$lead['status']] = ($totalCount[$lead['status']] ?? 0) + (float) $lead['lead_value'];
94-
96+
9597
$leads[$key]['lead_value'] = core()->formatBasePrice($lead['lead_value']);
9698
}
97-
99+
98100
$totalCount = array_map(function ($count) {
99101
return core()->formatBasePrice($count);
100102
}, $totalCount);
@@ -147,7 +149,7 @@ public function store(AttributeForm $request)
147149

148150
$lead = $this->leadRepository->create($data);
149151

150-
$user = $this->leadRepository->getUserByLeadId($lead->id);
152+
$this->leadRepository->getUserByLeadId($lead->id);
151153

152154
Event::dispatch('lead.create.after', $lead);
153155

@@ -217,7 +219,7 @@ public function update(AttributeForm $request, $id)
217219
}
218220

219221
/**
220-
* Search person results
222+
* Search person results.
221223
*
222224
* @return \Illuminate\Http\Response
223225
*/
@@ -251,7 +253,7 @@ public function destroy($id)
251253
'status' => true,
252254
'message' => trans('admin::app.response.destroy-success', ['name' => trans('admin::app.leads.lead')]),
253255
], 200);
254-
} catch(\Exception $exception) {
256+
} catch (\Exception $exception) {
255257
return response()->json([
256258
'status' => false,
257259
'message' => trans('admin::app.response.destroy-failed', ['name' => trans('admin::app.leads.lead')]),

‎packages/Webkul/UI/publishable/assets/js/ui.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/Webkul/UI/publishable/assets/mix-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"/js/ui.js": "/js/ui.js?id=33c8030694c5581a6849",
2+
"/js/ui.js": "/js/ui.js?id=ff18906b89dbcbb22b90",
33
"/css/ui.css": "/css/ui.css?id=305ba87cbd5ce07c772d",
44
"/images/add-icon.svg": "/images/add-icon.svg?id=9135b4e0e1c239c36981",
55
"/images/align-justify-icon.svg": "/images/align-justify-icon.svg?id=ee8d48e636b80417a884",

‎packages/Webkul/UI/src/Resources/assets/js/components/datagrid/side-filter.vue

+27-10
Original file line numberDiff line numberDiff line change
@@ -220,17 +220,34 @@ export default {
220220
},
221221
222222
removeAll: function() {
223-
this.$store.state.filters = this.$store.state.filters.filter(
224-
filter => filter.column == "view_type" && filter.val == "table"
225-
);
226-
227-
(this.columns || this.tableData.columns).forEach(
228-
(column, index) => {
229-
if (column.type && column.type == "date_range") {
230-
$(".flatpickr-input").val();
223+
/* for default tables cases */
224+
if (this.$store.state.filters.length !== undefined) {
225+
this.$store.state.filters = this.$store.state.filters.filter(
226+
filter => filter.column == "view_type" && filter.val == "table"
227+
);
228+
229+
(this.columns || this.tableData.columns).forEach(
230+
(column, index) => {
231+
if (column.type && column.type == "date_range") {
232+
$(".flatpickr-input").val('');
233+
}
231234
}
232-
}
233-
);
235+
);
236+
} else {
237+
/**
238+
* For kanban case.
239+
*
240+
* To Do (@devansh-webkul): This needs to be supported by
241+
* all types present in the kanban columns. Currently added
242+
* for `created_at`.
243+
*/
244+
$(".flatpickr-input").val('');
245+
246+
this.updateFilterValues({
247+
key: 'created_at',
248+
values: ['', '']
249+
});
250+
}
234251
235252
this.$forceUpdate();
236253
},

0 commit comments

Comments
 (0)
Please sign in to comment.