Skip to content

Commit a7acc6a

Browse files
committedAug 28, 2023
feat: add anchor props.
1 parent ce0e28d commit a7acc6a

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed
 

‎core/README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ import Npm from '@uiw/react-shields/npm';
8585
export default function Demo() {
8686
return (
8787
<>
88-
<Npm.Version scope="@uiw" packageName="react-shields" />
88+
<Npm.Version scope="@uiw" packageName="react-shields" href="https://npmjs.com/@uiw/react-shields" />
8989
<Npm>
9090
<Npm.Version scope="@uiw" packageName="react-github-corners" />
9191
<Npm.Version packageName="hotkeys-js" />
@@ -112,7 +112,7 @@ import Npm from '@uiw/react-shields/npm';
112112
export default function Demo() {
113113
return (
114114
<>
115-
<Npm.Size scope="@uiw" packageName="react-shields" />
115+
<Npm.Size scope="@uiw" packageName="react-shields" href="https://npmjs.com/@uiw/react-shields" />
116116
<Npm>
117117
<Npm.Size format="minzip" scope="@uiw" packageName="react-github-corners" />
118118
<Npm.Size packageName="hotkeys-js" />
@@ -151,7 +151,7 @@ import Npm from '@uiw/react-shields/npm';
151151
export default function Demo() {
152152
return (
153153
<>
154-
<Npm.Downloads scope="@uiw" packageName="react-shields" />
154+
<Npm.Downloads scope="@uiw" packageName="react-shields" href="https://npmjs.com/@uiw/react-shields" />
155155
<Npm>
156156
<Npm.Downloads interval="dw" scope="@uiw" packageName="react-github-corners" />
157157
<Npm.Downloads packageName="hotkeys-js" />
@@ -170,9 +170,9 @@ import Github from '@uiw/react-shields/github';
170170
export default function Demo() {
171171
return (
172172
<>
173-
<Github.Issues user="uiwjs" repo="uiw" />
173+
<Github.Issues user="uiwjs" repo="uiw" href="https://github.com/uiwjs/react-shields/issues" />
174174
<Github user="uiwjs" repo="uiw">
175-
<Github.Issues type="issues" />
175+
<Github.Issues type="issues" href="https://github.com/uiwjs/react-shields/issues" />
176176
<Github.Issues type="issues-raw" />
177177
<Github.Issues type="issues-closed" />
178178
<Github.Issues type="issues-closed-raw" />
@@ -219,7 +219,7 @@ import Github from '@uiw/react-shields/github';
219219
export default function Demo() {
220220
return (
221221
<>
222-
<Github.Downloads user="uiwjs" repo="uiw" />
222+
<Github.Downloads user="uiwjs" repo="uiw" href="https://github.com/uiwjs/uiw/issues" />
223223
<Github user="uiwjs" repo="uiw">
224224
<Github.Downloads />
225225
<Github.Downloads total={false}/>
@@ -241,9 +241,9 @@ import Github from '@uiw/react-shields/github';
241241
export default function Demo() {
242242
return (
243243
<>
244-
<Github.Version user="uiwjs" repo="uiw" />
244+
<Github.Version user="uiwjs" repo="uiw" href="https://github.com/uiwjs/uiw/issues" />
245245
<Github user="uiwjs" repo="uiw">
246-
<Github.Version type="version-tag" />
246+
<Github.Version type="version-tag" href="https://github.com/uiwjs/uiw/issues" />
247247
<Github.Version type="package-json" />
248248
<Github.Version type="package-json" branch="dev" />
249249
<Github.Version user="jaywcjlove" repo="wxmp" type="manifest-json" />
@@ -265,7 +265,7 @@ import Github from '@uiw/react-shields/github';
265265
export default function Demo() {
266266
return (
267267
<>
268-
<Github.License user="uiwjs" repo="uiw" />
268+
<Github.License user="uiwjs" repo="uiw" href="https://github.com/uiwjs/uiw/blob/master/LICENSE" />
269269
<Github user="uiwjs" repo="uiw">
270270
<Github.License />
271271
</Github>
@@ -283,7 +283,7 @@ import Github from '@uiw/react-shields/github';
283283
export default function Demo() {
284284
return (
285285
<>
286-
<Github.Analysis user="uiwjs" repo="uiw" />
286+
<Github.Analysis user="uiwjs" repo="uiw" href="https://github.com/uiwjs/uiw/issues" />
287287
<Github user="uiwjs" repo="uiw">
288288
<Github.Analysis type="languages-top" />
289289
<Github.Analysis type="search" query="github" />
@@ -302,7 +302,7 @@ import Coverage from '@uiw/react-shields/coverage';
302302
export default function Demo() {
303303
return (
304304
<>
305-
<Coverage.Coverages user="jaywcjlove" repo="hotkeys" />
305+
<Coverage.Coverages user="jaywcjlove" repo="hotkeys" href="https://github.com/uiwjs/uiw/issues" />
306306
<Coverage user="jaywcjlove" repo="hotkeys">
307307
<Coverage.Coverages type="github" />
308308
<Coverage.Coverages type="github" />
@@ -321,7 +321,7 @@ import Coverage from '@uiw/react-shields/coverage';
321321
export default function Demo() {
322322
return (
323323
<>
324-
<Coverage.Codacy projectId="1c524e61cd8640e79b80d406eda8754b" />
324+
<Coverage.Codacy projectId="1c524e61cd8640e79b80d406eda8754b" href="https://github.com/uiwjs/uiw/issues" />
325325
<Coverage user="jaywcjlove" repo="hotkeys">
326326
<Coverage.Codacy projectId="1c524e61cd8640e79b80d406eda8754b" branch="master" />
327327
<Coverage.Codacy projectId="1c524e61cd8640e79b80d406eda8754b" />

‎core/src/common/Base.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
import React, { Component } from 'react';
2+
import type { AnchorHTMLAttributes, ImgHTMLAttributes } from 'react';
23

3-
export interface BaseProps {
4+
export interface BaseProps extends ImgHTMLAttributes<HTMLImageElement> {
45
platform?: 'github' | 'coveralls' | 'npm';
56
type?: string;
67
user?: string;
78
repo?: string;
89
base?: string;
910
href?: HTMLAnchorElement['href'];
1011
children?: React.ReactNode;
12+
anchor?: Omit<AnchorHTMLAttributes<HTMLAnchorElement>, 'href'>;
1113
}
12-
1314
export interface BaseState extends BaseProps {}
1415

1516
export default class Base<T> extends Component<BaseProps & T, BaseState & T> {
@@ -28,15 +29,14 @@ export default class Base<T> extends Component<BaseProps & T, BaseState & T> {
2829
}
2930
getUrl = () => '';
3031
render() {
31-
const { href } = this.state;
32+
const { href, anchor, ...other } = this.state;
3233
if (href) {
3334
return (
34-
<a href={href}>
35-
{' '}
36-
<img alt="" src={this.getUrl()} />{' '}
35+
<a {...anchor} href={href}>
36+
<img alt="" src={this.getUrl()} {...other} />
3737
</a>
3838
);
3939
}
40-
return <img alt="" src={this.getUrl()} />;
40+
return <img alt="" src={this.getUrl()} {...other} />;
4141
}
4242
}

0 commit comments

Comments
 (0)
Please sign in to comment.