Skip to content

Commit

Permalink
update & improve UI
Browse files Browse the repository at this point in the history
  • Loading branch information
trieu committed Jan 29, 2024
1 parent b415e0b commit e754958
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 24 deletions.
3 changes: 2 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* How to setup LEO CDP
* How to monitor system

## [0.9.0] - 2024-20-20
## [0.9.0] - 2024-30-01

### Added

Expand Down Expand Up @@ -96,6 +96,7 @@

### Changed

- [Profile] improve UI and UX of profile filter
- [Activation] improve UI UX of activation rules
- [Activation] using Java quartz-scheduler as main backend for job scheduling
- the Event Time Series is default report of profile details
Expand Down
Binary file modified deps/onesignal-java-client-1.2.2.jar
Binary file not shown.
Binary file modified leo-data-processing-starter-v_0.9.0.jar
Binary file not shown.
Binary file modified leo-main-starter-v_0.9.0.jar
Binary file not shown.
Binary file modified leo-observer-starter-v_0.9.0.jar
Binary file not shown.
Binary file modified leo-scheduler-starter-v_0.9.0.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!-- Customer Profile Information -->

<div class="row">
<div class="col-lg-8" >
<div class="col-lg-7" >
<h5 class="page-header" id="page_breadcrumb" > </h5>
</div>
<div class="col-lg-4 text-right" style="padding: 10px">
<div class="col-lg-5 text-right" style="padding: 10px">
<button type="button" class="btn btn-info" title="Go back" onclick="history.back()" >
<i class="fa fa-arrow-circle-left" aria-hidden="true"></i> Back
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,30 +52,13 @@ <h4> <i class="fa fa-users" aria-hidden="true"></i> Profile Data Management </h4
<b> <i class="fa fa-search" aria-hidden="true"></i> Data Query Filter </b>
</div>
<div class="panel-body">
<div class="col-md-12 row">
<div class="col-lg-12 row">

<div class="col-md-6" >
<div class="col-lg-7" >
<div class="col-md-12 profile_filter_box" id="filterByJourneyMap" style="padding-bottom: 10px; font-weight: bold;" >
<select id="journeyMapList" class="form-control" data-placeholder="Choose an Journey Map" class="select" > </select>
</div>
<div class="col-md-12 profile_filter_box" >
<div class="col-md-3">
<label title="Filter all visitor profiles" >
<input id="showVisitorProfile" type="checkbox" checked="checked"> Show visitor
</label>
</div>
<div class="col-md-5">
<label title="Filter all lead profiles" >
<input id="showLeadAndProspectProfile" type="checkbox" checked="checked"> Show lead & prospect
</label>
</div>
<div class="col-md-4">
<label title="Filter all customer profiles" >
<input id="showCustomerProfile" type="checkbox" checked="checked"> Show customer
</label>
</div>
</div>
<div class="col-md-12 profile_filter_box" >
<div class="col-md-12 profile_filter_box" >
<div class="col-md-12">
<label title="Filter all profiles within the specified date range">
<input id="filter_profile_by_dates" type="checkbox" > Filter data by modification date
Expand All @@ -102,9 +85,28 @@ <h4> <i class="fa fa-users" aria-hidden="true"></i> Profile Data Management </h4
</div>
</div>
</div>
<div class="col-md-12 profile_filter_box" >
<h5 style="font-weight: bold;">Profile Type</h5>
<div class="col-md-4">
<label title="Filter all visitor profiles" >
<input id="showVisitorProfile" type="checkbox" checked="checked"> Web Visitor
</label>
</div>
<div class="col-md-4">
<label title="Filter all lead profiles" >
<input id="showLeadAndProspectProfile" type="checkbox" checked="checked"> Lead & Prospect
</label>
</div>
<div class="col-md-4">
<label title="Filter all customer profiles" >
<input id="showCustomerProfile" type="checkbox" checked="checked"> Customer
</label>
</div>
</div>

</div>

<div class="col-md-6" >
<div class="col-lg-5" >
<div class="col-md-12" >
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">
Expand Down

0 comments on commit e754958

Please sign in to comment.