Skip to content

Commit 13a0ce1

Browse files
author
yang.zhang04
committed
feat: 新增组件
1 parent a85b65e commit 13a0ce1

File tree

510 files changed

+15518
-14815
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

510 files changed

+15518
-14815
lines changed

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ packages/doc-web/.docusaurus
1717
*.md
1818
docs
1919
packages/touch-emulator/tests/*
20+
packages/doc-web/src/theme/SearchBar/
21+
packages/ffsend/*

.eslintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
}
3535
],
3636
"jsx-a11y/no-autofocus": "off",
37-
"rules/require-default-props":"off"
37+
"rules/require-default-props":"off",
38+
"@typescript-eslint/no-var-requires":"off"
3839
}
3940
}

.gitignore

-6
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,3 @@ dist
7171
# next.js
7272
.next/
7373
out/
74-
75-
# eslint
76-
.eslintcache
77-
78-
# stylelint
79-
.stylelintcache

.stylelintignore

-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@ packages/touch-emulator/tests/*
1111
packages/touch-emulator/touch-emulator.js
1212
coverage
1313
packages/h5/dist-custom-elements
14-

.stylelintrc.js

-6
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,5 @@ module.exports = {
2222
'declaration-block-no-redundant-longhand-properties': null,
2323
'selector-class-pattern': null,
2424
'keyframes-name-pattern': null,
25-
"selector-pseudo-class-no-unknown": [
26-
true,
27-
{
28-
"ignorePseudoClasses": ["global"]
29-
}
30-
]
3125
},
3226
};

package.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@
1515
"postinstall": "npm run build:lint && npm run build:cli && npm run build:compiler && pnpm run build:h5 && pnpm run build:react && pnpm run build:vue",
1616
"pre-commit": "lint-staged -c .lintstagedrc.mjs",
1717
"prepare": "husky install",
18-
"prettier": "prettier -c --write **/* --cache",
19-
"lint": "eslint . --fix --quiet --cache",
20-
"stylelint": "stylelint **/*.{css,less} --cache",
21-
"stylelint:fix": "pnpm stylelint --fix",
18+
"prettier": "prettier -c --write **/*",
19+
"lint": "eslint . --fix --quiet",
20+
"stylelint": "stylelint **/*.{css,less}",
21+
"stylelint:fix": "stylelint **/*.{css,less} --fix",
2222
"release": "titian-cli release",
23-
"format": "pnpm lint && pnpm stylelint:fix && pnpm prettier",
2423
"start": "run-p start:h5 start:react start:eg:react",
2524
"start-vue": "run-p start:h5 start:vue start:eg:vue",
2625
"start:h5": "pnpm --filter @titian-design/h5 run start",

packages/cli/CHANGELOG.md

