chore: remove Panel component

This commit is contained in:
chenjiahan 2020-08-20 22:32:34 +08:00
parent 1e2f55db5a
commit 853417d470
8 changed files with 0 additions and 288 deletions

View File

@ -1,55 +0,0 @@
# Panel
### Deprecate Tip
The Panel component will be deprecated in version 3.0. Please use the Cell and Button components instead.
### Install
```js
import Vue from 'vue';
import { Panel } from 'vant';
Vue.use(Panel);
```
## Usage
### Basic Usage
```html
<van-panel title="Title" desc="Description" status="Status">
<div>Content</div>
</van-panel>
```
### Advanced Usage
```html
<van-panel title="Title" desc="Description" status="Status">
<div>Content</div>
<template #footer>
<van-button size="small">Button</van-button>
<van-button size="small" type="danger">Button</van-button>
</template>
</van-panel>
```
## API
### Props
| Attribute | Description | Type | Default |
| --------- | ----------- | -------- | ------- |
| icon | Left Icon | _string_ | - |
| title | Title | _string_ | - |
| desc | Description | _string_ | - |
| status | Status | _string_ | - |
### Slots
| Name | Description |
| ------- | ------------- |
| default | Default slot |
| header | Custom header |
| footer | Custom footer |

View File

@ -1,59 +0,0 @@
# Panel 面板
### 废弃提示
<b>由于使用场景有限Panel 组件将在 3.0 版本中废弃</b>,请直接使用 Cell 和 Button 组件代替
### 引入
```js
import Vue from 'vue';
import { Panel } from 'vant';
Vue.use(Panel);
```
## 代码演示
### 基础用法
面板只是一个容器,里面可以放入自定义的内容
```html
<van-panel title="标题" desc="描述信息" status="状态">
<div>内容</div>
</van-panel>
```
### 高级用法
使用`slot`自定义内容
```html
<van-panel title="标题" desc="描述信息" status="状态">
<div>内容</div>
<template #footer>
<van-button size="small">按钮</van-button>
<van-button size="small" type="danger">按钮</van-button>
</template>
</van-panel>
```
## API
### Props
| 参数 | 说明 | 类型 | 默认值 |
| ------ | ------------------------------------------ | -------- | ------ |
| title | 标题 | _string_ | - |
| desc | 描述 | _string_ | - |
| status | 状态 | _string_ | - |
| icon | 标题左侧[图标名称](#/zh-CN/icon)或图片链接 | _string_ | - |
### Slots
| 名称 | 说明 |
| ------- | ------------- |
| default | 自定义内容 |
| header | 自定义 header |
| footer | 自定义 footer |

View File

@ -1,41 +0,0 @@
<template>
<demo-section>
<demo-block :title="t('basicUsage')">
<van-panel :title="t('title')" :desc="t('desc')" :status="t('status')">
<div>{{ t('content') }}</div>
</van-panel>
</demo-block>
<demo-block :title="t('advancedUsage')">
<van-panel :title="t('title')" :desc="t('desc')" :status="t('status')">
<div>{{ t('content') }}</div>
<template #footer>
<van-button size="small">{{ t('button') }}</van-button>
<van-button size="small" type="danger">
{{ t('button') }}
</van-button>
</template>
</van-panel>
</demo-block>
</demo-section>
</template>
<script>
export default {};
</script>
<style lang="less">
.demo-panel {
.van-panel__footer {
text-align: right;
.van-button {
margin-left: 5px;
}
}
.van-panel__content {
padding: 20px;
}
}
</style>

View File

@ -1,13 +0,0 @@
@import '../style/var';
.van-panel {
background: @panel-background-color;
&__header-value {
color: @panel-header-value-color;
}
&__footer {
padding: @panel-footer-padding;
}
}

View File

@ -1,69 +0,0 @@
// Utils
import { createNamespace } from '../utils';
import { inherit } from '../utils/functional';
import { BORDER_TOP } from '../utils/constant';
// Components
import Cell from '../cell';
import CellGroup from '../cell-group';
// Types
import { CreateElement, RenderContext } from 'vue/types';
import { ScopedSlot, DefaultSlots } from '../utils/types';
export type PanelProps = {
icon?: string;
desc?: string;
title?: string;
status?: string;
};
export type PanelSlots = DefaultSlots & {
header?: ScopedSlot;
footer?: ScopedSlot;
};
const [createComponent, bem] = createNamespace('panel');
function Panel(
h: CreateElement,
props: PanelProps,
slots: PanelSlots,
ctx: RenderContext<PanelProps>
) {
const Content = () => [
slots.header ? (
slots.header()
) : (
<Cell
icon={props.icon}
label={props.desc}
title={props.title}
value={props.status}
class={bem('header')}
valueClass={bem('header-value')}
/>
),
<div class={bem('content')}>{slots.default && slots.default()}</div>,
slots.footer && (
<div class={[bem('footer'), BORDER_TOP]}>{slots.footer()}</div>
),
];
return (
<CellGroup
class={bem()}
scopedSlots={{ default: Content }}
{...inherit(ctx, true)}
/>
);
}
Panel.props = {
icon: String,
desc: String,
title: String,
status: String,
};
export default createComponent<PanelProps>(Panel);

View File

@ -1,39 +0,0 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`renders demo correctly 1`] = `
<div>
<div>
<div class="van-cell-group van-hairline--top-bottom van-panel">
<div class="van-cell van-panel__header">
<div class="van-cell__title"><span>标题</span>
<div class="van-cell__label">描述信息</div>
</div>
<div class="van-cell__value van-panel__header-value"><span>状态</span></div>
</div>
<div class="van-panel__content">
<div>内容</div>
</div>
</div>
</div>
<div>
<div class="van-cell-group van-hairline--top-bottom van-panel">
<div class="van-cell van-panel__header">
<div class="van-cell__title"><span>标题</span>
<div class="van-cell__label">描述信息</div>
</div>
<div class="van-cell__value van-panel__header-value"><span>状态</span></div>
</div>
<div class="van-panel__content">
<div>内容</div>
</div>
<div class="van-panel__footer van-hairline--top"><button class="van-button van-button--default van-button--small">
<div class="van-button__content"><span class="van-button__text">按钮</span></div>
</button> <button class="van-button van-button--danger van-button--small">
<div class="van-button__content"><span class="van-button__text">
按钮
</span></div>
</button></div>
</div>
</div>
</div>
`;

View File

@ -1,4 +0,0 @@
import Demo from '../demo';
import { snapshotDemo } from '../../../test/demo';
snapshotDemo(Demo);

View File

@ -355,10 +355,6 @@ module.exports = {
path: 'submit-bar',
title: 'SubmitBar 提交订单栏',
},
// {
// path: 'sku',
// title: 'Sku 商品规格',
// },
],
},
],
@ -689,10 +685,6 @@ module.exports = {
path: 'submit-bar',
title: 'SubmitBar',
},
// {
// path: 'sku',
// title: 'Sku',
// },
],
},
],