主要功能: - 修改RequirementModal支持12个订单班选择 - 添加OrderClassIconMap图标映射组件 - Store中添加selectedOrderClass状态管理 - WorkflowPage支持传递orderClass参数 - web_result添加URL参数切换功能 - 创建order-class-handler.js动态处理页面主题 技术改进: - 创建软链接关联订单班数据目录 - 生成wenlu.json和food.json数据结构 - 删除重复的web_result目录 - 添加测试页面test-order-class.html 影响范围: - 展会策划系统现支持12个订单班 - 结果展示页面自动适配不同订单班主题 - 用户可选择不同行业生成对应方案 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
90 lines
2.8 KiB
JavaScript
90 lines
2.8 KiB
JavaScript
'use strict'
|
|
|
|
module.exports = maxscript
|
|
maxscript.displayName = 'maxscript'
|
|
maxscript.aliases = []
|
|
function maxscript(Prism) {
|
|
;(function (Prism) {
|
|
var keywords =
|
|
/\b(?:about|and|animate|as|at|attributes|by|case|catch|collect|continue|coordsys|do|else|exit|fn|for|from|function|global|if|in|local|macroscript|mapped|max|not|of|off|on|or|parameters|persistent|plugin|rcmenu|return|rollout|set|struct|then|throw|to|tool|try|undo|utility|when|where|while|with)\b/i
|
|
Prism.languages.maxscript = {
|
|
comment: {
|
|
pattern: /\/\*[\s\S]*?(?:\*\/|$)|--.*/,
|
|
greedy: true
|
|
},
|
|
string: {
|
|
pattern: /(^|[^"\\@])(?:"(?:[^"\\]|\\[\s\S])*"|@"[^"]*")/,
|
|
lookbehind: true,
|
|
greedy: true
|
|
},
|
|
path: {
|
|
pattern: /\$(?:[\w/\\.*?]|'[^']*')*/,
|
|
greedy: true,
|
|
alias: 'string'
|
|
},
|
|
'function-call': {
|
|
pattern: RegExp(
|
|
'((?:' + // start of line
|
|
(/^/.source +
|
|
'|' + // operators and other language constructs
|
|
/[;=<>+\-*/^({\[]/.source +
|
|
'|' + // keywords as part of statements
|
|
/\b(?:and|by|case|catch|collect|do|else|if|in|not|or|return|then|to|try|where|while|with)\b/
|
|
.source) +
|
|
')[ \t]*)' +
|
|
'(?!' +
|
|
keywords.source +
|
|
')' +
|
|
/[a-z_]\w*\b/.source +
|
|
'(?=[ \t]*(?:' + // variable
|
|
('(?!' +
|
|
keywords.source +
|
|
')' +
|
|
/[a-z_]/.source +
|
|
'|' + // number
|
|
/\d|-\.?\d/.source +
|
|
'|' + // other expressions or literals
|
|
/[({'"$@#?]/.source) +
|
|
'))',
|
|
'im'
|
|
),
|
|
lookbehind: true,
|
|
greedy: true,
|
|
alias: 'function'
|
|
},
|
|
'function-definition': {
|
|
pattern: /(\b(?:fn|function)\s+)\w+\b/i,
|
|
lookbehind: true,
|
|
alias: 'function'
|
|
},
|
|
argument: {
|
|
pattern: /\b[a-z_]\w*(?=:)/i,
|
|
alias: 'attr-name'
|
|
},
|
|
keyword: keywords,
|
|
boolean: /\b(?:false|true)\b/,
|
|
time: {
|
|
pattern:
|
|
/(^|[^\w.])(?:(?:(?:\d+(?:\.\d*)?|\.\d+)(?:[eEdD][+-]\d+|[LP])?[msft])+|\d+:\d+(?:\.\d*)?)(?![\w.:])/,
|
|
lookbehind: true,
|
|
alias: 'number'
|
|
},
|
|
number: [
|
|
{
|
|
pattern:
|
|
/(^|[^\w.])(?:(?:\d+(?:\.\d*)?|\.\d+)(?:[eEdD][+-]\d+|[LP])?|0x[a-fA-F0-9]+)(?![\w.:])/,
|
|
lookbehind: true
|
|
},
|
|
/\b(?:e|pi)\b/
|
|
],
|
|
constant: /\b(?:dontcollect|ok|silentValue|undefined|unsupplied)\b/,
|
|
color: {
|
|
pattern: /\b(?:black|blue|brown|gray|green|orange|red|white|yellow)\b/i,
|
|
alias: 'constant'
|
|
},
|
|
operator: /[-+*/<>=!]=?|[&^?]|#(?!\()/,
|
|
punctuation: /[()\[\]{}.:,;]|#(?=\()|\\$/m
|
|
}
|
|
})(Prism)
|
|
}
|