-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +0,0 @@
1-
# 0.1.0 (2023-01-06)
2-
3-
### Features
4-
5-
- **init:** first commit ([985a83b](https://github.com/weimob-tech/titian-h5/commit/985a83bb969fedb16b0343839692e2f2fe5b59a1))

packages/cli/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
"scripts": {
2626
"prepublishOnly": "run-p build-*",
2727
"build": "run-p build-*",
28-
"build-bundle": "rollup -c rollup.config.ts --configPlugin typescript",
29-
"watch": "rollup -c rollup.config.ts --configPlugin typescript -w",
28+
"build-bundle": "rollup -c rollup.config.ts --configPlugin typescript --bundleConfigAsCjs",
29+
"watch": "rollup -c rollup.config.ts --configPlugin typescript -w --bundleConfigAsCjs",
3030
"build-types": "tsc -p src --emitDeclarationOnly"
3131
},
3232
"dependencies": {
@@ -60,7 +60,7 @@
6060
"@types/user-home": "^2.0.0",
6161
"@types/uuid": "^8.3.4",
6262
"npm-run-all": "^4.1.5",
63-
"rollup": "^2.72.1",
63+
"rollup": "^3.21.0",
6464
"tslib": "^2.4.0",
6565
"typescript": "^4.5.4"
6666
},

packages/cli/rollup.config.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,20 @@ const sharedConfig = {
77
// eslint-disable-next-line global-require, @typescript-eslint/no-var-requires
88
...Object.keys(require('./package.json').dependencies),
99
],
10-
plugins: [nodeResolve(), typescript()],
10+
plugins: [
11+
nodeResolve(),
12+
typescript({
13+
allowSyntheticDefaultImports: true,
14+
}),
15+
],
1116
};
1217

1318
const config: RollupOptions = {
1419
input: './src/index.ts',
1520
output: {
1621
file: `dist/index.js`,
1722
format: 'cjs',
23+
exports: 'auto',
1824
},
1925
...sharedConfig,
2026
};
@@ -24,6 +30,7 @@ const cliConfig: RollupOptions = {
2430
output: {
2531
file: 'dist/cli.js',
2632
format: 'cjs',
33+
exports: 'auto',
2734
},
2835
...sharedConfig,
2936
};

packages/cli/src/exec/index.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { spawn } from '../utils/spawn';
66
import { resolveConfig, InlineConfig } from './config';
77

88
export async function exec(args$0: InlineConfig, options$0: InlineConfig | Command, command$0: Command): Promise<void> {
9-
const command: Command = command$0 || options$0;
9+
const command: any = command$0 || options$0;
1010
const options: InlineConfig = (command$0 ? options$0 : args$0) as InlineConfig;
1111
const commandName = command.name();
1212
const config = await resolveConfig(
@@ -43,6 +43,9 @@ export async function exec(args$0: InlineConfig, options$0: InlineConfig | Comma
4343
// @ts-ignore
4444
logger.info(`run time is ${chalk.yellowBright(`${(performance.now() - global.__start_time).toFixed(2)}ms`)}`);
4545
}
46+
if (e !== 0) {
47+
child.kill('SIGINT');
48+
}
4649
process.exit(e ?? 1);
4750
});
4851

packages/cli/src/models/Command.ts

+34-1
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,27 @@
11
import type { Logger } from 'log4js';
22
import * as readPkgUp from 'read-pkg-up';
33
import { satisfies } from 'semver';
4-
import { SyncHook } from 'tapable';
4+
import { SyncHook, AsyncSeriesHook } from 'tapable';
55
import { loadConfigFromFile, ResolvedConfig } from '../exec/config';
66
import logger from '../utils/logger';
77

88
export interface CommandHooks {
99
beforeInit: SyncHook<never>;
10+
beforeInitAsync: AsyncSeriesHook<never>;
1011
init: SyncHook<never>;
12+
initAsync: AsyncSeriesHook<never>;
1113
afterInit: SyncHook<never>;
14+
afterInitAsync: AsyncSeriesHook<never>;
1215
beforeRun: SyncHook<never>;
16+
beforeRunAsync: AsyncSeriesHook<never>;
1317
run: SyncHook<never>;
18+
runAsync: AsyncSeriesHook<never>;
1419
afterRun: SyncHook<never>;
20+
afterRunAsync: AsyncSeriesHook<never>;
1521
watch: SyncHook<never>;
22+
watchAsync: AsyncSeriesHook<never>;
1623
release: SyncHook<string | any>;
24+
releaseAsync: AsyncSeriesHook<string | any>;
1725
}
1826

1927
export type HookFun = (hook: CommandHooks) => void;
@@ -69,37 +77,52 @@ export default class Command {
6977
afterRun: new SyncHook(),
7078
watch: new SyncHook(),
7179
release: new SyncHook(['params']),
80+
81+
beforeInitAsync: new AsyncSeriesHook(),
82+
initAsync: new AsyncSeriesHook(),
83+
afterInitAsync: new AsyncSeriesHook(),
84+
beforeRunAsync: new AsyncSeriesHook(),
85+
runAsync: new AsyncSeriesHook(),
86+
afterRunAsync: new AsyncSeriesHook(),
87+
watchAsync: new AsyncSeriesHook(),
88+
releaseAsync: new AsyncSeriesHook(['releaseInfo']),
7289
};
7390

7491
this.logger = logger;
7592
}
7693

