Major changes: - New frontend (platform/web/): Vite + React 18 + TypeScript + Tailwind - 4-module navigation: 数据送标 / 模型管理 / 车队管理 / 系统管理 - Data catalog with charts (DMS/ADAS/Lane 3-tab view) - Quality review workflow (标注质检): Good/Fine/Bad scoring with auto-advance - Audit enhancements: batch operations, rejection categories, Feishu notifications - Operation audit log (操作日志) - World model simulation studio (仿真工坊) - Dataset version management with snapshots and diff - ADAS 7-class dataset integration (138K images organized + compressed) - User management with Feishu integration and pagination - CRUD/search/filter on all pages, card layout redesign - PIL-optimized image overlay rendering - Auto-snapshot on build, in_review workflow stage - Removed embedded algorithm code (now in workspace)
105 lines
2.2 KiB
JavaScript
105 lines
2.2 KiB
JavaScript
let postcss = require('postcss')
|
|
|
|
let IMPORTANT = /\s*!important\s*$/i
|
|
|
|
let UNITLESS = {
|
|
'box-flex': true,
|
|
'box-flex-group': true,
|
|
'column-count': true,
|
|
'flex': true,
|
|
'flex-grow': true,
|
|
'flex-positive': true,
|
|
'flex-shrink': true,
|
|
'flex-negative': true,
|
|
'font-weight': true,
|
|
'line-clamp': true,
|
|
'line-height': true,
|
|
'opacity': true,
|
|
'order': true,
|
|
'orphans': true,
|
|
'tab-size': true,
|
|
'widows': true,
|
|
'z-index': true,
|
|
'zoom': true,
|
|
'fill-opacity': true,
|
|
'stroke-dashoffset': true,
|
|
'stroke-opacity': true,
|
|
'stroke-width': true
|
|
}
|
|
|
|
function dashify(str) {
|
|
return str
|
|
.replace(/([A-Z])/g, '-$1')
|
|
.replace(/^ms-/, '-ms-')
|
|
.toLowerCase()
|
|
}
|
|
|
|
function decl(parent, name, value) {
|
|
if (value === false || value === null) return
|
|
|
|
if (!name.startsWith('--')) {
|
|
name = dashify(name)
|
|
}
|
|
|
|
if (typeof value === 'number') {
|
|
if (value === 0 || UNITLESS[name]) {
|
|
value = value.toString()
|
|
} else {
|
|
value += 'px'
|
|
}
|
|
}
|
|
|
|
if (name === 'css-float') name = 'float'
|
|
|
|
if (IMPORTANT.test(value)) {
|
|
value = value.replace(IMPORTANT, '')
|
|
parent.push(postcss.decl({ prop: name, value, important: true }))
|
|
} else {
|
|
parent.push(postcss.decl({ prop: name, value }))
|
|
}
|
|
}
|
|
|
|
function atRule(parent, parts, value) {
|
|
let node = postcss.atRule({ name: parts[1], params: parts[3] || '' })
|
|
if (typeof value === 'object') {
|
|
node.nodes = []
|
|
parse(value, node)
|
|
}
|
|
parent.push(node)
|
|
}
|
|
|
|
function parse(obj, parent) {
|
|
let name, node, value
|
|
for (name in obj) {
|
|
value = obj[name]
|
|
if (value === null || typeof value === 'undefined') {
|
|
continue
|
|
} else if (name[0] === '@') {
|
|
let parts = name.match(/@(\S+)(\s+([\W\w]*)\s*)?/)
|
|
if (Array.isArray(value)) {
|
|
for (let i of value) {
|
|
atRule(parent, parts, i)
|
|
}
|
|
} else {
|
|
atRule(parent, parts, value)
|
|
}
|
|
} else if (Array.isArray(value)) {
|
|
for (let i of value) {
|
|
decl(parent, name, i)
|
|
}
|
|
} else if (typeof value === 'object') {
|
|
node = postcss.rule({ selector: name })
|
|
parse(value, node)
|
|
parent.push(node)
|
|
} else {
|
|
decl(parent, name, value)
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = function (obj) {
|
|
let root = postcss.root()
|
|
parse(obj, root)
|
|
return root
|
|
}
|