NoteBook

1 篇文章 0 订阅


使用vuex实现记事本功能

效果

在这里插入图片描述

目录结构

在这里插入图片描述

store/index.js

import Vue from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex)

var listArr = [{
    title: 'window.history',
    edit: '2018-6-15 12:05:00',
    text: '(1)back()、go()、forward()可以改变网站的浏览器url的状态,同时如果调用这几个方法的话会触发事件popState,子啊浏览器中点击相关的按钮也会触发该事件window.history.length可以返回历史浏览列表中的url的个数。' +
    '(2)H5中新增的方法:' +
    'pushState(state,title,url),将某个浏览的url保存到history中,但是不会触发事件popstate' +
    'replaceState(state,title,url),将指定的url替换当前的url但是也不会触发popstate事件',
    mark: true
},
    {
    title: '示例',
    edit: '2018-6-17 10:05:12',
    text: '这里也有些内容',
    mark: false
    }
];

export default new Vuex.Store({
    state:{
        listArr: listArr,
        nowEdit: listArr[0]
    },
    mutations: {
        //添加一个笔记
        add_file: function(state) {
            var temp = {
                title: '这里是标题',
                edit: '',
                text: '',
                mark: false 
            };
            state.listArr.push(temp);
            state.nowEdit = temp;
        },
        //设置为active
        set_active (state, note)
        {
            state.nowEdit = note;
        },
        //设置笔记内容
        set_text (state, text)
        {
            state.nowEdit.text = text;
        },
        //设置编辑时间
        set_time (state,time)
        {
            state.nowEdit.edit = time;   
        },
        //删除一个笔记
        delete_file: function (state, item) {
            for (var i = 0, len = state.listArr.length; i < len; i++) {
                if (state.listArr[i] == item) {
                    if (state.listArr[i] == state.nowEdit) {
                        state.nowEdit = stateListArr[0];
                    }
                    state.listArr.splice(i, 1);
                    break;
                }
            }
        },
        //标记一个笔记
        mark_file: function (state, item) {
            item.mark = !item.mark;
        },
        //设置笔记标题
        set_title: function (state, text) {
            state.nowEdit.title = text;
        }
    }
})

state中的nowEdit数组用于记录正在编辑的笔记,设置nowEdit:listArr[0]表示默认打开第一篇笔记。
更改vuex的store中的状态的唯一方法是提交mutation,根据需要在mutations中定义一些方法用于更改state中的状态。add_file是添加的笔记的内容,使用state.listArr.push(temp)添加temp内容到store的列表listArr里,
设置active,使用state.nowEdit=note;以下内容实现设置笔记内容ste_text和编辑时间set_time,实现对当前笔记的内容,时间的设置state.nowEdit
继续前行,实现删除一个笔记的功能。if(state.listArr[i] == state.nowEdit)如果删除当前的,笔记将定位到第一个state.nowEdit=stateListArr[0],state.listArr.splice(i,1)实现了直接删除第i个元素。
设置标记mark和标题title

main.js

src文件夹下面的main.js是应用的入口文件,里面有根实例,我们把Vuex store加到根实例里面,进而注入到他所有的子组件里面。

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import store from '../store/index'

Vue.config.productionTip = false

/* eslint-disable no-new */
new Vue({
  el: '#app',
  store,
  components: { App },
  template: '<App/>'
})

index.html

使用bootstrap中的glyphicon图标,在index.html中导入外部样式文件,其中main.css用于页面基本初始化布局。

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
    <link rel="stylesheet" href="static/css/main.css">
    <title>notebook</title>
  </head>
  <body>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>

main.css(static下的css文件夹下)

html, #app {
    height: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    height: 100%;
    max-height: 100%;
    position: relative;
}

App.vue

<template>
  <div id="app">
    <HeadPart></HeadPart>
    <div>
      <LeftTool></LeftTool>
      <EditTool></EditTool>
    </div>
  </div>
</template>

<script>
import HeadPart from './components/HeadPart.vue';
import EditTool from './components/EditTool.vue';
import LeftTool from './components/LeftTool.vue';

export default {
  name: 'App',
  components: {
    HeadPart,
    EditTool,
    LeftTool
  }
}
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

在根组件App.vue中import这三个组件,并放在components中。

HeadPart.vue

<template>
    <div id="ccHead">
        记事本
        <i class="glyphicon glyphicon-plus" style="margin-left:20px" @click="addFile"></i>
    </div>
</template>

<script>
export default {
    methods: {
        addFile:function(){
            this.$store.commit('add_file');
        }
    }
}
</script>

<style>
    #ccHead {
        background-color: #0d3349;
        color: whitesmoke;
        height: 50px;
        font-size: 20px;
        padding-left: 25px;
    }
    #addFile {
        height: 50px;
        line-height: 50px;
        float: right;
        margin-right: 100px;
    }
</style>

头部使用到BootStrap的+号,点击的时候使用store.commit方法触发一个类型为add_filemutation,进而更改Vuex.Store中的store.listArr。Vuex.Store中的状态改变,用到这些状态的子组件也会同步更新。

LeftTool.vue

