cool-admin-vue/packages/crud/src/provide.ts
神仙都没用 1735d6258e 发布7.x
2023-09-28 13:50:15 +08:00

134 lines
2.3 KiB
TypeScript

import { App, reactive } from "vue";
import { mitt } from "./utils/mitt";
import { emitter } from "./emitter";
import { locale } from "./locale";
import { merge } from "./utils";
// 设置配置
function setConfig(app: App, options: Options = {}) {
const config = merge(
{
permission: {
update: true,
page: true,
info: true,
list: true,
add: true,
delete: true
},
dict: {
primaryId: "id",
api: {
list: "list",
add: "add",
update: "update",
delete: "delete",
info: "info",
page: "page"
},
pagination: {
page: "page",
size: "size"
},
search: {
keyWord: "keyWord",
query: "query"
},
sort: {
order: "order",
prop: "prop"
},
label: locale.zhCn
},
style: {
colors: [
"#d42ca8",
"#1c109d",
"#6d17c3",
"#6dc9f1",
"#04c273",
"#06b31c",
"#f9f494",
"#aa7a24",
"#d57121",
"#e93f4d"
],
form: {
labelPostion: "right",
labelWidth: "100px",
span: 24
},
table: {
border: true,
highlightCurrentRow: true,
autoHeight: true,
contextMenu: ["refresh", "check", "edit", "delete", "order-asc", "order-desc"],
column: {
align: "center"
}
}
},
events: {},
render: {
functionSlots: {
exclude: ["el-date-picker", "el-cascader", "el-time-select"]
}
}
},
options || {}
);
// 初始化事件
if (config.events) {
emitter.init(config.events);
}
app.provide("__config__", config);
return config;
}
// 设置浏览器
function setBrowser(app: App) {
// 浏览器信息
const browser = reactive({
isMini: false,
screen: "full"
});
// 更新信息
function update() {
const w = document.body.clientWidth;
if (w < 768) {
browser.screen = "xs";
} else if (w < 992) {
browser.screen = "sm";
} else if (w < 1200) {
browser.screen = "md";
} else if (w < 1920) {
browser.screen = "xl";
} else {
browser.screen = "full";
}
browser.isMini = browser.screen === "xs";
}
// 监听浏览器窗口变化
window.addEventListener("resize", () => {
update();
// 事件
mitt.emit("resize");
});
update();
app.provide("__browser__", browser);
}
export function useProvide(app: App, options: Options = {}) {
setBrowser(app);
setConfig(app, options);
}