openc3-cosmos-init/plugins/packages/openc3-tool-common/src/components/UpgradeToEnterpriseDialog.vue
<!--
# Copyright 2023 OpenC3, Inc.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU Affero General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# This file may also be used under the terms of a commercial license
# if purchased from OpenC3, Inc.
-->
<template>
<v-dialog v-model="show" width="650px">
<v-card>
<v-system-bar>
<v-spacer />
<span> Upgrade to COSMOS Enterprise Edition </span>
<v-spacer />
</v-system-bar>
<v-card-text class="mt-2">
<div class="logo">
<img :src="logo" alt="OpenC3" />
<div class="cosmos">Enterprise Edition</div>
</div>
<div class="pb-4">
Thank you for using the COSMOS Open Source Edition!
</div>
<div v-if="reason">
<div class="pb-4 pl-4 reason">
{{ reason }}
</div>
</div>
COSMOS Enterprise Edition removes all restrictions and offers users with
role based access control, scaling on kubernetes, cloud platform
support, multiple scopes, Calendar and Autonomic, various integrations
with common protocols and hardware, commercial licensing, and much
more!<br /><br />
Learn more at
<a href="https://openc3.com/enterprise"
>https://openc3.com/enterprise</a
>
and help support COSMOS Open Source by supporting our business. Contact
us at <a href="mailto:support@openc3.com">support@openc3.com</a> for
more information about Enterprise Edition, COSMOS training, COSMOS
support, and custom COSMOS development.
</v-card-text>
<v-card-actions>
<v-spacer />
<v-btn class="mx-2" color="primary" @click="show = !show"> Ok </v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</template>
<script>
import logo from '../../public/img/logo.png'
export default {
props: {
value: Boolean, // value is the default prop when using v-model
reason: String,
},
data() {
return {
logo: logo,
}
},
computed: {
show: {
get() {
return this.value
},
set(value) {
this.$emit('input', value) // input is the default event when using v-model
},
},
},
}
</script>
<style scoped>
.logo {
float: right;
margin: 15px;
}
.cosmos {
text-align: center;
font-size: 18pt;
}
.reason {
font-weight: bold;
}
</style>