feat(main): Add base theme: This is the falcon theme out of the box.
This commit is contained in:
36
modules/ps_facetedsearch/ps_facetedsearch.tpl
Normal file
36
modules/ps_facetedsearch/ps_facetedsearch.tpl
Normal file
@ -0,0 +1,36 @@
|
||||
{**
|
||||
* Copyright since 2007 PrestaShop SA and Contributors
|
||||
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
|
||||
* that is bundled with this package in the file LICENSE.md.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* https://opensource.org/licenses/AFL-3.0
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to https://devdocs.prestashop.com/ for more information.
|
||||
*
|
||||
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
||||
* @copyright Since 2007 PrestaShop SA and Contributors
|
||||
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
*}
|
||||
{if isset($listing.rendered_facets)}
|
||||
<div id="search_filters_wrapper" class="hidden-sm-down">
|
||||
<div id="search_filter_controls" class="hidden-md-up">
|
||||
<span id="_mobile_search_filters_clear_all"></span>
|
||||
<button class="btn btn-secondary ok">
|
||||
<i class="material-icons rtl-no-flip"></i>
|
||||
{l s='OK' d='Shop.Theme.Actions'}
|
||||
</button>
|
||||
</div>
|
||||
{$listing.rendered_facets nofilter}
|
||||
</div>
|
||||
{/if}
|
||||
@ -0,0 +1,48 @@
|
||||
{**
|
||||
* Copyright since 2007 PrestaShop SA and Contributors
|
||||
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
|
||||
* that is bundled with this package in the file LICENSE.md.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* https://opensource.org/licenses/AFL-3.0
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to https://devdocs.prestashop.com/ for more information.
|
||||
*
|
||||
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
||||
* @copyright Since 2007 PrestaShop SA and Contributors
|
||||
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
*}
|
||||
<section id="js-active-search-filters">
|
||||
{if $activeFilters|count}
|
||||
<div class="card mb-3">
|
||||
<div class="card-header">
|
||||
{block name='active_filters_title'}
|
||||
<p class="h5 card-title mb-0">{l s='Active filters' d='Shop.Theme.Global'}</p>
|
||||
{/block}
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<ul class="row m-n1">
|
||||
{foreach from=$activeFilters item="filter"}
|
||||
{block name='active_filters_item'}
|
||||
<li class="col flex-grow-0 flex-shrink-0 p-1">
|
||||
<a class="text-nowrap btn btn-outline-secondary btn-sm js-search-link d-flex align-items-center" href="{$filter.nextEncodedFacetsURL}" rel="nofollow">
|
||||
{l s='%1$s:' d='Shop.Theme.Catalog' sprintf=[$filter.facetLabel]} {$filter.label} <i class="material-icons font-reset ml-1 align-middle"></i>
|
||||
</a>
|
||||
</li>
|
||||
{/block}
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</section>
|
||||
@ -0,0 +1,174 @@
|
||||
{**
|
||||
* 2007-2019 PrestaShop.
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
|
||||
* that is bundled with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* https://opensource.org/licenses/AFL-3.0
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to http://www.prestashop.com for more information.
|
||||
*
|
||||
* @author PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright 2007-2019 PrestaShop SA
|
||||
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
|
||||
<div id="_desktop_filters">
|
||||
{if isset($displayedFacets) && $displayedFacets|count}
|
||||
<div id="search_filters" class="js-search-filters search-filters card mb-md-3">
|
||||
<div class="card-header d-none d-md-block">
|
||||
{block name='facets_title'}
|
||||
<p class="card-title h5 mb-0">{l s='Filter By' d='Shop.Theme.Actions'}</p>
|
||||
{/block}
|
||||
</div>
|
||||
<div class="list-group list-group-flush">
|
||||
{block name='facets_clearall_button'}
|
||||
{if $activeFilters|count}
|
||||
<div class="clear-all-wrapper card-body">
|
||||
<button data-search-url="{$clear_all_link}"
|
||||
class="btn btn-sm btn-block btn-outline-secondary btn-sm js-search-filters-clear-all">
|
||||
<i class="material-icons font-reset mr-1 align-middle"></i>
|
||||
{l s='Clear all' d='Shop.Theme.Actions'}
|
||||
</button>
|
||||
</div>
|
||||
{/if}
|
||||
{/block}
|
||||
{foreach from=$displayedFacets item="facet"}
|
||||
|
||||
{assign var=_expand_id value=10|mt_rand:100000}
|
||||
{assign var=_collapse value=true}
|
||||
{foreach from=$facet.filters item="filter"}
|
||||
{if $filter.active}{assign var=_collapse value=false}{/if}
|
||||
{/foreach}
|
||||
<section class="search-filters__block list-group-item">
|
||||
<div class="search-filters__header d-flex justify-content-between align-items-center mb-0 h5 position-relative">
|
||||
<span class="search-filters__title mb-0">{$facet.label}</span>
|
||||
{if $facet.widgetType != 'slider'}
|
||||
<a href="#facet_{$_expand_id}" class="icon-collapse stretched-link text-reset d-block" data-toggle="collapse"
|
||||
{if !$_collapse} aria-expanded="true" {/if}>
|
||||
<span class="material-icons"></span>
|
||||
</a>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{if in_array($facet.widgetType, ['radio', 'checkbox'])}
|
||||
{block name='facet_item_other'}
|
||||
<div id="facet_{$_expand_id}" class="search-filters__collapse collapse{if !$_collapse} show{/if}">
|
||||
{foreach from=$facet.filters key=filter_key item="filter"}
|
||||
{if !$filter.displayed}
|
||||
{continue}
|
||||
{/if}
|
||||
<div class="py-1 {if $filter@first}pt-2{/if}">
|
||||
<div
|
||||
class="custom-control custom-{if $facet.multipleSelectionAllowed}checkbox{if isset($filter.properties.color) || isset($filter.properties.texture)}-color{/if}{else}radio{/if}">
|
||||
<input id="facet_input_{$_expand_id}_{$filter_key}" data-search-url="{$filter.nextEncodedFacetsURL}"
|
||||
type="{if $facet.multipleSelectionAllowed}checkbox{else}radio{/if}" class="custom-control-input"
|
||||
{if $filter.active } checked{/if}>
|
||||
<label for="facet_input_{$_expand_id}_{$filter_key}" {if isset($filter.properties.color)}
|
||||
class="custom-control-label custom-control-label-{if Tools::getBrightness($filter.properties.color) > 128}dark{else}bright{/if}"
|
||||
{else} class="custom-control-label"
|
||||
{/if}>
|
||||
{if isset($filter.properties.color)}
|
||||
<span class="custom-control-input-color" style="background-color:{$filter.properties.color}"></span>
|
||||
{elseif isset($filter.properties.texture)}
|
||||
<span class="custom-control-input-color texture"
|
||||
style="background-image:url({$filter.properties.texture})"></span>
|
||||
{/if}
|
||||
{$filter.label}
|
||||
{*{if $filter.magnitude and $show_quantities}*}
|
||||
{*<span class="magnitude">({$filter.magnitude})</span>*}
|
||||
{*{/if}*}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{elseif $facet.widgetType == 'dropdown'}
|
||||
{block name='facet_item_dropdown'}
|
||||
<div id="facet_{$_expand_id}" class="search-filters__collapse collapse{if !$_collapse} show{/if}">
|
||||
<div class="py-1 {if $filter@first}pt-2{/if}">
|
||||
<select class="custom-select" data-action="search-select">
|
||||
{if $_collapse}
|
||||
<option value="">---</option>
|
||||
{/if}
|
||||
{foreach from=$facet.filters item="filter"}
|
||||
<option data-href="{$filter.nextEncodedFacetsURL}" {if $filter.active} selected="selected" {/if}>
|
||||
{$filter.label}
|
||||
{if $filter.magnitude and $show_quantities}
|
||||
({$filter.magnitude})
|
||||
{/if}
|
||||
</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{elseif $facet.widgetType == 'slider'}
|
||||
{block name='facet_item_slider'}
|
||||
{foreach from=$facet.filters item="filter"}
|
||||
|
||||
<div class="py-1 {if $filter@first}pt-2{/if}">
|
||||
<div id="facet_{$_expand_id}" class="search-filters__slider">
|
||||
<div class="js-input-range-slider-container">
|
||||
<div class="js-range-slider mt-1" data-slider-min="{$facet.properties.min}"
|
||||
data-slider-max="{$facet.properties.max}" data-slider-id="{$_expand_id}"
|
||||
data-slider-values="{$filter.value|@json_encode}" data-slider-unit="{$facet.properties.unit}"
|
||||
data-slider-label="{$facet.label}"
|
||||
data-slider-specifications="{$facet.properties.specifications|@json_encode}"
|
||||
data-slider-encoded-url="{$filter.nextEncodedFacetsURL}" id="slider-range_{$_expand_id}"></div>
|
||||
<div class="d-flex mt-3 mx-n2">
|
||||
<div class="px-2 search-filters__input-group">
|
||||
<input
|
||||
class="js-input-range-slider form-control form-control-sm text-center search-filters__input"
|
||||
type="text"
|
||||
{if $facet.filters.0.value}
|
||||
value="{$facet.filters.0.value.0}"
|
||||
{else}
|
||||
value="{$facet.properties.min}"
|
||||
{/if}
|
||||
data-unit="{$facet.properties.unit}"
|
||||
data-action="range-from"
|
||||
>
|
||||
</div>
|
||||
<div class="px-2 ml-auto search-filters__input-group">
|
||||
<input
|
||||
class="js-input-range-slider form-control form-control-sm text-center search-filters__input"
|
||||
type="text"
|
||||
{if $facet.filters.0.value}
|
||||
value="{$facet.filters.0.value.1}"
|
||||
{else}
|
||||
value="{$facet.properties.max}"
|
||||
{/if}
|
||||
data-unit="{$facet.properties.unit}"
|
||||
data-action="range-to"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/foreach}
|
||||
{/block}
|
||||
{/if}
|
||||
</section>
|
||||
{/foreach}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/if}
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user