mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-10 15:57:53 +00:00
69 lines
No EOL
1.9 KiB
Vue
69 lines
No EOL
1.9 KiB
Vue
<template>
|
|
<div class="command-info">
|
|
<h3 :id="cmd">
|
|
<a class="header-anchor" :href="'#' + cmd">#</a>
|
|
{{ command.title }}
|
|
</h3>
|
|
<p>{{ command.summary }}</p>
|
|
|
|
<slot></slot>
|
|
|
|
<h4>Syntax <small>(how the command is used)</small></h4>
|
|
<CmdGroup>
|
|
<Cmd v-for="usage in command.usage" :comment="usage.desc" :usage="usage.cmd || usage" />
|
|
</CmdGroup>
|
|
|
|
<h4 v-if="command.examples">Examples</h4>
|
|
<CmdGroup v-if="command.examples">
|
|
<Cmd v-for="example in command.examples" :comment="example.desc" :usage="example.cmd || example" />
|
|
</CmdGroup>
|
|
|
|
<h4 v-if="command.arguments">Arguments <small>(fill in above)</small></h4>
|
|
<div class="info-arg" v-for="(arg, key) in command.arguments">
|
|
<Arg>{{ key }}</Arg>
|
|
(<strong v-if="arg.type === 'string'">text</strong><strong v-if="arg.type === 'system'">system
|
|
ID</strong><span v-if="arg.optional">, <em>optional</em></span>) - {{ arg.desc }}.
|
|
</div>
|
|
|
|
<h4 v-if="command.flags">Flags <small>(all optional, starts with a hyphen, place anywhere in the
|
|
command)</small></h4>
|
|
<div class="info-flag" v-for="(flag, key) in command.flags">
|
|
<Arg>-{{ key }}</Arg>
|
|
- {{ flag.desc }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import commands from "../../../commands/commands";
|
|
|
|
export default {
|
|
props: ["cmd"],
|
|
|
|
data() {
|
|
return {command: commands[this.cmd]};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.command-info {
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
|
|
.command-info h3 {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.command-info p {
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
.command-info h4 {
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.info-arg, .info-flag {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
</style> |