Commit realizado el 12:13:52 08-04-2024

This commit is contained in:
Pagina Web Monito
2024-04-08 12:13:55 -04:00
commit 0c33094de9
7815 changed files with 1365694 additions and 0 deletions

View File

@@ -0,0 +1,212 @@
<?php
/**
* Class BaseFieldState.
*/
/**
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare(strict_types = 1);
namespace Google\Web_Stories\Renderer\Stories\FieldState;
use Google\Web_Stories\Interfaces\Field;
use Google\Web_Stories\Interfaces\FieldState;
use Google\Web_Stories\Renderer\Stories\Fields\BaseField;
use Google\Web_Stories\Story_Post_Type;
/**
* Class BaseFieldState.
*/
class BaseFieldState implements FieldState {
/**
* Post type has archive.
*/
protected bool $has_archive = false;
/**
* Constructor.
*
* @param Story_Post_Type $story_post_type Story_Post_Type instance.
*/
public function __construct( Story_Post_Type $story_post_type ) {
$this->has_archive = (bool) $story_post_type->get_has_archive();
}
/**
* Image alignment FieldState.
*
* @since 1.5.0
*
* @return Field
*/
public function image_alignment() {
return new BaseField(
[
'label' => __( 'Image Alignment', 'web-stories' ),
'show' => false,
'hidden' => true,
]
);
}
/**
* Excerpt FieldState.
*
* @since 1.5.0
*
* @return Field
*/
public function excerpt() {
return new BaseField(
[
'label' => __( 'Display Excerpt', 'web-stories' ),
'show' => false,
'hidden' => true,
]
);
}
/**
* Author Field State.
*
* @since 1.5.0
*
* @return Field
*/
public function author() {
return new BaseField(
[
'label' => __( 'Display Author', 'web-stories' ),
'show' => true,
'hidden' => false,
]
);
}
/**
* Date field state.
*
* @since 1.5.0
*
* @return Field
*/
public function date() {
return new BaseField(
[
'label' => __( 'Display Date', 'web-stories' ),
'show' => false,
'hidden' => false,
]
);
}
/**
* Archive link field state.
*
* @since 1.5.0
*
* @return Field
*/
public function archive_link() {
return new BaseField(
[
'label' => __( 'Display Archive Link', 'web-stories' ),
'show' => $this->has_archive,
'hidden' => ! $this->has_archive,
]
);
}
/**
* Title field state.
*
* @since 1.5.0
*
* @return Field
*/
public function title() {
return new BaseField(
[
'label' => __( 'Display Title', 'web-stories' ),
'show' => true,
'hidden' => true,
]
);
}
/**
* Sharp corners field state.
*
* @since 1.5.0
*
* @return Field
*/
public function sharp_corners() {
return new BaseField(
[
'label' => __( 'Use Sharp Corners', 'web-stories' ),
'show' => false,
'hidden' => false,
]
);
}
/**
* Circle size field.
*
* @since 1.5.0
*
* @return BaseField
*/
public function circle_size() {
return new BaseField(
[
'label' => __( 'Circle Size', 'web-stories' ),
'show' => false,
]
);
}
/**
* Number of columns field.
*
* @since 1.5.0
*
* @return BaseField
*/
public function number_of_columns() {
return new BaseField(
[
'label' => __( 'Number of Columns', 'web-stories' ),
'show' => false,
]
);
}
/**
* Prepare a field object.
*
* @since 1.5.0
*
* @param array<string,bool|string> $args Arguments to build field.
* @return BaseField
*/
protected function prepare_field( array $args ): BaseField {
return new BaseField( $args );
}
}

View File

@@ -0,0 +1,51 @@
<?php
/**
* Carousel view based controls state.
*/
/**
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare(strict_types = 1);
namespace Google\Web_Stories\Renderer\Stories\FieldState;
use Google\Web_Stories\Renderer\Stories\Fields\BaseField;
/**
* Class CarouselView.
*/
final class CarouselView extends BaseFieldState {
/**
* Author field.
*
* @since 1.5.0
*
* @return \Google\Web_Stories\Interfaces\Field|BaseField
*/
public function author() {
$label = parent::author()->label();
return $this->prepare_field(
[
'label' => $label,
'show' => false,
'hidden' => false,
]
);
}
}

