在Django+Vue3+GraphQL的Blog例子代码中引入Element-Plus UI Framework

Vue3的UI Framework中有Element-Plus、BalmUI、Quasar、PrimeVue、Ant Design Vue等UI Framework.

Element-Plus是Element-UI的Vue3版,Element-UI的使用人数的基数较大,Github上的Star数也较多,就选择了Element-Plus作为这个Blog项目的UI Framework.

UI Framework的好处就是提供了相较裸Html+CSS开发起来更好看和方便一些.

Element-Plus在国内有镜像站点,参看起来速度相对快一些. Element-Plus国内镜像站点.

代码可以从Github上取得https://github.com/magicduan/django_vue_graphql/releases/tag/base_0.2

配置Element-UI开发环境

如果在已有的项目中安装的用包管理器安装最方便了.

 npm install element-plus --save

由于对Element-Plus的组件的使用方法不是很熟练, 按照官网的说明我直接从Element-Plus提供的Vite的快速模版进行启动.

https://github.com/element-plus/element-plus-vite-starter

从Github上下载代码后展开,执行下列命令就可以启动一个Element-Plus的Demo服务了.

npm install
npm run dev

按照前一篇Blog例子代码, 修改vite.config.ts,加入端口配置,将Vue的端口设置为8080

export default defineConfig({
....
  server:{
    port:8080
  },
....

使用npm 安装vue-router、apollo-client

npm install vue-router@4
npm install --save graphql graphql-tag @apollo/client
npm install --save @vue/apollo-composable

 

迁移代码

由于是后安装的vue-router,缺省的vue-router 没有设置, 建立与Frontend相同的目录

src/router
src/views

将Blog项目中的Frontend中相关的代码Copy进入对应目录

src/router/index.ts
src/views/AllPosts.vue
src/views/AuthorView.vue
src/views/PostsByTag.vue
src/views/PostView.vue
src/componets/AuthorLink.vue
src/componets/PostLis.vue

修改顶部菜单BaseHeader.vue

Element-UI模版提供的是顶菜单+左工具栏的UI模版, src/compoments/layout/BaseHeader.vue 为顶部菜单, BaseSide.vue为左边菜单.

这里我们修改BaseHeader.vue,修改后菜单项为

MyBlog --> HomeView.vue
Posts 
   All Posts --> All Posts
   Add Post //将来实现
   Delete Post//将来实现
Tag ->根据Backend端的取得Tag的种类动态生成Tag菜单
HelloWord -->对应原Element-UI的Helloworld的例子

由于需要根据BackEnd端的Tag查询结果动态生成Tag,我们为BaseHeader.vue加入Props :tagItems

Baseheader.vue代码具体修改如下:

<script setup lang="ts" >
import { toggleDark } from '~/composables';
import { ref } from 'vue';
const props = defineProps({
  tagItems:{type:Array,required:true, default:[]}
})

const msg = ref("/hello/\"Hello Vue 3.0 + Element Plus + Vite\"")

</script>
<template>
  <el-menu class="el-menu-demo" mode="horizontal" :router= true>
    <el-menu-item index="/">My Blog</el-menu-item>
    <el-sub-menu index="2">
      <template #title>Posts</template>
      <el-menu-item index="/posts">All Posts</el-menu-item>
      <el-menu-item index="2-1">Add Post</el-menu-item>
      <el-menu-item index="2-2">Delete Post</el-menu-item>
      <el-sub-menu index="2-4">
        <template #title>...</template>
        <el-menu-item index="2-4-1">item one</el-menu-item>
        <el-menu-item index="2-4-2">item two</el-menu-item>
        <el-menu-item index="2-4-3">item three</el-menu-item>
      </el-sub-menu>
    </el-sub-menu>

    <el-sub-menu v-if="tagItems.length" index="tags" >
      <template #title>Tags</template>
      <el-menu-item v-for="tagInfo in tagItems" :index="tagInfo.path">
        {{ tagInfo.name }}
      </el-menu-item>
    </el-sub-menu>
    <el-menu-item v-else :index="tags" disabled>Tags</el-menu-item>

    <el-menu-item :index="msg" >HelloVue</el-menu-item>

    <el-menu-item h="full" @click="toggleDark()">
      <button class="border-none w-full bg-transparent cursor-pointer" style="height: var(--ep-menu-item-height);">
        <i inline-flex i="dark:ep-moon ep-sunny" />
      </button>
    </el-menu-item>
  </el-menu>
</template>

 其中需要注意的几点:

  • 将菜单项与vue-router结合起来,菜单项的index属性为router/index.ts中设置的URL path, 需要设置el-menu
    :router= true
  • HelloWorld.vue 其中需要属性msg,为了在菜单中进行配置,我们需要在index.ts中将HelloWord.vue的URL的prop设置为true
  
const router = createRouter({
...  
    {
      path: '/hello/:msg',
      name: 'HellowWorld',
      component: () => import("../components/HelloWorld.vue"),
      props: true  
    },
...

将HelloWorld.vue Component的Prop属性作为参数来传递

修改App.vue

在App.vue中加入从Backend通过GraphQL取Tags的代码, 将Tags数组传递给BaseHeader.vue,将<HelloWord .../>改为<routerview/>

<script setup lang="ts">
import HomeView from './views/HomeView.vue';
import HelloWorld from './components/HelloWorld.vue';
import gql from 'graphql-tag';
import { useQuery } from '@vue/apollo-composable';
import { computed } from '@vue/reactivity';

const {result,loading,error} =  useQuery(gql`
  query getTags{
    tags {
          name
    }
  }
`)

const tags = computed(()=>{
  let tagsArray = []
  if (result.value){
    result.value?.tags.forEach(tagName => {
      let tagInfo = {path:"/tag/"+tagName.name,name:tagName.name}
      tagsArray.push(tagInfo)
    });
  }
  return tagsArray

})

</script>
<template>
  <el-config-provider namespace="ep" >
    <BaseHeader :tagItems="tags"/>
    <div style="display: flex">
      <BaseSide />
      <div>
        <!-- <HelloWorld msg="Hello Vue 3.0 + Element Plus + Vite" @changeTags ='changTags'/>  -->
        <RouterView/> 
      </div>
    </div>
  </el-config-provider>
</template>

<style>
#app {
  text-align: center;
  color: var(--ep-text-color-primary);
}

.element-plus-logo {
  width: 50%;
}
</style>

在Backend中加入Tags的查询

backend/blog/scheme/py

class Query(graphene.ObjectType):
    ....
    tags = graphene.List(TagType)
    .....
    def resolve_tags(root,info):
        return (
            models.Tag.objects.all()
        )

 

修改main.ts加入router,Apollo相关的代码

import { DefaultApolloClient } from '@vue/apollo-composable'
import { ApolloClient, createHttpLink, InMemoryCache } from '@apollo/client/core'

// HTTP connection to the API
const httpLink = createHttpLink({
  uri: 'http://localhost:8000/graphql',
})

// Cache implementation
const cache = new InMemoryCache()

// Create the apollo client
const apolloClient = new ApolloClient({
  link: httpLink,
  cache,
})

const app = createApp({
    setup () {
      provide(DefaultApolloClient, apolloClient)
    },
  
    render: () => h(App),
  })

app.use(router)

 

至此blog相关的代码迁移完成, 可以完成Posts List等操作了,但是页面相对不太好看,下一步我们使用Element-UI的控件进行对应改造即可.

使用Element-UI改造Posts等相关的Vue

在技术打通之后,UI的改造就是细心+审美的工作了,按照我自己的意思进行了修改,具体的修改就不赘述了,直接参考代码即可.

 

原文链接:https://www.cnblogs.com/magicduan/p/17315028.html

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:在Django+Vue3+GraphQL的Blog例子代码中引入Element-Plus UI Framework - Python技术站

(0)
上一篇 2023年4月17日
下一篇 2023年4月17日

相关文章

  • Django Rest framework之权限的实现示例

    我来详细讲解“Django Rest framework之权限的实现示例”的攻略。 什么是权限 在使用 Django Rest framework(以下简称 DRF)开发 Web API 的过程中,我们需要实现对 API 的访问进行权限控制,以保证数据的安全。权限可以分为两种类型: Object level permissions:对象级别权限,表示对某个具…

    python 2023年6月3日
    00
  • 详解YAML 和 JSON 的区别

    YAML和JSON都是常用的数据序列化格式,但它们在表达式法和应用场景上有很大的区别。 YAML和JSON的区别 语法 JSON:JSON是JavaScript Object Notation的缩写,是一种基于JavaScript语法的文本格式。其基本语法结构如下: { "name": "John", "ag…

    python-answer 2023年3月25日
    00
  • Python中Tkinter组件Menu的具体使用

    接下来我将为你详细讲解Python中Tkinter组件Menu的具体使用。 Tkinter的Menu组件 Tkinter中的Menu组件用于创建菜单栏。它可以嵌套在Tkinter窗口的顶部,并包含多个菜单和菜单项。 创建并显示一个简单的菜单栏 下面的代码演示如何创建一个简单的菜单栏,并向其添加菜单和菜单项: import tkinter as tk root…

    python 2023年6月13日
    00
  • Python numpy.broadcast_to()函数

    以下是Python numpy.broadcast_to()函数的详细攻略。 numpy.broadcast_to() 函数 numpy.broadcast_to() 函数将数组广播到新形状。它在原始数组上返回只读视图,不改变原始数组。 语法 numpy.broadcast_to(array, shape, subok=False) 参数说明 array:要…

    python-answer 2023年3月25日
    00
  • 使用Python批量修改文件名的代码实例

    下面是使用Python批量修改文件名的完整攻略及示例。 一、背景 在实际工作中,我们经常需要对大量的文件进行重命名。手动一个一个修改显然是非常费时费力的,因此可以使用Python编写批量修改文件名的程序来提高工作效率。 二、修改文件名的原理 Python中可以使用os模块中的rename函数来修改文件名。该函数的语法如下: os.rename(旧文件名, 新…

    python 2023年6月5日
    00
  • Python使用execjs执行包含中文参数的JavaScript

    Python使用execjs执行包含中文参数的JavaScript攻略 在Python中,我们可以使用execjs库来执行JavaScript代码。但是,当JavaScript代码中包含中文参数时,可能会出现编码问题。本文将详细讲解如何使用execjs执行包含中文参数的JavaScript,并提供两个示例。 环境配置 在使用execjs执行包含中文参数的Ja…

    python 2023年5月15日
    00
  • 如何检查NumPy数组中是否存在指定的值

    要检查NumPy数组中是否存在指定的值,可以使用np.isin()函数。该函数返回一个布尔数组,数组中的每个元素都是原数组中对应元素是否与指定值相等的结果。 下面是使用np.isin()函数的方法: 导入NumPy库,创建一个NumPy数组。 import numpy as np arr = np.array([1, 2, 3, 4, 5]) 使用np.is…

    python-answer 2023年3月25日
    00
  • 关于Python 解决Python3.9 pandas.read

    在Python3.9版本中,使用pandas.read_csv()函数读取csv文件时,可能会出现以下错误: AttributeError: module ‘pandas’ has no attribute ‘read_csv’ 这是因为在Python3.9版本中,pandas.read_csv()函数已经被弃用,取而代之的是pandas.read_csv(…

    python 2023年5月13日
    00
合作推广
合作推广
分享本页
返回顶部