aboutsummaryrefslogtreecommitdiff
path: root/lib/admin/src/index.ts
blob: 7733f5cebab36c72591334c729001a897396b6fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Copyright (C) 2023 Vaughn Nugent
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// 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.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program.  If not, see <https://www.gnu.org/licenses/>.

//Export apis and types
export * from './types';
export * from './ordering'
export * from './feedProperties'
export * from './posts'
export * from './content'
export * from './channels'

import { MaybeRef } from "vue";
import { get } from '@vueuse/core'
import { useRouteQuery } from "@vueuse/router";
import { QueryState, QueryType, SortType, BlogAdminContext } from "./types";
import { RouteLocationNormalized, Router } from 'vue-router';
import { AxiosInstance } from 'axios';

export interface BlogAdminConfig {
    readonly axios: AxiosInstance;
    readonly router: Router;
    readonly route: RouteLocationNormalized;
    readonly postUrl: MaybeRef<string>;
    readonly contentUrl: MaybeRef<string>;
    readonly channelUrl: MaybeRef<string>;
    readonly defaultPageSize?: number;
}

const createQueryState = (router :Router , route : RouteLocationNormalized): QueryState => {

    //setup filter search query
    const search = useRouteQuery<string>(QueryType.Filter, '', { mode: 'replace', route, router });

    //Get sort order query
    const sort = useRouteQuery<SortType>(QueryType.Sort, SortType.CreatedTime, { mode: 'replace', route, router });

    //Selected channel id
    const channel = useRouteQuery<string>(QueryType.Channel, '', { mode: 'replace', route, router });

    //Edits are in push mode because they are used to navigate to edit pages

    const channelEdit = useRouteQuery<string>(QueryType.ChannelEdit, '', { mode: 'push', route, router });

    const content = useRouteQuery<string>(QueryType.Content, '', { mode: 'push', route, router });
    //Get the selected post id from the route
    const post = useRouteQuery<string>(QueryType.Post, '', { mode: 'push', route, router });

    return {
        post,
        channel,
        content,
        channelEdit,
        search,
        sort
    }
}

/**
 * Create a blog context object from the given configuration
 * @param param0 The blog configuration object
 * @returns A blog context object to pass to the blog admin components
 */
export const createBlogContext = ({ channelUrl, postUrl, contentUrl, router, route, axios }: BlogAdminConfig): BlogAdminContext => {

    const queryState = createQueryState(router, route);

    const getQuery = (): QueryState => queryState;

    const getAxios = () : AxiosInstance => axios;

    const getPostUrl = (): string => get(postUrl)

    const getContentUrl = (): string => get(contentUrl)

    const getChannelUrl = (): string => get(channelUrl)

    return{
        getAxios,
        getQuery,
        getPostUrl,
        getChannelUrl,
        getContentUrl,
    }
}