mirror of https://github.com/4xmen/xshop.git
parent
c3d04f24ff
commit
f906151be3
@ -0,0 +1,47 @@
|
|||||||
|
<section class='VickushkaMainCategoriesSlider'>
|
||||||
|
<div class="{{gfx()['container']}}">
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
@foreach(getMainCategory() as $category)
|
||||||
|
<div class="col-md">
|
||||||
|
|
||||||
|
<div class="v-main-category" data-id="#v-cat-{{$category->id}}">
|
||||||
|
<img src="{{$category->svgUrl()}}" alt="svg {{$category->name}}">
|
||||||
|
<h4 class="text-center">
|
||||||
|
{{$category->name}}
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-center mb-5">
|
||||||
|
{{getSetting($data->area_name.'_'.$data->part.'_title')}}
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<div id="v-cats" class="text-center">
|
||||||
|
@foreach(getMainCategory() as $category)
|
||||||
|
<div class="v-item" id="v-cat-{{$category->id}}">
|
||||||
|
<h3 class="mb-3">
|
||||||
|
{{$category->name}}
|
||||||
|
</h3>
|
||||||
|
<h4 class="text-muted mb-4">
|
||||||
|
{{$category->subtitle}}
|
||||||
|
</h4>
|
||||||
|
<div class="row">
|
||||||
|
@foreach($category->children as $subCat)
|
||||||
|
<div class="col-md-4">
|
||||||
|
<a href="{{$subCat->webUrl()}}">
|
||||||
|
<img src="{{$subCat->imgUrl()}}" alt="{{$subCat->name}}" class="v-sub-img">
|
||||||
|
<h5>
|
||||||
|
{{$subCat->name}}
|
||||||
|
</h5>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
@ -0,0 +1,22 @@
|
|||||||
|
document.addEventListener('DOMContentLoaded',function () {
|
||||||
|
document.querySelectorAll('.v-main-category')?.forEach(function (el) {
|
||||||
|
el.addEventListener('click',function () {
|
||||||
|
document.querySelectorAll('.v-item').forEach(function (elm) {
|
||||||
|
elm.style.display = 'none';
|
||||||
|
});
|
||||||
|
// Get the element to be displayed
|
||||||
|
const targetId = el.getAttribute('data-id');
|
||||||
|
const targetElement = document.querySelector(targetId);
|
||||||
|
|
||||||
|
if (targetElement) {
|
||||||
|
targetElement.style.display = 'block';
|
||||||
|
|
||||||
|
// Scroll to the element
|
||||||
|
targetElement.scrollIntoView({
|
||||||
|
behavior: 'smooth', // Smooth scroll effect
|
||||||
|
block: 'start' // Scroll to the top of the element
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"name": "VickushkaMainCategoriesSlider",
|
||||||
|
"version": "1.0",
|
||||||
|
"author": "xStack",
|
||||||
|
"email": "xshop@xstack.ir",
|
||||||
|
"license": "GPL-3.0-or-later",
|
||||||
|
"url": "https:\/\/xstack.ir",
|
||||||
|
"author_url": "https:\/\/4xmen.ir",
|
||||||
|
"packages": []
|
||||||
|
}
|
@ -0,0 +1,40 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Resources\Views\Segments;
|
||||||
|
|
||||||
|
use App\Models\Part;
|
||||||
|
use App\Models\Setting;
|
||||||
|
|
||||||
|
class VickushkaMainCategoriesSlider
|
||||||
|
{
|
||||||
|
public static function onAdd(Part $part = null)
|
||||||
|
{
|
||||||
|
$setting = new Setting();
|
||||||
|
$setting->section = 'theme';
|
||||||
|
$setting->key = $part->area_name . '_' . $part->part.'_title';
|
||||||
|
$setting->value = 'categories here';
|
||||||
|
$setting->type = 'TEXT';
|
||||||
|
$setting->size = 6;
|
||||||
|
$setting->title = $part->area_name . ' ' . $part->part .' sub title';
|
||||||
|
$setting->save();
|
||||||
|
|
||||||
|
$setting = new Setting();
|
||||||
|
$setting->section = 'theme';
|
||||||
|
$setting->key = $part->area_name . '_' . $part->part.'_color';
|
||||||
|
$setting->value = '#ebfebe';
|
||||||
|
$setting->type = 'COLOR';
|
||||||
|
$setting->data = json_encode(['name' => 'vicka-bg-color']);
|
||||||
|
$setting->size = 6;
|
||||||
|
$setting->title = $part->area_name . ' ' . $part->part .' main color';
|
||||||
|
$setting->save();
|
||||||
|
}
|
||||||
|
public static function onRemove(Part $part = null)
|
||||||
|
{
|
||||||
|
Setting::where('key',$part->area_name . '_' . $part->part.'_title')->first()?->delete();
|
||||||
|
Setting::where('key',$part->area_name . '_' . $part->part.'_color')->first()?->delete();
|
||||||
|
}
|
||||||
|
public static function onMount(Part $part = null)
|
||||||
|
{
|
||||||
|
return $part;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,52 @@
|
|||||||
|
.VickushkaMainCategoriesSlider {
|
||||||
|
background: var(--vicka-bg-color);
|
||||||
|
// scss
|
||||||
|
padding-bottom: 4rem;
|
||||||
|
.container{
|
||||||
|
position: relative;
|
||||||
|
top: -4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-main-category{
|
||||||
|
background: var(--xshop-secondary);
|
||||||
|
border-radius: var(--xshop-border-radius);
|
||||||
|
color: var(--xshop-diff2);
|
||||||
|
padding: 1rem 0;
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
img{
|
||||||
|
width: 35%;
|
||||||
|
margin: 0 auto -4rem;
|
||||||
|
display: block;
|
||||||
|
background: var(--xshop-primary);
|
||||||
|
border-radius: 50%;
|
||||||
|
color: var(--xshop-diff);
|
||||||
|
padding: 1rem;
|
||||||
|
position: relative;
|
||||||
|
top: -5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#v-cats{
|
||||||
|
.v-item{
|
||||||
|
display: none;
|
||||||
|
margin: 2rem 0;
|
||||||
|
|
||||||
|
.v-sub-img{
|
||||||
|
width: 175px;
|
||||||
|
height: 175px;
|
||||||
|
object-fit: cover;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin: 1rem 0;
|
||||||
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.v-item:first-child{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
h1,h2,h3,h4,h5{
|
||||||
|
font-weight: 200;
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 264 KiB |
Loading…
Reference in New Issue