This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-09-04_composition-13-d.../src/components/projects/ProjectsList.vue

83 lines
1.7 KiB
Vue

<template>
<base-container v-if="userSearch">
<h2>{{ user.fullName }}: Projects</h2>
<base-search
v-if="hasProjects"
@search="updateSearch"
:search-term="enteredSearchTerm"
></base-search>
<ul v-if="hasProjects">
<project-item
v-for="prj in availableProjects"
:key="prj.id"
:title="prj.title"
></project-item>
</ul>
<h3 v-else>No projects found.</h3>
</base-container>
<base-container v-else>
<h3>No user selected.</h3>
</base-container>
</template>
<script>
import { ref, computed, watch } from 'vue';
import ProjectItem from './ProjectItem.vue';
export default {
components: {
ProjectItem
},
props: ['user'],
setup(props) {
const activeSearchTerm = ref('');
const enteredSearchTerm = ref('');
const hasProjects = computed(function() {
return props.user.projects && availableProjects.value.length > 0;
});
const availableProjects = computed(function() {
if (activeSearchTerm.value) {
return props.user.projects.filter(prj =>
prj.title.includes(activeSearchTerm)
);
}
return props.user.projects;
});
watch(enteredSearchTerm, function(val) {
setTimeout(() => {
if (val === enteredSearchTerm.value) {
activeSearchTerm.value = val;
}
}, 300);
});
function updateSearch(val) {
enteredSearchTerm.value = val;
}
function userSearch() {
enteredSearchTerm.value = '';
}
return {
enteredSearchTerm,
activeSearchTerm,
hasProjects,
availableProjects,
updateSearch,
userSearch
};
}
};
</script>
<style scoped>
ul {
list-style: none;
margin: 0;
padding: 0;
}
</style>