first commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
"use strict";
|
||||
var uni_modules_wotDesignUni_components_common_props = require("../common/props.js");
|
||||
const textProps = {
|
||||
...uni_modules_wotDesignUni_components_common_props.baseProps,
|
||||
type: uni_modules_wotDesignUni_components_common_props.makeStringProp("default"),
|
||||
text: uni_modules_wotDesignUni_components_common_props.makeNumericProp(""),
|
||||
size: uni_modules_wotDesignUni_components_common_props.makeStringProp(""),
|
||||
mode: uni_modules_wotDesignUni_components_common_props.makeStringProp("text"),
|
||||
decoration: uni_modules_wotDesignUni_components_common_props.makeStringProp("none"),
|
||||
call: uni_modules_wotDesignUni_components_common_props.makeBooleanProp(false),
|
||||
bold: uni_modules_wotDesignUni_components_common_props.makeBooleanProp(false),
|
||||
format: uni_modules_wotDesignUni_components_common_props.makeBooleanProp(false),
|
||||
color: uni_modules_wotDesignUni_components_common_props.makeStringProp(""),
|
||||
prefix: String,
|
||||
suffix: String,
|
||||
lines: Number,
|
||||
lineHeight: uni_modules_wotDesignUni_components_common_props.makeStringProp(""),
|
||||
customStyle: uni_modules_wotDesignUni_components_common_props.makeStringProp(""),
|
||||
customClass: uni_modules_wotDesignUni_components_common_props.makeStringProp("")
|
||||
};
|
||||
exports.textProps = textProps;
|
||||
@@ -0,0 +1,131 @@
|
||||
"use strict";
|
||||
var common_vendor = require("../../../../common/vendor.js");
|
||||
var uni_modules_wotDesignUni_components_common_util = require("../common/util.js");
|
||||
var uni_modules_wotDesignUni_components_wdText_types = require("./types.js");
|
||||
var uni_modules_wotDesignUni_dayjs_index = require("../../dayjs/index.js");
|
||||
require("../common/AbortablePromise.js");
|
||||
require("../common/props.js");
|
||||
require("../../dayjs/constant.js");
|
||||
require("../../dayjs/locale/en.js");
|
||||
require("../../dayjs/utils.js");
|
||||
const __default__ = {
|
||||
name: "wd-text",
|
||||
options: {
|
||||
virtualHost: true,
|
||||
addGlobalClass: true,
|
||||
styleIsolation: "shared"
|
||||
}
|
||||
};
|
||||
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
||||
...__default__,
|
||||
props: uni_modules_wotDesignUni_components_wdText_types.textProps,
|
||||
emits: ["click"],
|
||||
setup(__props, { emit }) {
|
||||
const props = __props;
|
||||
const textClass = common_vendor.ref("");
|
||||
common_vendor.watch(
|
||||
() => ({
|
||||
type: props.type,
|
||||
text: props.text,
|
||||
mode: props.mode,
|
||||
color: props.color,
|
||||
bold: props.bold,
|
||||
lines: props.lines,
|
||||
format: props.format
|
||||
}),
|
||||
({ type }) => {
|
||||
const types = ["primary", "error", "warning", "success", "default"];
|
||||
if (type && !types.includes(type)) {
|
||||
console.error(`type must be one of ${types.toString()}`);
|
||||
}
|
||||
computeTextClass();
|
||||
},
|
||||
{ deep: true, immediate: true }
|
||||
);
|
||||
const rootClass = common_vendor.computed$1(() => {
|
||||
return `wd-text ${props.customClass} ${textClass.value}`;
|
||||
});
|
||||
const rootStyle = common_vendor.computed$1(() => {
|
||||
const rootStyle2 = {};
|
||||
if (props.color) {
|
||||
rootStyle2["color"] = props.color;
|
||||
}
|
||||
if (props.size) {
|
||||
rootStyle2["font-size"] = `${props.size}`;
|
||||
}
|
||||
if (props.lineHeight) {
|
||||
rootStyle2["line-height"] = `${props.lineHeight}`;
|
||||
}
|
||||
if (props.decoration) {
|
||||
rootStyle2["text-decoration"] = `${props.decoration}`;
|
||||
}
|
||||
return `${uni_modules_wotDesignUni_components_common_util.objToStyle(rootStyle2)}${props.customStyle}`;
|
||||
});
|
||||
function computeTextClass() {
|
||||
const { type, color, bold, lines } = props;
|
||||
const textClassList = [];
|
||||
if (!color) {
|
||||
textClassList.push(`is-${type}`);
|
||||
}
|
||||
if (uni_modules_wotDesignUni_components_common_util.isDef(lines)) {
|
||||
textClassList.push(`is-lines-${lines}`);
|
||||
}
|
||||
bold && textClassList.push("is-bold");
|
||||
textClass.value = textClassList.join(" ");
|
||||
}
|
||||
function formatText(text, format, mode) {
|
||||
if (format) {
|
||||
if (mode === "phone") {
|
||||
return text.replace(/^(\d{3})\d{4}(\d{4})$/, "$1****$2");
|
||||
} else if (mode === "name") {
|
||||
return text.replace(/^(.).*(.)$/, "$1**$2");
|
||||
} else {
|
||||
throw new Error("mode must be one of phone or name for encryption");
|
||||
}
|
||||
}
|
||||
return text;
|
||||
}
|
||||
function formatNumber(num) {
|
||||
num = Number(num).toFixed(2);
|
||||
const x = num.split(".");
|
||||
let x1 = x[0];
|
||||
const x2 = x.length > 1 ? "." + x[1] : "";
|
||||
const rgx = /(\d+)(\d{3})/;
|
||||
while (rgx.test(x1)) {
|
||||
x1 = x1.replace(rgx, "$1,$2");
|
||||
}
|
||||
return x1 + x2;
|
||||
}
|
||||
const formattedText = common_vendor.computed$1(() => {
|
||||
const { text, mode, format } = props;
|
||||
if (mode === "date") {
|
||||
return uni_modules_wotDesignUni_dayjs_index.dayjs(Number(text)).format("YYYY-MM-DD");
|
||||
}
|
||||
if (mode === "price") {
|
||||
return formatNumber(text);
|
||||
}
|
||||
return formatText(`${text}`, format, mode);
|
||||
});
|
||||
function handleClick(event) {
|
||||
emit("click", event);
|
||||
}
|
||||
return (_ctx, _cache) => {
|
||||
return common_vendor.e({
|
||||
a: _ctx.$slots.prefix || _ctx.prefix
|
||||
}, _ctx.$slots.prefix || _ctx.prefix ? {
|
||||
b: common_vendor.t(_ctx.prefix)
|
||||
} : {}, {
|
||||
c: common_vendor.t(common_vendor.unref(formattedText)),
|
||||
d: _ctx.$slots.suffix || _ctx.suffix
|
||||
}, _ctx.$slots.suffix || _ctx.suffix ? {
|
||||
e: common_vendor.t(_ctx.suffix)
|
||||
} : {}, {
|
||||
f: common_vendor.o(handleClick),
|
||||
g: common_vendor.n(common_vendor.unref(rootClass)),
|
||||
h: common_vendor.s(common_vendor.unref(rootStyle))
|
||||
});
|
||||
};
|
||||
}
|
||||
});
|
||||
var Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-3c0ceda2"], ["__file", "D:/\u7F51\u6291\u4E91Time/\u79C1\u6D3B/2000\u7B97\u5366/src/uni_modules/wot-design-uni/components/wd-text/wd-text.vue"]]);
|
||||
wx.createComponent(Component);
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<text bindtap="{{f}}" class="{{['data-v-3c0ceda2', g]}}" style="{{h}}"><block wx:if="{{a}}"><block wx:if="{{$slots.prefix}}"><slot name="prefix"></slot></block><block wx:else>{{b}}</block></block><text class="data-v-3c0ceda2">{{c}}</text><block wx:if="{{d}}"><block wx:if="{{$slots.suffix}}"><slot name="suffix"></slot></block><block wx:else>{{e}}</block></block></text>
|
||||
+237
@@ -0,0 +1,237 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
/**
|
||||
* 辅助函数
|
||||
*/
|
||||
/**
|
||||
* SCSS 配置项:命名空间以及BEM
|
||||
*/
|
||||
/* 转换成字符串 */
|
||||
/* 判断是否存在 Modifier */
|
||||
/* 判断是否存在伪类 */
|
||||
/**
|
||||
* 主题色切换
|
||||
* @params $theme-color 主题色
|
||||
* @params $type 变暗’dark‘ 变亮 'light'
|
||||
* @params $mix-color 自己设置的混色
|
||||
*/
|
||||
/**
|
||||
* 颜色结果切换, 如果开启线性渐变色 使用渐变色,如果没有开启,那么使用主题色
|
||||
* @params $open-linear 是否开启线性渐变色
|
||||
* @params $deg 渐变色角度
|
||||
* @params $theme-color 当前配色
|
||||
* @params [Array] $set 主题色明暗设置,与 $color-list 数量对应
|
||||
* @params [Array] $color-list 渐变色顺序, $color-list 和 $per-list 数量相同
|
||||
* @params [Array] $per-list 渐变色比例
|
||||
*/
|
||||
/**
|
||||
* UI规范基础变量
|
||||
*/
|
||||
/*----------------------------------------- Theme color. start ----------------------------------------*/
|
||||
/* 主题颜色 */
|
||||
/* 辅助色 */
|
||||
/* 文字颜色(默认浅色背景下 */
|
||||
/* 暗黑模式 */
|
||||
/* 图形颜色 */
|
||||
/*----------------------------------------- Theme color. end -------------------------------------------*/
|
||||
/*-------------------------------- Theme color application size. start --------------------------------*/
|
||||
/* 文字字号 */
|
||||
/* 文字字重 */
|
||||
/* 尺寸 */
|
||||
/*-------------------------------- Theme color application size. end --------------------------------*/
|
||||
/* component var */
|
||||
/* action-sheet */
|
||||
/* badge */
|
||||
/* button */
|
||||
/* cell */
|
||||
/* calendar */
|
||||
/* checkbox */
|
||||
/* collapse */
|
||||
/* divider */
|
||||
/* drop-menu */
|
||||
/* input-number */
|
||||
/* input */
|
||||
/* textarea */
|
||||
/* loadmore */
|
||||
/* message-box */
|
||||
/* notice-bar */
|
||||
/* pagination */
|
||||
/* picker */
|
||||
/* col-picker */
|
||||
/* overlay */
|
||||
/* popup */
|
||||
/* progress */
|
||||
/* radio */
|
||||
/* search */
|
||||
/* slider */
|
||||
/* sort-button */
|
||||
/* steps */
|
||||
/* switch */
|
||||
/* tabs */
|
||||
/* tag */
|
||||
/* toast */
|
||||
/* loading */
|
||||
/* tooltip */
|
||||
/* popover */
|
||||
/* grid-item */
|
||||
/* statustip */
|
||||
/* card */
|
||||
/* upload */
|
||||
/* curtain */
|
||||
/* notify */
|
||||
/* skeleton */
|
||||
/* circle */
|
||||
/* swiper */
|
||||
/* swiper-nav */
|
||||
/* segmented */
|
||||
/* tabbar */
|
||||
/* tabbar-item */
|
||||
/* navbar */
|
||||
/* navbar-capsule */
|
||||
/* table */
|
||||
/* sidebar */
|
||||
/* sidebar-item */
|
||||
/* fab */
|
||||
/* count-down */
|
||||
/* keyboard */
|
||||
/* number-keyboard */
|
||||
/* passwod-input */
|
||||
/* form-item */
|
||||
/* backtop */
|
||||
/* index-bar */
|
||||
/* text */
|
||||
/* video-preview */
|
||||
/* img-cropper */
|
||||
/* floating-panel */
|
||||
/* signature */
|
||||
/**
|
||||
* 混合宏
|
||||
*/
|
||||
/**
|
||||
* SCSS 配置项:命名空间以及BEM
|
||||
*/
|
||||
/**
|
||||
* 辅助函数
|
||||
*/
|
||||
/**
|
||||
* SCSS 配置项:命名空间以及BEM
|
||||
*/
|
||||
/* 转换成字符串 */
|
||||
/* 判断是否存在 Modifier */
|
||||
/* 判断是否存在伪类 */
|
||||
/**
|
||||
* 主题色切换
|
||||
* @params $theme-color 主题色
|
||||
* @params $type 变暗’dark‘ 变亮 'light'
|
||||
* @params $mix-color 自己设置的混色
|
||||
*/
|
||||
/**
|
||||
* 颜色结果切换, 如果开启线性渐变色 使用渐变色,如果没有开启,那么使用主题色
|
||||
* @params $open-linear 是否开启线性渐变色
|
||||
* @params $deg 渐变色角度
|
||||
* @params $theme-color 当前配色
|
||||
* @params [Array] $set 主题色明暗设置,与 $color-list 数量对应
|
||||
* @params [Array] $color-list 渐变色顺序, $color-list 和 $per-list 数量相同
|
||||
* @params [Array] $per-list 渐变色比例
|
||||
*/
|
||||
/**
|
||||
* BEM,定义块(b)
|
||||
*/
|
||||
/* 定义元素(e),对于伪类,会自动将 e 嵌套在 伪类 底下 */
|
||||
/* 此方法用于生成穿透样式 */
|
||||
/* 定义元素(e),对于伪类,会自动将 e 嵌套在 伪类 底下 */
|
||||
/* 定义状态(m) */
|
||||
/* 定义状态(m) */
|
||||
/* 对于需要需要嵌套在 m 底下的 e,调用这个混合宏,一般在切换整个组件的状态,如切换颜色的时候 */
|
||||
/* 状态,生成 is-$state 类名 */
|
||||
/**
|
||||
* 常用混合宏
|
||||
*/
|
||||
/* 单行超出隐藏 */
|
||||
/* 多行超出隐藏 */
|
||||
/* 清除浮动 */
|
||||
/* 0.5px 边框 指定方向*/
|
||||
/* 0.5px 边框 环绕 */
|
||||
/**
|
||||
* 三角形实现尖角样式,适用于背景透明情况
|
||||
* @param $size 三角形高,底边为 $size * 2
|
||||
* @param $bg 三角形背景颜色
|
||||
*/
|
||||
/**
|
||||
* 正方形实现尖角样式,适用于背景不透明情况
|
||||
* @param $size 正方形边长
|
||||
* @param $bg 正方形背景颜色
|
||||
* @param $z-index z-index属性值,不得大于外部包裹器
|
||||
* @param $box-shadow 阴影
|
||||
*/
|
||||
.wd-text.is-bold.data-v-3c0ceda2 {
|
||||
font-weight: bold;
|
||||
}
|
||||
.wd-text.is-lines-1.data-v-3c0ceda2 {
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
.wd-text.is-lines-2.data-v-3c0ceda2 {
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
overflow: hidden;
|
||||
}
|
||||
.wd-text.is-lines-3.data-v-3c0ceda2 {
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 3;
|
||||
overflow: hidden;
|
||||
}
|
||||
.wd-text.is-lines-4.data-v-3c0ceda2 {
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 4;
|
||||
overflow: hidden;
|
||||
}
|
||||
.wd-text.is-lines-5.data-v-3c0ceda2 {
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 5;
|
||||
overflow: hidden;
|
||||
}
|
||||
.wd-text.is-default.data-v-3c0ceda2 {
|
||||
color: var(--wot-text-info-color, var(--wot-color-info, #909399));
|
||||
}
|
||||
.wd-text.is-primary.data-v-3c0ceda2 {
|
||||
color: var(--wot-text-primary-color, var(--wot-color-theme, #4d80f0));
|
||||
}
|
||||
.wd-text.is-error.data-v-3c0ceda2 {
|
||||
color: var(--wot-text-error-color, var(--wot-color-danger, #fa4350));
|
||||
}
|
||||
.wd-text.is-warning.data-v-3c0ceda2 {
|
||||
color: var(--wot-text-warning-color, var(--wot-color-warning, #f0883a));
|
||||
}
|
||||
.wd-text.is-success.data-v-3c0ceda2 {
|
||||
color: var(--wot-text-success-color, var(--wot-color-success, #34d19d));
|
||||
}
|
||||
Reference in New Issue
Block a user