mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-07 12:58:33 +00:00
147 lines
5.4 KiB
Vue
147 lines
5.4 KiB
Vue
<script setup>
|
|
import { ref } from 'vue'
|
|
|
|
const props = defineProps({
|
|
platform: String,
|
|
config: Object,
|
|
globalPrepCmd: Array
|
|
})
|
|
|
|
const config = ref(props.config)
|
|
const globalPrepCmd = ref(props.globalPrepCmd)
|
|
|
|
function addCmd() {
|
|
let template = {
|
|
do: "",
|
|
undo: "",
|
|
};
|
|
|
|
if (props.platform === 'windows') {
|
|
template = { ...template, elevated: false };
|
|
}
|
|
globalPrepCmd.value.push(template);
|
|
}
|
|
|
|
function removeCmd(index) {
|
|
globalPrepCmd.value.splice(index,1)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div id="general" class="config-page">
|
|
<!-- Locale -->
|
|
<div class="mb-3">
|
|
<label for="locale" class="form-label">{{ $t('config.locale') }}</label>
|
|
<select id="locale" class="form-select" v-model="config.locale">
|
|
<option value="de">Deutsch (German)</option>
|
|
<option value="en">English</option>
|
|
<option value="en_GB">English, UK</option>
|
|
<option value="en_US">English, US</option>
|
|
<option value="es">Español (Spanish)</option>
|
|
<option value="fr">Français (French)</option>
|
|
<option value="it">Italiano (Italian)</option>
|
|
<option value="ja">日本語 (Japanese)</option>
|
|
<option value="pt">Português (Portuguese)</option>
|
|
<option value="ru">Русский (Russian)</option>
|
|
<option value="sv">svenska (Swedish)</option>
|
|
<option value="tr">Türkçe (Turkish)</option>
|
|
<option value="zh">简体中文 (Chinese Simplified)</option>
|
|
</select>
|
|
<div class="form-text">{{ $t('config.locale_desc') }}</div>
|
|
</div>
|
|
|
|
<!-- Sunshine Name -->
|
|
<div class="mb-3">
|
|
<label for="sunshine_name" class="form-label">{{ $t('config.sunshine_name') }}</label>
|
|
<input type="text" class="form-control" id="sunshine_name" placeholder="Sunshine"
|
|
v-model="config.sunshine_name" />
|
|
<div class="form-text">{{ $t('config.sunshine_name_desc') }}</div>
|
|
</div>
|
|
|
|
<!-- Log Level -->
|
|
<div class="mb-3">
|
|
<label for="min_log_level" class="form-label">{{ $t('config.log_level') }}</label>
|
|
<select id="min_log_level" class="form-select" v-model="config.min_log_level">
|
|
<option value="0">{{ $t('config.log_level_0') }}</option>
|
|
<option value="1">{{ $t('config.log_level_1') }}</option>
|
|
<option value="2">{{ $t('config.log_level_2') }}</option>
|
|
<option value="3">{{ $t('config.log_level_3') }}</option>
|
|
<option value="4">{{ $t('config.log_level_4') }}</option>
|
|
<option value="5">{{ $t('config.log_level_5') }}</option>
|
|
<option value="6">{{ $t('config.log_level_6') }}</option>
|
|
</select>
|
|
<div class="form-text">{{ $t('config.log_level_desc') }}</div>
|
|
</div>
|
|
|
|
<!-- Maximum Connected Clients -->
|
|
<div class="mb-3">
|
|
<label for="channels" class="form-label">{{ $t('config.channels') }}</label>
|
|
<input type="text" class="form-control" id="channels" placeholder="1" v-model="config.channels" />
|
|
<div class="form-text">
|
|
{{ $t('config.channels_desc_1') }}<br>
|
|
{{ $t('_common.note') }} {{ $t('config.channels_desc_2') }}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Global Prep Commands -->
|
|
<div id="global_prep_cmd" class="mb-3 d-flex flex-column">
|
|
<label class="form-label">{{ $t('config.global_prep_cmd') }}</label>
|
|
<div class="form-text">{{ $t('config.global_prep_cmd_desc') }}</div>
|
|
<table class="table" v-if="globalPrepCmd.length > 0">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col"><i class="fas fa-play"></i> {{ $t('_common.do_cmd') }}</th>
|
|
<th scope="col"><i class="fas fa-undo"></i> {{ $t('_common.undo_cmd') }}</th>
|
|
<th scope="col" v-if="platform === 'windows'">
|
|
<i class="fas fa-shield-alt"></i> {{ $t('_common.run_as') }}
|
|
</th>
|
|
<th scope="col"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(c, i) in globalPrepCmd">
|
|
<td>
|
|
<input type="text" class="form-control monospace" v-model="c.do" />
|
|
</td>
|
|
<td>
|
|
<input type="text" class="form-control monospace" v-model="c.undo" />
|
|
</td>
|
|
<td v-if="platform === 'windows'">
|
|
<div class="form-check">
|
|
<input type="checkbox" class="form-check-input" :id="'prep-cmd-admin-' + i" v-model="c.elevated"
|
|
true-value="true" false-value="false" />
|
|
<label :for="'prep-cmd-admin-' + i" class="form-check-label">{{ $t('config.elevated') }}</label>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<button class="btn btn-danger" @click="removeCmd(i)">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
<button class="btn btn-success" @click="addCmd">
|
|
<i class="fas fa-plus"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<button class="ms-0 mt-2 btn btn-success" style="margin: 0 auto" @click="addCmd">
|
|
+ {{ $t('config.add') }}
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Notify Pre-Releases -->
|
|
<div class="mb-3">
|
|
<label for="notify_pre_releases" class="form-label">{{ $t('config.notify_pre_releases') }}</label>
|
|
<select id="notify_pre_releases" class="form-select" v-model="config.notify_pre_releases">
|
|
<option value="disabled">{{ $t('_common.disabled') }}</option>
|
|
<option value="enabled">{{ $t('_common.enabled') }}</option>
|
|
</select>
|
|
<div class="form-text">{{ $t('config.notify_pre_releases_desc') }}</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|