survos/mobile-bundle
Composer 安装命令:
composer require survos/mobile-bundle
包简介
Bundle with utilities for creating a Symfony-based mobile app
关键字:
README 文档
README
A collection of tools to help create Symfony-based mobile apps.
- OnsenUI
- pwa-bundle
- Dexie
Work in Progress. See survos-sites/pokemon to see this in action.
Notes
These need to be cleaned up, but they're useful to me during development.
Twig
The application can be run as an SPA. The initial page must extend the base page
{% extends "@SurvosMobile/base.html.twig" %}
create app_controller and extend it from
If using the OnsenUI documentation, replace
onclick="loadPage('whatever')"
with
{{ stimulus_action(_app_sc, 'loadPage', 'click', {
route: 'whatever'
}) }}
_app_sc should be set to 'app', someday this may change (hotwired/stimulus#641)
Tabs and Pages
Two fundamental concepts: the tabs at the bottom of the screen, and everything else.
All pages, though, are pre-loaded as twig templates in OnsenController.
To create the tabs, the following, where id is the name of the tab template
#[AsEventListener(event: KnpMenuEvent::MOBILE_TAB_MENU)] public function tabMenu(KnpMenuEvent $event): void { $menu = $event->getMenu(); $this->add($menu, id: 'projects', label: 'projects', icon: 'fa-list'); $this->add($menu, id: 'tours', label: 'tours', icon: 'fa-list', badge: 'x'); $this->add($menu, id: 'share', label: 'share', icon: 'fa-qrcode');
Events
When a tab is clicked, a 'prechange' event is dispatched, with event.tabItem as the tab that's about to become active. We intercept
Dynamic Data
To load dynamic data into a page, you must first put the data into dixie. The basic way is to set up "stores" and define the indexable fields, eg..
survos_js_twig: debug: true db: omar-db version: 7 stores: - name: items schema: "++id,code,title,projectCode" url: /api/items - name: projects schema: "code" url: /api/projects
Stimulus Helpers
https://github.com/symfony/ux/blob/2.x/src/StimulusBundle/src/Dto/StimulusAttributes.php
tests: https://github.com/symfony/ux/blob/2.x/src/StimulusBundle/tests/Twig/StimulusTwigExtensionTest.php
I need a create and publish an es6 package that exports 3 functions produce the exact same result as their PHP counterpart.
For example,
import {stimulus_controller, stimulus_target, stimulus_action} from 'stimulus-twig'; let str = stimulus_controller('my-controller', {myValue: 'scalar-value'}); console.assert(str == 'data-controller="my-controller" data-my-controller-my-value-value="scalar-value"');
All of the tests can be found (in PHP) at https://github.com/symfony/ux/blob/2.x/src/StimulusBundle/tests/Twig/StimulusTwigExtensionTest.php The PHP code is at https://github.com/symfony/ux/blob/2.x/src/StimulusBundle/src/Dto/StimulusAttributes.php The methods should be able to return an array and a string, exactly as the PHP code does. Fortunately, the PHP code is very well written
This job consists of the following:
- Convert the PHP unit tests to javascript, using Jest or another testing packing.
- Convert the PHP code to an es6 class that exports the 3 methods and passes the tests
- Push the code to a github repo
- Publish the package to npmjs, and make sure it works with package bundlers like jsdelivr and unpkg
Please point to a package on npmjs that you've written
Requirement
bin/console importmap:require stimulus-attributes bin/console importmap:require fos-routing composer req friendsofsymfony/jsrouting-bundle
survos/mobile-bundle 适用场景与选型建议
survos/mobile-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 306 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 04 月 17 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony-ux」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 survos/mobile-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 survos/mobile-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 survos/mobile-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Sylius eCommerce administration panel component.
Doctrine Block management made easy
Symfony bundle for the Rekapager library
File input dropzones multiple for Symfony Forms
Symfony UX Table with search, filter and sorting options.
Effortless file management with Symfony UX and Mezcalito UX FileManager
统计信息
- 总下载量: 306
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 10
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-04-17