7794
protected async beforeInit() {
7895
this.hooks.beforeInit.call();
96+
await this.toPromise(this.hooks.beforeInitAsync);
7997
}
8098

8199
protected async init() {
82100
this.hooks.init.call();
101+
await this.toPromise(this.hooks.initAsync);
83102
this.logger.error(`init methods must be implement`);
84103
process.exit(1);
85104
}
86105

87106
protected async afterInit() {
88107
this.hooks.afterInit.call();
108+
await this.toPromise(this.hooks.afterInitAsync);
89109
}
90110

91111
protected async beforeRun() {
92112
this.hooks.beforeRun.call();
113+
await this.toPromise(this.hooks.beforeRunAsync);
93114
}
94115

95116
protected async run() {
96117
this.hooks.run.call();
118+
await this.toPromise(this.hooks.runAsync);
97119
this.logger.error(`run methods must be implement`);
98120
process.exit(1);
99121
}
100122

101123
protected async afterRun() {
102124
this.hooks.afterRun.call();
125+
await this.toPromise(this.hooks.afterRunAsync);
103126
}
104127

105128
private async getConfig() {
@@ -137,4 +160,14 @@ export default class Command {
137160
}
138161
}
139162
}
163+
164+
toPromise(hook: AsyncSeriesHook<any>, arg?: any) {
165+
return new Promise<void>(resolve => {
166+
if (arg) {
167+
hook.callAsync(arg, resolve);
168+
} else {
169+
hook.callAsync(resolve);
170+
}
171+
});
172+
}
140173
}

packages/cli/src/models/package.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { normalizePath } from '../utils';
1010
import logger from '../utils/logger';
1111
import { getPackageRegistry } from '../utils/npminfo';
1212

