-
+
mdi-moon-full
-
-
+
- {{ props.item.projectType === 'graphql' ? 'mdi-graphql' : 'mdi-json' }}
+ {{
+ props.item.projectType === 'graphql'
+ ? 'mdi-graphql'
+ : 'mdi-json'
+ }}
-
- {{ props.item.title }}
+ {{
+ props.item.title
+ }}
|
+ :class="{
+ 'action-icons': !(
+ projectStatusUpdating &&
+ props.item.id === statusUpdatingProjectId
+ ),
+ }"
+ >
+
mdi-stop-circle-outline
+ v-bind:tooltip="
+ $t('home.project_horizontal_option_1')
+ "
+ class="pointer mr-2"
+ color="orange grey"
+ v-if="props.item.status === 'started'"
+ @click.stop="stopProject(props.item)"
+ >mdi-stop-circle-outline
+
+ v-bind:tooltip="
+ $t('home.project_horizontal_option_2')
+ "
+ class="pointer mr-2"
+ color="green grey"
+ v-else-if="props.item.status === 'stopped'"
+ @click.stop="startProject(props.item)"
+ >
mdi-play-circle-outline
-
-
- mdi-loading
- mdi-spin
+ mdi-loading mdi-spin
-
+
+ v-bind:tooltip="
+ $t('home.project_horizontal_option_3')
+ "
+ class="pointer mr-2"
+ color="primary grey"
+ @click.stop="restartProject(props.item)"
+ >
mdi-restart
-
+
+ v-bind:tooltip="
+ $t('home.project_horizontal_option_4')
+ "
+ class="pointer mr-2"
+ color="red grey"
+ @click.stop="deleteProject(props.item)"
+ >
mdi-delete-circle-outline
-
- mdi-dots-vertical
+
+ mdi-dots-vertical
-
+
mdi-import
- Import Metadata
+
+
+ {{
+ $t('home.project_verticial_option_1')
+ }}
-
+
mdi-export
- Export Metadata
+
+
+ {{
+ $t('home.project_verticial_option_2')
+ }}
-
+
mdi-delete-variant
- Clear Metadata
+
+
+ {{
+ $t('home.project_verticial_option_3')
+ }}
-
|
-