View File

@@ -0,0 +1,119 @@
<?php
/**
* Circle view based controls state.
*/
/**
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare(strict_types = 1);
namespace Google\Web_Stories\Renderer\Stories\FieldState;
use Google\Web_Stories\Renderer\Stories\Fields\BaseField;
/**
* Class CircleView.
*/
final class CircleView extends BaseFieldState {
/**
* Title field.
*
* @since 1.5.0
*
* @return \Google\Web_Stories\Interfaces\Field|BaseField
*/
public function title() {
$label = parent::title()->label();
return $this->prepare_field(
[
'label' => $label,
'show' => false,
'hidden' => false,
]
);
}
/**
* Author field.
*
* @return \Google\Web_Stories\Interfaces\Field|BaseField
*/
public function author() {
$label = parent::author()->label();
return $this->prepare_field(
[
'label' => $label,
'show' => false,
'hidden' => true,
]
);
}
/**
* Date field.
*
* @return \Google\Web_Stories\Interfaces\Field|BaseField
*/
public function date() {
$label = parent::date()->label();
return $this->prepare_field(
[
'label' => $label,
'show' => false,
'hidden' => true,
]
);
}
/**
* Sharp corners field.
*
* @return \Google\Web_Stories\Interfaces\Field|BaseField
*/
public function sharp_corners() {
$label = parent::sharp_corners()->label();
return $this->prepare_field(
[
'label' => $label,
'show' => false,
'hidden' => true,
]
);
}
/**
* Circle size field.
*
* @return BaseField
*/
public function circle_size() {
$label = parent::circle_size()->label();
return $this->prepare_field(
[
'label' => $label,
'show' => true,
'hidden' => false,
]
);
}
}

View File

@@ -0,0 +1,50 @@
<?php
/**
* List view based controls state.
*/
/**
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare(strict_types = 1);
namespace Google\Web_Stories\Renderer\Stories\FieldState;
use Google\Web_Stories\Renderer\Stories\Fields\BaseField;
/**
* Class GridView.
*/
final class GridView extends BaseFieldState {
/**
* Number of columns field.
*
* @since 1.5.0
*
* @return \Google\Web_Stories\Interfaces\Field|BaseField
*/
public function number_of_columns() {
$label = parent::number_of_columns()->label();
return $this->prepare_field(
[
'label' => $label,
'show' => true,
'hidden' => false,
]
);
}
}

View File

@@ -0,0 +1,89 @@
<?php
/**
* List view based controls state.
*/
/**
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare(strict_types = 1);
namespace Google\Web_Stories\Renderer\Stories\FieldState;
use Google\Web_Stories\Renderer\Stories\Fields\BaseField;
/**
* Class ListView.
*/
final class ListView extends BaseFieldState {
/**
* Excerpt field.
*
* @since 1.5.0
*
* @return \Google\Web_Stories\Interfaces\Field|BaseField
*/
public function excerpt() {
$label = parent::excerpt()->label();
return $this->prepare_field(
[
'label' => $label,
'show' => true,
'hidden' => false,
]
);
}
/**
* Author field.
*
* @since 1.5.0
*
* @return \Google\Web_Stories\Interfaces\Field|BaseField
*/
public function date() {
$label = parent::date()->label();
return $this->prepare_field(
[
'label' => $label,
'show' => true,
'hidden' => false,
]
);
}
/**
* Image alignment field.
*
* @since 1.5.0
*
* @return \Google\Web_Stories\Interfaces\Field|BaseField
*/
public function image_alignment() {
$label = parent::image_alignment()->label();
return $this->prepare_field(
[
'label' => $label,
'show' => true,
'hidden' => false,
]
);
}
}