13-
export interface PacakgeOptions {
13+
export interface PackageOptions {
1414
targetPath: string;
1515
storeDir?: string;
1616
version?: string;
@@ -45,7 +45,7 @@ export default class Package {
4545

4646
registryUrl: string;
4747

48-
constructor(options: PacakgeOptions) {
48+
constructor(options: PackageOptions) {
4949
this.targetPath = options.targetPath;
5050
this.storeDir = options.storeDir || `${this.targetPath}/node_modules`;
5151
this.name = options.name;

packages/cli/src/prepare.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { existsSync } from 'fs';
2+
import { homedir } from 'os';
23
import chalk from 'chalk';
34
import type { ParsedArgs } from 'minimist';
45
import * as readPkgUp from 'read-pkg-up';
5-
import userHome from 'user-home';
66
import logger from './utils/logger';
77
import { getPackageRegistry } from './utils/npminfo';
88

@@ -22,6 +22,7 @@ const checkRoot = () => {
2222
};
2323

2424
const checkUserHome = () => {
25+
const userHome = homedir();
2526
logger.debug(`user home: ${userHome}`);
2627

2728
if (!userHome || !existsSync(userHome)) {

packages/cli/src/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
// node support table: https://node.green/#ES2020-features-optional-chaining-operator-----
77
"target": "ES2019",
88
"outDir": "../dist",
9-
"module": "commonjs",
9+
"module": "CommonJS",
1010
"lib": ["ESNext", "DOM"],
11-
"sourceMap": true,
11+
"allowSyntheticDefaultImports": true,
1212
"resolveJsonModule": true
1313
}
1414
}

packages/cli/src/utils/spawn.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { spawn as spawn$0, SpawnOptions } from 'child_process';
2-
import execa, { CommonOptions } from 'execa';
2+
import type { CommonOptions } from 'execa';
33
import logger from './logger';
44

55
export const spawn = (command: string, args: string[], options: SpawnOptions) => {
@@ -13,5 +13,7 @@ export const spawn = (command: string, args: string[], options: SpawnOptions) =>
1313
};
1414

1515
export function exec(bin: string, args: string[], opts: CommonOptions<'utf8'> = {}) {
16+
// eslint-disable-next-line global-require, @typescript-eslint/no-var-requires
17+
const execa = require('execa');
1618
return execa(bin, args, { stdio: 'inherit', ...opts });
1719
}

packages/compiler/CHANGELOG.md

-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +0,0 @@
1-
# 0.1.0 (2023-01-06)
2-
3-
### Features
4-
5-
- **init:** first commit ([985a83b](https://github.com/weimob-tech/titian-h5/commit/985a83bb969fedb16b0343839692e2f2fe5b59a1))

packages/compiler/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"dist"
1414
],
1515
"scripts": {
16-
"build": "rollup -c rollup.config.ts --configPlugin typescript",
16+
"build": "rollup -c rollup.config.ts --configPlugin typescript --bundleConfigAsCjs",
1717
"prepublishOnly": "npm run build",
18-
"start": "rollup -c rollup.config.ts --configPlugin typescript -w"
18+
"start": "rollup -c rollup.config.ts --configPlugin typescript -w --bundleConfigAsCjs"
1919
},
2020
"dependencies": {
2121
"@pnpm/find-workspace-packages": "^4.0.5",
@@ -41,7 +41,7 @@
4141
"@types/node": "17.0.29",
4242
"@types/prompts": "^2.0.14",
4343
"@types/semver": "^7.3.9",
44-
"rollup": "^2.72.1",
44+
"rollup": "^3.21.0",
4545
"tslib": "^2.4.0",
4646
"typescript": "^4.5.4"
4747
}

packages/compiler/src/release.ts

+6-5
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ export default class Release extends Command {
9898
}
9999

100100
async createMergeRequest() {
101-
const { projectId } = this.config;
102-
if (projectId) {
101+
const { projectId, env } = this.config;
102+
if (projectId && env.TITIAN_PRIVATE_TOKEN) {
103103
const config = {
104104
method: 'post',
105-
url: ``,
105+
url: '',
106106
headers: {
107107
'PRIVATE-TOKEN': '',
108108
'Content-Type': 'application/json',
@@ -311,7 +311,8 @@ export default class Release extends Command {
311311
if (fs.existsSync('pnpm-workspace.yaml')) {
312312
this.packageManager = 'pnpm';
313313
this.logger.info('Manage packages with pnpm');
314-
const pkgs = await findPnpmWorkspacePkg(this.root);
314+
// @ts-ignore
315+
const pkgs = await findPnpmWorkspacePkg.default(this.root);
315316
pkgs.forEach(({ dir, manifest }) => {
316317
if (manifest.name) {
317318
packagesInfo[manifest.name] = {
@@ -621,7 +622,7 @@ export default class Release extends Command {
621622
if (pkg.publish) {
622623
await this.genChangelog(pkg);
623624
const { stdout } = await this.exec('git', ['diff'], { stdio: 'pipe' });
624-
const tag = pkgName === '@titian-design/weapp' ? `v${pkg.nextVersion}` : `${pkgName}@${pkg.nextVersion}`;
625+
const tag = pkgName === this.config.mainPackage ? `v${pkg.nextVersion}` : `${pkgName}@${pkg.nextVersion}`;
625626
if (this.allTags.includes(tag)) {
626627
this.logger.warn(`${tag} 已经存在了,将删除原先的 tag`);
627628
await this.exec('git', ['tag', '-d', tag], { stdio: 'pipe' });

packages/compiler/src/warehouse.ts

+4
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,10 @@ class Warehouse {
132132
release: true,
133133
data: { msgtype: 'markdown', markdown: { content: publishInfo } },
134134
});
135+
await this.release.toPromise(this.release.hooks.releaseAsync, {
136+
release: true,
137+
data: { msgtype: 'markdown', markdown: { content: publishInfo } },
138+
});
135139
} catch (e) {
136140
this.release.logger.error(e);
137141
try {

0 commit comments

Comments
 (0)