主要功能: - 修改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>
93 lines
2.1 KiB
JavaScript
93 lines
2.1 KiB
JavaScript
/*
|
|
Language: Makefile
|
|
Author: Ivan Sagalaev <maniac@softwaremaniacs.org>
|
|
Contributors: Joël Porquet <joel@porquet.org>
|
|
Website: https://www.gnu.org/software/make/manual/html_node/Introduction.html
|
|
Category: common
|
|
*/
|
|
|
|
function makefile(hljs) {
|
|
/* Variables: simple (eg $(var)) and special (eg $@) */
|
|
const VARIABLE = {
|
|
className: 'variable',
|
|
variants: [
|
|
{
|
|
begin: '\\$\\(' + hljs.UNDERSCORE_IDENT_RE + '\\)',
|
|
contains: [ hljs.BACKSLASH_ESCAPE ]
|
|
},
|
|
{
|
|
begin: /\$[@%<?\^\+\*]/
|
|
}
|
|
]
|
|
};
|
|
/* Quoted string with variables inside */
|
|
const QUOTE_STRING = {
|
|
className: 'string',
|
|
begin: /"/,
|
|
end: /"/,
|
|
contains: [
|
|
hljs.BACKSLASH_ESCAPE,
|
|
VARIABLE
|
|
]
|
|
};
|
|
/* Function: $(func arg,...) */
|
|
const FUNC = {
|
|
className: 'variable',
|
|
begin: /\$\([\w-]+\s/,
|
|
end: /\)/,
|
|
keywords: {
|
|
built_in:
|
|
'subst patsubst strip findstring filter filter-out sort ' +
|
|
'word wordlist firstword lastword dir notdir suffix basename ' +
|
|
'addsuffix addprefix join wildcard realpath abspath error warning ' +
|
|
'shell origin flavor foreach if or and call eval file value'
|
|
},
|
|
contains: [ VARIABLE ]
|
|
};
|
|
/* Variable assignment */
|
|
const ASSIGNMENT = {
|
|
begin: '^' + hljs.UNDERSCORE_IDENT_RE + '\\s*(?=[:+?]?=)'
|
|
};
|
|
/* Meta targets (.PHONY) */
|
|
const META = {
|
|
className: 'meta',
|
|
begin: /^\.PHONY:/,
|
|
end: /$/,
|
|
keywords: {
|
|
$pattern: /[\.\w]+/,
|
|
'meta-keyword': '.PHONY'
|
|
}
|
|
};
|
|
/* Targets */
|
|
const TARGET = {
|
|
className: 'section',
|
|
begin: /^[^\s]+:/,
|
|
end: /$/,
|
|
contains: [ VARIABLE ]
|
|
};
|
|
return {
|
|
name: 'Makefile',
|
|
aliases: [
|
|
'mk',
|
|
'mak',
|
|
'make',
|
|
],
|
|
keywords: {
|
|
$pattern: /[\w-]+/,
|
|
keyword: 'define endef undefine ifdef ifndef ifeq ifneq else endif ' +
|
|
'include -include sinclude override export unexport private vpath'
|
|
},
|
|
contains: [
|
|
hljs.HASH_COMMENT_MODE,
|
|
VARIABLE,
|
|
QUOTE_STRING,
|
|
FUNC,
|
|
ASSIGNMENT,
|
|
META,
|
|
TARGET
|
|
]
|
|
};
|
|
}
|
|
|
|
module.exports = makefile;
|