Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(layout): demo拆解与规范 & 修复脚本在不同操作系统的正则匹配出错 #2016

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/doc-demo-extract-replace.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const extractH5Demos = (i) => {
__dirname,
`../src/packages/${args[i]}/demos/h5`
);
const tsxRegex = /:::demo\r\n\r\n```tsx\r\n([\s\S]*?)```\r\n\r\n:::/g;
const tsxRegex = /:::demo\r?\n\r?\n```tsx\r?\n([\s\S]*?)```\r?\n\r?\n:::/g;
let match;
if (!fs.existsSync(outputDirectory)) {
fs.mkdirSync(outputDirectory, { recursive: true });
Expand Down Expand Up @@ -49,7 +49,7 @@ const extractTaroDemos = (i) => {
__dirname,
`../src/packages/${args[i]}/demos/taro`
);
const tsxRegex = /:::demo\r\n\r\n```tsx\r\n([\s\S]*?)```\r\n\r\n:::/g;
const tsxRegex = /:::demo\r?\n\r?\n```tsx\r?\n([\s\S]*?)```\r?\n\r?\n:::/g;
let match;
if (!fs.existsSync(outputDirectory)) {
fs.mkdirSync(outputDirectory, { recursive: true });
Expand Down Expand Up @@ -88,7 +88,7 @@ const replaceAllDocs = (i) => {
filePaths.forEach((path, index) => {
let markdownContent = fs.readFileSync(path, "utf-8");

const tsxRegex = /:::demo\r\n\r\n```tsx\r\n([\s\S]*?)```\r\n\r\n:::/g;
const tsxRegex = /:::demo\r?\n\r?\n```tsx\r?\n([\s\S]*?)```\r?\n\r?\n:::/g;
const arr = markdownContent.match(tsxRegex);
for (let i = 0; i < arr.length; i++) {
markdownContent = markdownContent.replace(
Expand Down
139 changes: 7 additions & 132 deletions src/packages/layout/demo.taro.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
import React from 'react'
import Taro from '@tarojs/taro'
import { useTranslate } from '@/sites/assets/locale/taro'
import { Row, Col } from '@/packages/nutui.react.taro'
import '@/packages/layout/demo.scss'
import Header from '@/sites/components/header'

type TLayoutDemo = {
title1: string
title2: string
title3: string
}
import Demo1 from './demos/taro/demo1'
import Demo2 from './demos/taro/demo2'
import Demo3 from './demos/taro/demo3'

const LayoutDemo = () => {
const [translated] = useTranslate<TLayoutDemo>({
const [translated] = useTranslate({
'zh-CN': {
title1: '基础布局',
title2: '分栏间隔',
Expand Down Expand Up @@ -40,136 +36,15 @@ const LayoutDemo = () => {
<div className={`demo ${Taro.getEnv() === 'WEB' ? 'web' : ''} full`}>
<h2>{translated.title1}</h2>
<div className="box-item">
<Row>
<Col span="24">
<div className="layout-flex-content">span:24</div>
</Col>
</Row>
<Row>
<Col span="12">
<div className="layout-flex-content">span:12</div>
</Col>
<Col span="12">
<div className="layout-flex-content layout-flex-content-light">
span:12
</div>
</Col>
</Row>
<Row>
<Col span="8">
<div className="layout-flex-content">span:8</div>
</Col>
<Col span="8">
<div className="layout-flex-content layout-flex-content-light">
span:8
</div>
</Col>
<Col span="8">
<div className="layout-flex-content">span:8</div>
</Col>
</Row>
<Row>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
</Row>
<Demo1 />
</div>
<h2>{translated.title2}</h2>
<div className="box-item">
<Row gutter="10">
<Col span="8">
<div className="layout-flex-content">span:8</div>
</Col>
<Col span="8">
<div className="layout-flex-content layout-flex-content-light">
span:8
</div>
</Col>
<Col span="8">
<div className="layout-flex-content">span:8</div>
</Col>
</Row>
<Demo2 />
</div>
<h2>{translated.title3}</h2>
<div className="box-item">
<Row type="flex" wrap="nowrap">
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
</Row>
<Row type="flex" justify="center">
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
</Row>
<Row type="flex" justify="end">
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
</Row>
<Row type="flex" justify="space-between">
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
</Row>
<Row type="flex" justify="space-around">
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
</Row>
<Demo3 />
</div>
</div>
</>
Expand Down
140 changes: 7 additions & 133 deletions src/packages/layout/demo.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
import React from 'react'
import Row from '@/packages/row'
import Col from '@/packages/col'
import { useTranslate } from '../../sites/assets/locale'
import './demo.scss'

type TLayoutDemo = {
title1: string
title2: string
title3: string
}
import Demo1 from './demos/h5/demo1'
import Demo2 from './demos/h5/demo2'
import Demo3 from './demos/h5/demo3'

const LayoutDemo = () => {
const [translated] = useTranslate<TLayoutDemo>({
const [translated] = useTranslate({
'zh-CN': {
title1: '基础布局',
title2: '分栏间隔',
Expand All @@ -38,136 +33,15 @@ const LayoutDemo = () => {
<div className="demo full">
<h2>{translated.title1}</h2>
<div className="layout-box-item">
<Row>
<Col span="24">
<div className="layout-flex-content">span:24</div>
</Col>
</Row>
<Row>
<Col span="12">
<div className="layout-flex-content">span:12</div>
</Col>
<Col span="12">
<div className="layout-flex-content layout-flex-content-light">
span:12
</div>
</Col>
</Row>
<Row>
<Col span="8">
<div className="layout-flex-content">span:8</div>
</Col>
<Col span="8">
<div className="layout-flex-content layout-flex-content-light">
span:8
</div>
</Col>
<Col span="8">
<div className="layout-flex-content">span:8</div>
</Col>
</Row>
<Row>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
</Row>
<Demo1 />
</div>
<h2>{translated.title2}</h2>
<div className="layout-box-item">
<Row gutter="10">
<Col span="8">
<div className="layout-flex-content">span:8</div>
</Col>
<Col span="8">
<div className="layout-flex-content layout-flex-content-light">
span:8
</div>
</Col>
<Col span="8">
<div className="layout-flex-content">span:8</div>
</Col>
</Row>
<Demo2 />
</div>
<h2>{translated.title3}</h2>
<div className="layout-box-item">
<Row type="flex" wrap="nowrap">
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
</Row>
<Row type="flex" justify="center">
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
</Row>
<Row type="flex" justify="end">
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
</Row>
<Row type="flex" justify="space-between">
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
</Row>
<Row type="flex" justify="space-around">
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
<Col span="6">
<div className="layout-flex-content layout-flex-content-light">
span:6
</div>
</Col>
<Col span="6">
<div className="layout-flex-content">span:6</div>
</Col>
</Row>
<Demo3 />
</div>
</div>
</>
Expand Down
Loading
Loading