主要功能: - 修改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>
78 lines
2.6 KiB
JavaScript
78 lines
2.6 KiB
JavaScript
'use strict'
|
|
|
|
module.exports = dhall
|
|
dhall.displayName = 'dhall'
|
|
dhall.aliases = []
|
|
function dhall(Prism) {
|
|
// ABNF grammar:
|
|
// https://github.com/dhall-lang/dhall-lang/blob/master/standard/dhall.abnf
|
|
Prism.languages.dhall = {
|
|
// Multi-line comments can be nested. E.g. {- foo {- bar -} -}
|
|
// The multi-line pattern is essentially this:
|
|
// \{-(?:[^-{]|-(?!\})|\{(?!-)|<SELF>)*-\}
|
|
comment:
|
|
/--.*|\{-(?:[^-{]|-(?!\})|\{(?!-)|\{-(?:[^-{]|-(?!\})|\{(?!-))*-\})*-\}/,
|
|
string: {
|
|
pattern: /"(?:[^"\\]|\\.)*"|''(?:[^']|'(?!')|'''|''\$\{)*''(?!'|\$)/,
|
|
greedy: true,
|
|
inside: {
|
|
interpolation: {
|
|
pattern: /\$\{[^{}]*\}/,
|
|
inside: {
|
|
expression: {
|
|
pattern: /(^\$\{)[\s\S]+(?=\}$)/,
|
|
lookbehind: true,
|
|
alias: 'language-dhall',
|
|
inside: null // see blow
|
|
},
|
|
punctuation: /\$\{|\}/
|
|
}
|
|
}
|
|
}
|
|
},
|
|
label: {
|
|
pattern: /`[^`]*`/,
|
|
greedy: true
|
|
},
|
|
url: {
|
|
// https://github.com/dhall-lang/dhall-lang/blob/5fde8ef1bead6fb4e999d3c1ffe7044cd019d63a/standard/dhall.abnf#L596
|
|
pattern:
|
|
/\bhttps?:\/\/[\w.:%!$&'*+;=@~-]+(?:\/[\w.:%!$&'*+;=@~-]*)*(?:\?[/?\w.:%!$&'*+;=@~-]*)?/,
|
|
greedy: true
|
|
},
|
|
env: {
|
|
// https://github.com/dhall-lang/dhall-lang/blob/5fde8ef1bead6fb4e999d3c1ffe7044cd019d63a/standard/dhall.abnf#L661
|
|
pattern: /\benv:(?:(?!\d)\w+|"(?:[^"\\=]|\\.)*")/,
|
|
greedy: true,
|
|
inside: {
|
|
function: /^env/,
|
|
operator: /^:/,
|
|
variable: /[\s\S]+/
|
|
}
|
|
},
|
|
hash: {
|
|
// https://github.com/dhall-lang/dhall-lang/blob/5fde8ef1bead6fb4e999d3c1ffe7044cd019d63a/standard/dhall.abnf#L725
|
|
pattern: /\bsha256:[\da-fA-F]{64}\b/,
|
|
inside: {
|
|
function: /sha256/,
|
|
operator: /:/,
|
|
number: /[\da-fA-F]{64}/
|
|
}
|
|
},
|
|
// https://github.com/dhall-lang/dhall-lang/blob/5fde8ef1bead6fb4e999d3c1ffe7044cd019d63a/standard/dhall.abnf#L359
|
|
keyword:
|
|
/\b(?:as|assert|else|forall|if|in|let|merge|missing|then|toMap|using|with)\b|\u2200/,
|
|
builtin: /\b(?:None|Some)\b/,
|
|
boolean: /\b(?:False|True)\b/,
|
|
number:
|
|
/\bNaN\b|-?\bInfinity\b|[+-]?\b(?:0x[\da-fA-F]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)\b/,
|
|
operator:
|
|
/\/\\|\/\/\\\\|&&|\|\||===|[!=]=|\/\/|->|\+\+|::|[+*#@=:?<>|\\\u2227\u2a53\u2261\u2afd\u03bb\u2192]/,
|
|
punctuation: /\.\.|[{}\[\](),./]/,
|
|
// we'll just assume that every capital word left is a type name
|
|
'class-name': /\b[A-Z]\w*\b/
|
|
}
|
|
Prism.languages.dhall.string.inside.interpolation.inside.expression.inside =
|
|
Prism.languages.dhall
|
|
}
|