2018-09-06 21:42:06 +08:00
|
|
|
import { ThemeType } from "./index";
|
2018-09-06 21:42:37 +08:00
|
|
|
import warning from "../_util/warning";
|
2018-08-30 22:53:24 +08:00
|
|
|
|
2018-08-15 17:21:02 +08:00
|
|
|
// These props make sure that the SVG behaviours like general text.
|
|
|
|
// Reference: https://blog.prototypr.io/align-svg-icons-to-text-and-say-goodbye-to-font-icons-d44b3d7b26b4
|
|
|
|
export const svgBaseProps = {
|
2018-09-06 21:42:06 +08:00
|
|
|
width: "1em",
|
|
|
|
height: "1em",
|
|
|
|
fill: "currentColor",
|
|
|
|
["aria-hidden"]: "true",
|
2018-10-10 14:12:33 +08:00
|
|
|
focusable: "false",
|
2018-08-15 17:21:02 +08:00
|
|
|
};
|
2018-08-30 22:53:24 +08:00
|
|
|
|
|
|
|
const fillTester = /-fill$/;
|
|
|
|
const outlineTester = /-o$/;
|
|
|
|
const twoToneTester = /-twotone$/;
|
|
|
|
|
|
|
|
export function getThemeFromTypeName(type: string): ThemeType | null {
|
|
|
|
let result: ThemeType | null = null;
|
|
|
|
if (fillTester.test(type)) {
|
2018-09-06 21:42:06 +08:00
|
|
|
result = "filled";
|
2018-08-30 22:53:24 +08:00
|
|
|
} else if (outlineTester.test(type)) {
|
2018-09-06 21:42:06 +08:00
|
|
|
result = "outlined";
|
2018-08-30 22:53:24 +08:00
|
|
|
} else if (twoToneTester.test(type)) {
|
2018-09-06 21:42:06 +08:00
|
|
|
result = "twoTone";
|
2018-08-30 22:53:24 +08:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-09-02 19:48:57 +08:00
|
|
|
export function removeTypeTheme(type: string) {
|
2018-09-06 21:42:06 +08:00
|
|
|
return type
|
|
|
|
.replace(fillTester, "")
|
|
|
|
.replace(outlineTester, "")
|
|
|
|
.replace(twoToneTester, "");
|
2018-09-02 19:48:57 +08:00
|
|
|
}
|
|
|
|
|
2018-08-30 22:53:24 +08:00
|
|
|
export function withThemeSuffix(type: string, theme: ThemeType) {
|
|
|
|
let result = type;
|
2018-09-06 21:42:06 +08:00
|
|
|
if (theme === "filled") {
|
|
|
|
result += "-fill";
|
|
|
|
} else if (theme === "outlined") {
|
|
|
|
result += "-o";
|
|
|
|
} else if (theme === "twoTone") {
|
|
|
|
result += "-twotone";
|
2018-09-02 19:48:57 +08:00
|
|
|
} else {
|
|
|
|
warning(false, `This icon '${type}' has unknown theme '${theme}'`);
|
2018-08-30 22:53:24 +08:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2018-11-06 11:39:49 +08:00
|
|
|
|
|
|
|
// For alias or compatibility
|
|
|
|
export function alias(type: string) {
|
|
|
|
switch (type) {
|
|
|
|
case 'cross':
|
|
|
|
return 'close';
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|