LeftTool组件用于展示所有笔记的列表,使用v-for指令重复渲染。在computed计算属性中返回store中的状态。当text内容过多,不会显示全部,使用filters过滤器,返回过滤器处理的数据结果:当长度大于50时,只显示前50字符的内容,后面内容省略号返回。

<template>
    <div id="myLeft">
        <ul>
            <li class="myli" v-for="item in dataList" :class="{'myactive':nowEdit===item}" :key="item">
                <div class="myitem">
                    <div @click="setNowActive(item)">
                        <div class="ccTitle">{{item.title}}</div>
                        <p class="content">
                            {{item.text | subInfor}}
                        </p>
                    </div>
                    <div class="myinfor">
                        <span style="color: #86aee8;">最后编辑于:</span>
                        <span style="color: #86aee8;" class="data">{{item.edit}}</span>
                        <div style="float:right">
                            <i class="glyphicon glyphicon glyicon-trash myicon" @click="deleteFile(item)"></i>
                            <i class="glyphicon glyphicon-star myicon" :class="{mystart:item.mark}" @click="markFile(item)"></i>
                        </div>
                    </div>
                </div>
            </li>
        </ul>

    </div>
</template>

<script>
export default {
    computed: {
        //返回store中的值
        dataList () {
            return this.$store.state.listArr;
        },
        nowEdit () {
            return this.$store.state.nowEdit;
        },
    },
    methods: {
        setNowActive:function(item){
            this.$store.commit('set active',item);
        },
        deleteFile:function(item){
            this.$store.commit('delete_file',item);
        },
        markFile:function(item){
            this.$store.commit('mark_file',item);
        }
    },
    filters: {
        subInfor: function (value) {
            if(value.length&&value.length<50)
                return value;
            else
                return value.substring(0,50)+'...';
        }
    }
}
</script>

<style>
    #myLeft 
    {
        left: 0px;
        width: 350px;
        position: absolute;
        top: 50px;
        bottom: 0px;
        background-color: #fcfcfc;
        overflow-y: auto;
    }
    ul
    {
        list-style: none;
        padding: 0;
    }
    .myitem
    {
        height:110px;
        border-bottom: 1px solid #cccccc;
    }
    .mystart
    {
        color: #F7AE4F;
        font-size: 20px;
    }
    .content
    {
        font-size: 14px;
        line-height: 1.57142857;
        color: #999;
        height: 40px;
        overflow: hidden;
    }
    .myinfor
    {
        font-size: 12px;
        color: #6b6b6b;
    }
    .myli:hover
    {
        background-color: antiquewhite;
    }
    .ccTitle
    {
        margin-bottom: 8px;
        font-size: 20px;
        line-height: 28px;
        color: #3d3d3d;
        font-weight: bold;
        padding-left: 5px;
    }
    .myli.myactive
    {
        color: #fff;
        background-color: #dae4e1;
    }
    .myicon
    {
        font-size: 16px;
        margin-right: 10px;
    }
    .myicon:hover
    {
        color:#428bca;
    }
</style>

EditTool.vue

这部分组件用于展示和编辑标题和笔记内容。使用v-on指令监听DOM事件。在<textarea>触发input事件时,注意同时要更新最后编辑时间和文本内容。

<template>
    <div id="ccContainer">
        <div class="mytitle">
            <input type="text" class="ccTitle" :value="activeNoteText.title" @input="editTitle"> 
        </div>
        <textarea id="ccEdit" :value="activeNoteText.text" @inout="editNote"></textarea>
    </div>
</template>

<script>
function getTime(){
    var date = new Date();
    var year = date.getFullYear();//获取当前年份
    var mon = date.getMonth()+1;//获取当前月份
    var da = date.getDate();//获取当前日
    var day = date.getDay();//获取当前星期几
    var h = date.getHours();//获取当前小时
    var m = date.getMinutes();//获取当前分钟
    var s = date.getSeconds();//获取获取秒
    return year+'-'+mon+'-'+da+'-'+h+':'+m+':'+s;
}
export default {
    computed: {
        //返回store中的值
        activeNoteText (){
            return this.$store.state.nowEdit;
        }
    },
    methods: {
        editNote: function (e) {
            var text = e.target.value;
            this.$store.commit('set_text',text);
            var time = getTime();
            this.$store.commit('set-time',time);

        },
        editTitle:function(e){
            var text = e.targrt.value;
            this.$store.commit('set_title',text);
        }
    }
}
</script>

<style>
    #ccContainer{
        left: 350px;
        position: absolute;
        top: 50px;
        bottom: 0px;
        right: 0px;
    }
    #ccEdit
    {
        width: 100%;
        height: 100px;
        border: none;
        outline: none;
        border-radius: 0;
        padding: 6px 12px;
        font-size: 16px;
        line-height: 1.42857143;
        color: #555;
        padding-top: 5px;
    }
    .mytitle
    {
        padding-left: 10px;
        font-size:1.8em;
        line-height: 1.8em;
        color: #0d3349;
    }
    .ccTitle
    {
        width: auto;
        border: none;
        outline: none;
    }
</style>


well done!

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值