k3ssen/symfony-vuetified
Composer 安装命令:
composer require k3ssen/symfony-vuetified
包简介
Bundle for Symfony 4.4, 5+, 6+ applications with Vuetify
README 文档
README
Integrate Vuetify into your Symfony application, making it easy to pass serverside data to Vue through Twig.
Getting started
Assuming you have a Symfony 4.4, 5+ or 6+ application installed on a server with composer, yarn (or npm) and required modules:
- Run
composer require k3ssen/symfony-vuetified - Run
php bin/console symfony-vuetified:setupif you just created a new symfony project. Otherwise, see the manual setup documentation. - Install dependencies
- Start by running
yarn install. - Make sure to add the peer-dependencies as well. Preferably you should check the output in your console, though
the following should probably suffice:
yarn --dev add vue@^2.5 vue-class-component@^7.2 vue-property-decorator@^9.1 vue-template-compiler@^2.6.10 vuetify@^2.4 vuetify-loader@^1.7 - Run
yarn dev
When you see an Error for missing required bundles, install that bundle and runyarn devagain. Keep repeating this process (about 5 times) until DONE.
- Start by running
Concept/usage
This bundle aims to quickly achieve the following:
- Communicate serverside data from Twig to Vue without resorting to API's or
data-attributes in HTML. - Build your vue-components using Vuetify, Typescript and the vue-property-decorator.
- Render your Symfony form in Vuetify by using client-side form-rendering.
- Render dynamic vue components that are fetched and loaded via twig-files.
Global vue object
The basic concept is that you can use a global vue object. This object will be used for creating the vue-instance.
{% extends 'base.html.twig' %}
{% block body %}
<p>
@{ seconds } seconds have passed.
</p>
{% endblock %}
{% block script %}
<script>
vue = {
data: () => ({
seconds: 0,
}),
mounted() {
setInterval(() => {
this.seconds++;
}, 1000);
},
};
</script>
{% endblock %}
Note: Vue and Twig both use
{{and}}delimiters by default, so here@{and}are used instead for Vue. You can specify different delimiters if you want, but avoid using${like Symfony's example: When you use${something}this is parsed as javascript variable when used inside ticks ( ` ), which can be really confusing.
Passing serverside data to vue: vue_data
When passing data, you’ll often need to do things like below:
{% block script %}
<script>
vue = {
data: () => ({
someObject: {{ someObject | json_encode | raw }},
anotherObject: {{ anotherObject | json_encode | raw }},
})
}
</script>
{% endblock %}
If you need to pass server data to vue, you can use vue_data instead:
{% block body %}
{{ vue_data('someObject', someObject) }}
{{ vue_data('anotherObject', anotherObject) }}
<div v-if="someObject && anotherObject">
This text is only shown if both objects have a value.
</div>
{% endblock %}
Data added this way will be json encoded and merged with the global vue object.
Global observable: $store and vue_store
In addition to adding data to the vue-instance, data can be added to the vue $store observable, making data available to all vue components.
{% block body %}
{{ vue_store('someObject', someObject) }}
{{ vue_store('anotherObject', anotherObject) }}
<div v-if="$store.someObject && $store.anotherObject">
This text is only shown if both objects have a value.
</div>
{% endblock %}
Global vue components
Custom and vendor Vue-components aren't global by default, so they can't be used in Twig.
The globalComponents.ts file makes the components of Vuetify and this bundle globally available.
This way you can use these components almost wherever you want, including Twig.
The downside is that this'll increase the size of your javascript resources.
If you want don't want to make all these components global, you can choose to use the
vue-object.init.ts file instead of using import '@k3ssen/symfony-vuetified'.
Inside your app.ts, it would look something like below:
//... other stuff in your app.js file import Vue from 'vue'; import vueObject from '@k3ssen/symfony-vuetified/vue-object-init'; if (document.getElementById('sv-app') && typeof window.vue === 'object') { new Vue(vueObject); }
Now only components of the vue-core will work in twig, so you won't be able
to use components like <sv-form> of <v-alert> in your twig files.
If you want to make specific components available to twig, <sv-app> for example, you could use something like this:
Vue.component('SvApp', () => import('@k3ssen/symfony-vuetified/components/SvApp'));
Fetch component
Because dynamic vue components can be rendered at runtime, the same principles can be used with fetch and load the
response in a component.
This project includes a FetchComponent that makes it really easy:
<sv-fetch url="/url-to-controller-action"></sv-fetch>
If you're using {% extends '@SymfonyVuetified/base.html.twig' %} in your base.html.twig
then the suitable file to extend will be used:
if you're using fetch, only a template and the script will be loaded. Otherwise, the entire page is loaded.
Note: this component requires loading the fetched javascript. Fetching a page that defines variables/constants that were defined already will result in javascript-errors. Therefore, this bundle uses
windowto put global objects (like the globalvue) into.
Thesv-fetchcomponent specifically takes the global objects vue, vueData, vueStoreData into account by clearing these objects before fetching new content.
Symfony form rendered in Vue
Using form-functions in Twig or form_themes to create a Vuetify-form is difficult, especially when dealing with
edge-cases. This bundle enables you to render Symfony's FormView clientside:
{% block body %}
<sv-form :form="{{ form | vue}}"></sv-form>
{% endblock %}
You can take full control and render parts individually. It takes some getting used to it, because obviously Vue works differently from Twig's form-method, but it is quite powerful.
Read the forms documentation for more information.
k3ssen/symfony-vuetified 适用场景与选型建议
k3ssen/symfony-vuetified 是一款 基于 Vue 开发的 Composer 扩展包,目前已累计 207 次下载、GitHub Stars 达 15, 最近一次更新时间为 2021 年 04 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「php」 「JS」 「PHP7」 「vue」 「vuetify」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 k3ssen/symfony-vuetified 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 k3ssen/symfony-vuetified 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 k3ssen/symfony-vuetified 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
php7ify is a project that brings new php7 classes and exceptions to php 5.x.
The bundle for easy using json-rpc api on your project
Creates an XML file for a Single Euro Payments Area (SEPA) Credit Transfer.
It's a barebone security class written on PHP
Bundle Symfony DaplosBundle
Alfabank REST API integration
统计信息
- 总下载量: 207
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 15
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-04-05