2019-08-22 01:22:26 +03:00
|
|
|
<template>
|
|
|
|
<div v-if="loading">
|
|
|
|
Loading...
|
|
|
|
</div>
|
|
|
|
<div v-else>
|
|
|
|
<h1 class="z-title is-1 mb-1">{{ data.info.prettyName || data.name }}</h1>
|
|
|
|
<p class="mb-1">
|
|
|
|
Name in config: <code>{{ data.name }}</code>
|
|
|
|
</p>
|
|
|
|
|
2019-08-22 02:58:32 +03:00
|
|
|
<div v-if="data.info.description" class="content" v-html="renderMarkdown(data.info.description)"></div>
|
|
|
|
|
|
|
|
<p class="mt-1 mb-1">
|
|
|
|
To enable this plugin with default configuration, add <code>{{ data.name }}: {}</code> to the <code>plugins</code> list in config
|
|
|
|
</p>
|
2019-08-22 01:22:26 +03:00
|
|
|
|
2019-08-22 02:58:32 +03:00
|
|
|
<h2 id="default-configuration" class="z-title is-2 mt-2 mb-1">Default configuration</h2>
|
2019-08-22 01:22:26 +03:00
|
|
|
<CodeBlock lang="yaml">{{ renderConfiguration(data.options) }}</CodeBlock>
|
2019-08-22 02:58:32 +03:00
|
|
|
<b-collapse :open="false" class="card mt-1 mb-1">
|
|
|
|
<div slot="trigger" slot-scope="props" class="card-header" role="button">
|
|
|
|
<p class="card-header-title">Config schema</p>
|
|
|
|
<a class="card-header-icon">
|
|
|
|
<b-icon :icon="props.open ? 'menu-down' : 'menu-up'"></b-icon>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="card-content">
|
|
|
|
<CodeBlock lang="plain">{{ data.configSchema }}</CodeBlock>
|
|
|
|
</div>
|
|
|
|
</b-collapse>
|
2019-08-22 01:22:26 +03:00
|
|
|
|
|
|
|
<div v-if="data.commands.length">
|
2019-08-22 02:58:32 +03:00
|
|
|
<h2 id="commands" class="z-title is-2 mt-2 mb-1">Commands</h2>
|
2019-08-22 01:22:26 +03:00
|
|
|
<div v-for="command in data.commands">
|
|
|
|
<h3 class="z-title is-3 mt-2 mb-1">!{{ command.trigger }}</h3>
|
|
|
|
<div v-if="command.config.requiredPermission">
|
|
|
|
Permission: <code>{{ command.config.requiredPermission }}</code>
|
|
|
|
</div>
|
|
|
|
<div v-if="command.config.info && command.config.info.basicUsage">
|
|
|
|
Basic usage: <code>{{ command.config.info.basicUsage }}</code>
|
|
|
|
</div>
|
|
|
|
<div v-if="command.config.aliases && command.config.aliases.length">
|
|
|
|
Shortcut:
|
|
|
|
<code style="margin-right: 4px" v-for="alias in command.config.aliases">!{{ alias }}</code>
|
|
|
|
</div>
|
2019-08-22 02:58:32 +03:00
|
|
|
<div v-if="command.config.info && command.config.info.description" class="content mt-1 mb-1" v-html="renderMarkdown(command.config.info.description)"></div>
|
|
|
|
|
|
|
|
<b-collapse :open="false" class="card mt-1 mb-1">
|
|
|
|
<div slot="trigger" slot-scope="props" class="card-header" role="button">
|
|
|
|
<p class="card-header-title">Additional information</p>
|
|
|
|
<a class="card-header-icon">
|
|
|
|
<b-icon :icon="props.open ? 'menu-down' : 'menu-up'"></b-icon>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="card-content">
|
|
|
|
Signatures:
|
|
|
|
<ul class="z-list z-ul">
|
|
|
|
<li>
|
|
|
|
<code>
|
|
|
|
!{{ command.trigger }}
|
|
|
|
<span v-for="param in command.parameters">{{ renderParameter(param) }} </span>
|
|
|
|
</code>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div class="mt-2" v-if="command.parameters.length">
|
|
|
|
Command arguments:
|
|
|
|
<ul class="z-list z-ul">
|
|
|
|
<li v-for="param in command.parameters">
|
|
|
|
<code>{{ renderParameter(param) }}</code>
|
|
|
|
<router-link :to="'/docs/descriptions/argument-types#' + (param.type || 'string')">{{ param.type || 'string' }}</router-link>
|
|
|
|
<div v-if="command.config.info && command.config.info.parameterDescriptions && command.config.info.parameterDescriptions[param.name]" class="content">
|
|
|
|
{{ renderMarkdown(command.config.info.parameterDescriptions[param.name]) }}
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</b-collapse>
|
2019-08-22 01:22:26 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Vue from "vue";
|
|
|
|
import {mapState} from "vuex";
|
|
|
|
import marked from "marked";
|
|
|
|
import yaml from "js-yaml";
|
|
|
|
import CodeBlock from "./CodeBlock";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: { CodeBlock },
|
|
|
|
|
|
|
|
async mounted() {
|
|
|
|
this.loading = true;
|
|
|
|
await this.$store.dispatch("docs/loadPluginData", this.pluginName);
|
|
|
|
this.loading = false;
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
renderMarkdown(str) {
|
|
|
|
return marked(str);
|
|
|
|
},
|
|
|
|
renderConfiguration(options) {
|
|
|
|
return yaml.safeDump({
|
|
|
|
[this.pluginName]: options,
|
|
|
|
});
|
|
|
|
},
|
2019-08-22 02:58:32 +03:00
|
|
|
renderParameter(param) {
|
|
|
|
let str = `${param.name}`;
|
|
|
|
if (param.rest) str += '...';
|
|
|
|
if (param.required) {
|
|
|
|
return `<${str}>`;
|
|
|
|
} else {
|
|
|
|
return `[${str}]`;
|
|
|
|
}
|
|
|
|
},
|
2019-08-22 01:22:26 +03:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
loading: true,
|
|
|
|
pluginName: this.$route.params.pluginName,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapState("docs", {
|
|
|
|
data(state) {
|
|
|
|
return state.plugins[this.pluginName];
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|