承接 marshmallow/gtmetrix 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

marshmallow/gtmetrix

最新稳定版本:v1.1.2

Composer 安装命令:

composer require marshmallow/gtmetrix

包简介

Get GT Metrix information in Laravel Nova for you website pages. This package can also be used stand-alone.

README 文档

README

alt text

GT Metrix for Laravel Nova

Get GT Metrix information in Laravel Nova for you website pages. This package can also be used stand-alone.

How does it work?

You create an account on GT Metrix. Once you have an API key you are good to go. You can add this library on every resource you want to, as long as it has a public url connected to it so we can get the GT Metrix score for that url.

Index view

On the index page we show an avarage score of the `Pagespeed` score and the `Yslow` score.

Detail view

On the detail view we will show the `Pagespeed` score and the `Yslow` score. You can click on them to go to the full report on the GTmetrix.com website.

Action

On the detail view you will be able to start an action. This action is queued so make sure you have a worker running. This is needed because the changes of a timeout are big if its busy at GTmetrix.

Once you've selected the action to get a new score you will get a popup telling you how much credits you have left and if you are sure you want to spend another credit.

Installation

Pull in the library using composer.

composer require marshmallow/gtmetrix

Update your .env file and add the to env properties listed below.

GTMETRIX_EMAIL_ADDRESS=...
GTMETRIX_API_KEY=...

Prepare your models

  1. Add use Actionable; and use GTMetrix; to your model.
namespace App;

use Laravel\Nova\Actions\Actionable;
use Marshmallow\GTMetrix\Traits\GTMetrix;

class Post extends Model
{
    use GTMetrix;
    use Actionable;
    // ...
  1. Add the public method getFullPublicPath() to your models. When getting the status from GT Metrix, we will use the result of this method as the url you want to check.
class Post extends Model
{
    // ...

    public function getFullPublicPath()
    {
        return 'https://marshmallow.dev/' . $this->slug;
    }
}

Prepare your nova resources

  1. Add GTMetrixField::make('GT Metrix'), as a field.
use Marshmallow\GTMetrix\GTMetrixField;

public function fields(Request $request)
{
    return [
        ID::make(__('ID'), 'id')->sortable(),
        GTMetrixField::make('GT Metrix'),
    ];
}
  1. Add new CheckGTMetrixScore, as an action.
use Marshmallow\GTMetrix\Actions\CheckGTMetrixScore;

public function actions(Request $request)
{
    return [
        new CheckGTMetrixScore,
    ];
}

统计信息

  • 总下载量: 5.98k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-08-19