-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #900 from YYForReal/dev-omi-template-edu-2
feat(omi-template): 教育/课程模板 增加"名师风采"与"学生评价“
- Loading branch information
Showing
5 changed files
with
435 additions
and
68 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
## Swiper Props | ||
|
||
| Name | Type | Default | Description | | ||
| ---------- | ------- | ------------ | ------------------------------------------------ | | ||
| direction | string | 'horizontal' | Direction of the swiper (vertical or horizontal) | | ||
| loop | boolean | true | Whether the swiper should loop | | ||
| index | number | 0 | Initial index of the swiper | | ||
| navigation | boolean | true | Whether to show navigation buttons | | ||
| pagination | boolean | true | Whether to show pagination | | ||
| slidesPerView | string or number | "auto" | Number of slides to show per view. "auto" will automatically adjust the number of slides based on the viewport size. | | ||
| spaceBetween | number | 30 | Space between each slide in pixels. | | ||
| autoPlay | boolean | true | Whether to enable auto play. | | ||
|
||
## Swiper Events | ||
|
||
| Name | Parameters | Description | | ||
| ------ | ------------------------ | ---------------------------------- | | ||
| change | evt: CustomEvent<number> | Event triggered when slide changes | | ||
|
||
## Swiper 属性 | ||
|
||
| Name | Type | Default | Description | | ||
| ---------- | ------ | ------------ | --------------------------- | | ||
| direction | 字符串 | 'horizontal' | Swiper 的方向(垂直或水平) | | ||
| loop | 布尔值 | true | 是否启用 Swiper 循环播放 | | ||
| index | 数字 | 0 | Swiper 的初始索引 | | ||
| navigation | 布尔值 | true | 是否显示导航按钮 | | ||
| pagination | 布尔值 | true | 是否显示分页器 | | ||
|
||
## Swiper 事件 | ||
|
||
| Name | Parameter | Description | | ||
| ------ | ------------------------ | ---------------------- | | ||
| change | evt: CustomEvent<number> | 幻灯片更改时触发的事件 | |
212 changes: 212 additions & 0 deletions
212
packages/omi-templates/src/components/omiu/swiper/swiper.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,212 @@ | ||
import { tag, Component, classNames, OmiProps, bind, VNode } from 'omi' | ||
import { tailwind } from '@/tailwind' | ||
// import '../collapse/collapse' | ||
|
||
|
||
/** | ||
* copy from omiu/src/components/swiper | ||
* add Props . slidesPreView 、spaceBetween 、autoPlay | ||
*/ | ||
|
||
|
||
|
||
// https://swiperjs.com/get-started | ||
// import Swiper JS | ||
import Swiper from 'swiper' | ||
// import Swiper styles | ||
import swiperStyle from 'swiper/css?raw' | ||
|
||
interface Props { | ||
direction?: 'vertical' | 'horizontal' | ||
loop?: boolean | ||
index: number | ||
navigation?: boolean | ||
slidesPerView?: "auto" | number | ||
spaceBetween?: number, | ||
autoplay?: boolean | ||
} | ||
|
||
const theme = { | ||
paginationButton: | ||
'mx-[3px] box-content h-[3px] w-[30px] flex-initial cursor-pointer border-0 border-y-[10px] border-solid border-transparent bg-white bg-clip-padding p-0 -indent-[999px] transition-opacity duration-[600ms] ease-[cubic-bezier(0.25,0.1,0.25,1.0)] motion-reduce:transition-none', | ||
} | ||
|
||
@tag('o-swiper') | ||
export class SwiperComponent extends Component<Props> { | ||
static css = [ | ||
tailwind, | ||
swiperStyle, | ||
`:host { | ||
display: block; | ||
} | ||
`, | ||
] | ||
paginationDiv: any | ||
|
||
@bind | ||
onPreviusClick(evt: Event) { | ||
this.swiper?.slidePrev() | ||
this.fire('change', { | ||
index: this.swiper!.realIndex, | ||
nativeEvent: evt, | ||
}) | ||
} | ||
|
||
@bind | ||
onNextClick(evt: Event) { | ||
this.swiper?.slideNext() | ||
this.fire('change', { | ||
index: this.swiper!.realIndex, | ||
nativeEvent: evt, | ||
}) | ||
} | ||
|
||
@bind | ||
onPaginationClick(index: number, evt: Event) { | ||
// https://www.swiper.com.cn/api/methods/417.html | ||
this.swiper?.slideToLoop(index) | ||
this.fire('change', { | ||
index, | ||
nativeEvent: evt, | ||
}) | ||
} | ||
|
||
static defaultProps = { | ||
direction: 'horizontal', // vertical | horizontal | ||
loop: true, | ||
index: 0, | ||
navigation: true, | ||
pagination: true, | ||
slidesPerView: 1, | ||
spaceBetween: 30, | ||
autoplay: 1000 | ||
} | ||
|
||
swiper: Swiper | null = null | ||
|
||
installed(): void { | ||
this.swiper = new Swiper(this.rootElement!, { | ||
// Optional parameters | ||
direction: this.props.direction, | ||
loop: this.props.loop, | ||
initialSlide: this.props.index, | ||
slidesPerView: this.props.slidesPerView, | ||
spaceBetween:this.props.spaceBetween, | ||
autoplay:this.props.autoplay | ||
// And if we need scrollbar | ||
// scrollbar: { | ||
// el: '.swiper-scrollbar', | ||
// }, | ||
}) | ||
// try { | ||
// console.log('swiper',this.swiper) | ||
// this.swiper.slidesPerViewDynamic() // 动态设置slidesPerView | ||
// this.swiper.autoplay.start() // 自动轮播 | ||
// this.swiper.loopCreate() // 循环模式 | ||
// }catch(e){ | ||
// console.log(e) | ||
// } | ||
|
||
this.swiper.on('slideChange', () => { | ||
this.setActiveButton(this.swiper!.realIndex) | ||
}) | ||
} | ||
|
||
setActiveButton(index: number) { | ||
const buttons = this.paginationDiv.querySelectorAll('button') | ||
|
||
for (let i = 0; i < buttons.length; i++) { | ||
if (i === index) { | ||
buttons[i].classList.remove('opacity-50') | ||
} else { | ||
buttons[i].classList.add('opacity-50') | ||
} | ||
} | ||
} | ||
|
||
// 不需要更新,不然状态不一致 | ||
receiveProps() { | ||
return false | ||
} | ||
|
||
render(props: OmiProps<Props>) { | ||
return ( | ||
<div class="swiper"> | ||
<div class="swiper-wrapper"> | ||
{(props.children as VNode[])?.map((child) => { | ||
return <div class="swiper-slide">{child}</div> | ||
})} | ||
</div> | ||
|
||
{props.navigation && ( | ||
<button | ||
onClick={this.onPreviusClick} | ||
class=" absolute bottom-0 left-0 top-0 z-[1] flex w-[15%] items-center justify-center border-0 bg-none p-0 text-center text-white opacity-50 transition-opacity duration-150 ease-[cubic-bezier(0.25,0.1,0.25,1.0)] hover:text-white hover:no-underline hover:opacity-90 hover:outline-none focus:text-white focus:no-underline focus:opacity-90 focus:outline-none motion-reduce:transition-none" | ||
type="button" | ||
> | ||
<span class="inline-block h-8 w-8"> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 24 24" | ||
stroke-width="1.5" | ||
stroke="currentColor" | ||
class="h-6 w-6" | ||
> | ||
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 19.5L8.25 12l7.5-7.5"></path> | ||
</svg> | ||
</span> | ||
<span class="!absolute !-m-px !h-px !w-px !overflow-hidden !whitespace-nowrap !border-0 !p-0 ![clip:rect(0,0,0,0)]"> | ||
Previous | ||
</span> | ||
</button> | ||
)} | ||
|
||
{props.navigation && ( | ||
<button | ||
onClick={this.onNextClick} | ||
class=" absolute bottom-0 right-0 top-0 z-[1] flex w-[15%] items-center justify-center border-0 bg-none p-0 text-center text-white opacity-50 transition-opacity duration-150 ease-[cubic-bezier(0.25,0.1,0.25,1.0)] hover:text-white hover:no-underline hover:opacity-90 hover:outline-none focus:text-white focus:no-underline focus:opacity-90 focus:outline-none motion-reduce:transition-none" | ||
type="button" | ||
> | ||
<span> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 24 24" | ||
stroke-width="1.5" | ||
stroke="currentColor" | ||
class="h-6 w-6" | ||
> | ||
<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 4.5l7.5 7.5-7.5 7.5"></path> | ||
</svg> | ||
</span> | ||
<span class="!absolute !-m-px !h-px !w-px !overflow-hidden !whitespace-nowrap !border-0 !p-0 ![clip:rect(0,0,0,0)]"> | ||
Next | ||
</span> | ||
</button> | ||
)} | ||
|
||
{props.pagination && ( | ||
<div | ||
ref={(e) => { | ||
this.paginationDiv = e | ||
}} | ||
class="absolute bottom-0 left-0 right-0 z-[2] mx-[15%] mb-4 flex list-none justify-center p-0" | ||
> | ||
{props.children ? props.children.map((child, index) => { | ||
return ( | ||
<button | ||
onClick={(evt) => this.onPaginationClick(index, evt)} | ||
type="button" | ||
class={classNames(theme.paginationButton, { | ||
'opacity-50': props.index !== index, | ||
})} | ||
></button> | ||
) | ||
}) : null } | ||
</div> | ||
)} | ||
</div> | ||
) | ||
} | ||
} |
Oops, something went wrong.