GithubHelp home page GithubHelp logo

Tab support about laravel-stub HOT 3 CLOSED

keizah7 avatar keizah7 commented on May 26, 2024
Tab support

from laravel-stub.

Comments (3)

milwad-dev avatar milwad-dev commented on May 26, 2024

Can you explain more? Could you show me some examples?

from laravel-stub.

keizah7 avatar keizah7 commented on May 26, 2024

Can you explain more? Could you show me some examples?

Stub:

class PostResource extends Resource
{
    public static function table(Table $table): Table
    {
        return $table
            ->columns([
{{ columns }}
            ]);
    }
}

Expected result:

class PostResource extends Resource
{
    public static function table(Table $table): Table
    {
        return $table
            ->columns([
                Tables\Columns\TextColumn::make('title'),
                Tables\Columns\TextColumn::make('content'),
                Tables\Columns\TextColumn::make('published_at')
                    ->dateTime('Y-m-d H:i:s'),
                Tables\Columns\TextColumn::make('author.name'),
            ]);
    }
}

As you can see, there are a lot of new lines and tabs necessary to generate the file with PSR coding style. It would be fantastic if the tool could handle these new lines and tabs automatically.

from laravel-stub.

milwad-dev avatar milwad-dev commented on May 26, 2024

The stub:

<?php

class Tab
{
    public function columns()
    {
        return {{ COLUMNS }};
    }
}

The PHP Code:

    $generate = LaravelStub::from($stub)
        ->to(__DIR__ . '/../App')
        ->replaces([
            'COLUMNS' => "[
            TextColumn::make('title'),
            TextColumn::make('content'),
        ]",
        ])
        ->name('new-test2')
        ->ext('php')
        ->generate();

Result:

<?php

class Tab
{
    public function columns()
    {
        return [
            TextColumn::make('title'),
            TextColumn::make('content'),
        ];
    }
}

from laravel-stub.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.