Skip to content

CUR-4122 column layout upgrade #1319

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions database/migrations/2022_09_14_135742_add_guess_the_answer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

use Illuminate\Database\Migrations\Migration;

class AddGuessTheAnswer extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
\Artisan::call('db:seed', [
'--class' => AddGuessTheAnswerSemanticsSeeder::class,
'--force' => true
]);
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

use Illuminate\Database\Migrations\Migration;

class AddQuestionSetOneTwenty extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
\Artisan::call('db:seed', [
'--class' => AddQuestionSetOneTwentySemanticsSeeder::class,
'--force' => true
]);
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

use Illuminate\Database\Migrations\Migration;

class AddEssayFifteenSemantics extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
\Artisan::call('db:seed', [
'--class' => AddEssayFifteenSemanticsSeeder::class,
'--force' => true
]);
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class AddColumnLayoutSemantics extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
\Artisan::call('db:seed', [
'--class' => AddColumnLayoutSemanticsSeeder::class,
'--force' => true
]);
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}
163 changes: 163 additions & 0 deletions database/seeds/AddColumnLayoutSemanticsSeeder.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,163 @@
<?php

use Illuminate\Database\Seeder;

class AddColumnLayoutSemanticsSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$h5pFibLibParams = ['name' => "H5P.Column", "major_version" => 1, "minor_version" => 15];
$h5pFibLib = DB::table('h5p_libraries')->where($h5pFibLibParams)->first();

if (empty($h5pFibLib)) {
$h5pFibLibId = DB::table('h5p_libraries')->insertGetId([
'name' => 'H5P.Column',
'title' => 'Column',
'major_version' => 1,
'minor_version' => 15,
'patch_version' => 2,
'embed_types' => 'iframe',
'runnable' => 1,
'restricted' => 0,
'fullscreen' => 0,
'preloaded_js' => 'scripts/h5p-column.js',
'preloaded_css' => 'styles/h5p-column.css,styles/custom-column-layout.css',
'drop_library_css' => '',
'semantics' => $this->getSemantics(),
'tutorial_url' => ' ',
'has_icon' => 1
]);
// insert libraries languages
$this->insertLibrariesLanguages($h5pFibLibId);
}
}

/**
* Insert Library Language Semantics
* @param $h5pFibLibId
*/
private function insertLibrariesLanguages($h5pFibLibId)
{
// en.json
DB::table('h5p_libraries_languages')->insert([
'library_id' => $h5pFibLibId,
'language_code' => 'en',
'translation' => json_encode(json_decode('{
"semantics": [
{
"label": "List of Column Content",
"entity": "content",
"field": {
"fields": [
{
"label": "Content"
},
{
"label": "Separate content with a horizontal ruler",
"options": [
{
"label": "Automatic (default)"
},
{
"label": "Never use ruler above"
},
{
"label": "Always use ruler above"
}
]
}
]
}
}
]
}
'), JSON_PRETTY_PRINT|JSON_UNESCAPED_UNICODE)
]);
}

private function getSemantics() {
return '[
{
"name": "content",
"label": "List of Column Content",
"importance": "high",
"type": "list",
"min": 1,
"entity": "content",
"field": {
"name": "content",
"type": "group",
"fields": [
{
"name": "content",
"type": "library",
"importance": "high",
"label": "Content",
"options": [
"H5P.Accordion 1.0",
"H5P.Agamotto 1.5",
"H5P.Audio 1.5",
"H5P.AudioRecorder 1.0",
"H5P.Blanks 1.14",
"H5P.Chart 1.2",
"H5P.Collage 0.3",
"H5P.CoursePresentation 1.24",
"H5P.Dialogcards 1.9",
"H5P.DocumentationTool 1.8",
"H5P.DragQuestion 1.14",
"H5P.DragText 1.10",
"H5P.Essay 1.5",
"H5P.GuessTheAnswer 1.5",
"H5P.Table 1.1",
"H5P.AdvancedText 1.1",
"H5P.IFrameEmbed 1.0",
"H5P.Image 1.1",
"H5P.ImageHotspots 1.10",
"H5P.ImageHotspotQuestion 1.8",
"H5P.ImageSlider 1.1",
"H5P.InteractiveVideo 1.24",
"H5P.Link 1.3",
"H5P.MarkTheWords 1.11",
"H5P.MemoryGame 1.3",
"H5P.MultiChoice 1.16",
"H5P.Questionnaire 1.3",
"H5P.QuestionSet 1.20",
"H5P.SingleChoiceSet 1.11",
"H5P.Summary 1.10",
"H5P.Timeline 1.1",
"H5P.TrueFalse 1.8",
"H5P.Video 1.6"
]
},
{
"name": "useSeparator",
"type": "select",
"importance": "low",
"label": "Separate content with a horizontal ruler",
"default": "auto",
"options": [
{
"value": "auto",
"label": "Automatic (default)"
},
{
"value": "disabled",
"label": "Never use ruler above"
},
{
"value": "enabled",
"label": "Always use ruler above"
}
]
}
]
}
}
]';
}
}
Loading