123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315 |
- <template>
- <div class="groups-home-component w-100 h-100">
- <div v-if="initialLoad" class="row border-bottom m-0 p-0">
- <sidebar />
- <self-feed :profile="profile" v-on:switchtab="switchTab" />
- <!-- <self-discover v-if="tab == 'discover'" :profile="profile" />
- <self-notifications v-if="tab == 'notifications'" :profile="profile" />
- <self-invitations v-if="tab == 'invitations'" :profile="profile" />
- <self-remote-search v-if="tab == 'remotesearch'" :profile="profile" />
- <self-groups v-if="tab == 'mygroups'" :profile="profile" />
- <create-group v-if="tab == 'creategroup'" :profile="profile" />
- <div v-if="tab == 'gsearch'">
- <div class="col-12 px-5">
- <div class="my-4">
- <p class="h1 font-weight-bold mb-1">Group Search</p>
- <p class="lead text-muted mb-0">Search and explore groups.</p>
- </div>
- <div class="media align-items-center text-lighter">
- <i class="far fa-chevron-left fa-lg mr-3"></i>
- <div class="media-body">
- <p class="lead mb-0">Use the search bar on the side menu</p>
- </div>
- </div>
- </div>
- </div> -->
- </div>
- <div v-else class="row justify-content-center mt-5">
- <b-spinner />
- </div>
- </div>
- </template>
- <script type="text/javascript">
- import GroupStatus from '@/groups/partials/GroupStatus.vue';
- import SelfFeed from '@/groups/partials/SelfFeed.vue';
- import SelfDiscover from '@/groups/partials/SelfDiscover.vue';
- import SelfGroups from '@/groups/partials/SelfGroups.vue';
- import SelfNotifications from '@/groups/partials/SelfNotifications.vue';
- import SelfInvitations from '@/groups/partials/SelfInvitations.vue';
- import SelfRemoteSearch from '@/groups/partials/SelfRemoteSearch.vue';
- import CreateGroup from '@/groups/CreateGroup.vue';
- import SidebarComponent from '@/groups/sections/Sidebar.vue';
- import Autocomplete from '@trevoreyre/autocomplete-vue'
- import '@trevoreyre/autocomplete-vue/dist/style.css'
- export default {
- data() {
- return {
- initialLoad: false,
- config: {},
- groups: [],
- profile: {},
- tab: null,
- searchQuery: undefined,
- };
- },
- components: {
- 'autocomplete-input': Autocomplete,
- 'group-status': GroupStatus,
- 'self-discover': SelfDiscover,
- 'self-groups': SelfGroups,
- 'self-feed': SelfFeed,
- 'self-notifications': SelfNotifications,
- 'self-invitations': SelfInvitations,
- 'self-remote-search': SelfRemoteSearch,
- "create-group": CreateGroup,
- "sidebar": SidebarComponent
- },
- mounted() {
- this.fetchConfig();
- },
- methods: {
- init() {
- document.querySelectorAll("footer").forEach(e => e.parentNode.removeChild(e));
- document.querySelectorAll(".mobile-footer-spacer").forEach(e => e.parentNode.removeChild(e));
- document.querySelectorAll(".mobile-footer").forEach(e => e.parentNode.removeChild(e));
- // let u = new URLSearchParams(window.location.search);
- // if(u.has('ct')) {
- // if(['mygroups', 'notifications', 'discover', 'remotesearch', 'creategroup', 'gsearch'].includes(u.get('ct'))) {
- // if(u.get('ct') == 'creategroup' && this.config.limits.user.create.new == false) {
- // this.tab = 'feed';
- // history.pushState(null, null, '/groups/feed');
- // } else {
- // this.tab = u.get('ct');
- // }
- // } else {
- // this.tab = 'feed';
- // history.pushState(null, null, '/groups/feed');
- // }
- // } else {
- // this.tab = 'feed';
- // }
- this.initialLoad = true;
- },
- fetchConfig() {
- axios.get('/api/v0/groups/config')
- .then(res => {
- this.config = res.data;
- this.fetchProfile();
- });
- },
- fetchProfile() {
- axios.get('/api/pixelfed/v1/accounts/verify_credentials')
- .then(res => {
- this.profile = res.data;
- this.init();
- window._sharedData.curUser = res.data;
- window.App.util.navatar();
- })
- },
- fetchSelfGroups() {
- axios.get('/api/v0/groups/self/list')
- .then(res => {
- this.groups = res.data;
- });
- },
- switchTab(tab) {
- event.currentTarget.blur();
- window.scrollTo(0,0);
- this.tab = tab;
- if(tab != 'feed') {
- history.pushState(null, null, '/groups/home?ct=' + tab);
- } else {
- history.pushState(null, null, '/groups/home');
- }
- },
- autocompleteSearch(input) {
- if (!input || input.length < 2) {
- if(this.tab = 'searchresults') {
- this.tab = 'feed';
- }
- return [];
- };
- this.searchQuery = input;
- // this.tab = 'searchresults';
- if(input.startsWith('http')) {
- let url = new URL(input);
- if(url.hostname == location.hostname) {
- location.href = input;
- return [];
- }
- return [];
- }
- if(input.startsWith('#')) {
- this.$bvToast.toast(input, {
- title: 'Hashtag detected',
- variant: 'info',
- autoHideDelay: 5000
- });
- return [];
- }
- return axios.post('/api/v0/groups/search/global', {
- q: input,
- v: '0.2'
- })
- .then(res => {
- this.searchLoading = false;
- return res.data;
- }).catch(err => {
- if(err.response.status === 422) {
- this.$bvToast.toast(err.response.data.error.message, {
- title: 'Cannot display search results',
- variant: 'danger',
- autoHideDelay: 5000
- });
- }
- return [];
- })
- },
- getSearchResultValue(result) {
- return result.name;
- },
- onSearchSubmit(result) {
- if (result.length < 1) {
- return [];
- }
- location.href = result.url;
- },
- truncateName(val) {
- if(val.length < 24) {
- return val;
- }
- return val.substr(0, 23) + '...';
- }
- }
- }
- </script>
- <style lang="scss">
- .groups-home-component {
- font-family: var(--font-family-sans-serif);
- .group-nav-btn {
- display: block;
- width: 100%;
- padding-left: 0;
- padding-top: 0.3rem;
- padding-bottom: 0.3rem;
- margin-bottom: 0.3rem;
- border-radius: 1.5rem;
- text-align: left;
- color: #6c757d;
- background-color: transparent;
- border-color: transparent;
- justify-content: flex-start;
- &.active {
- background-color: #EFF6FF !important;
- border:1px solid #DBEAFE !important;
- color: #212529;
- .group-nav-btn-icon {
- background-color: #2c78bf !important;
- color: #fff !important;
- }
- }
- &-icon {
- display: inline-flex;
- width: 35px;
- height: 35px;
- padding: 12px;
- background-color: #E5E7EB;
- border-radius: 17px;
- margin: auto 0.3rem;
- align-items: center;
- justify-content: center;
- }
- &-name {
- display: inline-block;
- margin-left: 0.3rem;
- font-weight: 700;
- }
- }
- .autocomplete-input {
- height: 2.375rem;
- background-color: #f8f9fa !important;
- font-size: 0.9rem;
- color: #495057;
- border-radius: 50rem;
- border-color: transparent;
- &:focus,
- &[aria-expanded=true] {
- box-shadow: none;
- }
- }
- .autocomplete-result {
- background: none;
- padding: 12px;
- &:hover,
- &:focus {
- background-color: #EFF6FF !important;
- }
- .media {
- img {
- object-fit: cover;
- border-radius: 4px;
- margin-right: 0.6rem;
- }
- .icon-placeholder {
- display: flex;
- width: 32px;
- height: 32px;
- background-color: #2c78bf;
- border-radius: 4px;
- justify-content: center;
- align-items: center;
- color: #fff;
- margin-right: 0.6rem;
- }
- }
- }
- .autocomplete-result-list {
- padding-bottom: 0;
- }
- .fade-enter-active, .fade-leave-active {
- transition: opacity 200ms;
- }
- .fade-enter, .fade-leave-to {
- opacity: 0;
- }
- }
- </style>
|