Template:Mobility: Difference between revisions

    From UNITApedia
    No edit summary
    No edit summary
    Tag: Reverted
    Line 1: Line 1:
    <noinclude>
    <noinclude>
    [[Category:Templates]]
    This template dynamically generates a bar chart from the T241 data.
    <!--{{#cargo_declare:
    Usage: Insert {{Mobility}} on any page.
    _table=mobilities;
    [[Category:Mobility]]
    Has_ID= Integer;
    Has_University= String;
    Has_MobilityType= String;
    Has_Status= String;
    Has_Participants= Integer;
    }}-->
     
    <templatedata>
    {
    "params": {
    "ID": {
    "label": "Mobility ID",
    "description": "Unique identifier for the mobility event",
    "example": "1, 2, 3",
    "type": "number",
    "required": true
    },
    "University": {
    "label": "University of Origin",
    "description": "Name of the university where the mobility originated",
    "example": "Universitatea De Vest Din Timisoara",
    "type": "string",
    "required": true
    },
    "MobilityType": {
    "label": "Type of Mobility",
    "description": "The type of mobility event (e.g., BIP‑student mobility for studies, SMS‑student mobility for studies, etc.)",
    "example": "BIP‑student mobility for studies",
    "type": "string",
    "required": true
    },
    "Status": {
    "label": "Participant Status",
    "description": "The status of the mobility participant (e.g., Student bachelor, Staff academic, etc.)",
    "example": "Student bachelor",
    "type": "string",
    "required": true
    },
    "Participants": {
    "label": "Number of Participants",
    "description": "Count of participants for this mobility event",
    "example": "101",
    "type": "number",
    "required": true
    }
    },
    "description": "Template for documenting a single mobility event.",
    "paramOrder": [
    "ID",
    "University",
    "MobilityType",
    "Status",
    "Participants"
    ]
    }
    </templatedata>
    </noinclude>
    </noinclude>
    <includeonly>
    <includeonly>
    [[Category:Mobilities]]
    <!-- Step 1: Define an inline row formatter for each data row -->
    {{#if: {{{MobilityType|}}} | [[Category:{{{MobilityType}}}]] }}
    {{#vardefine: MobilityRowInline |
    {| class="wikitable" style="float:right; margin:0 0 0 1em; text-align:left;"
    <noinclude>This block defines the JSON output for each row.</noinclude>
    |-
    <includeonly>{
    ! Mobility ID
      "mobility": "{{{type_of_mobility}}}",
    | [[ID::{{{ID|}}}]]
      "status": "{{{status_of_mobility_participant}}}",
    |-
      "participants": {{{participants|0}}}
    ! University
    }</includeonly>
    | [[University::{{{University|}}}]]
    }}
    |-
     
    ! Type of Mobility
    <!-- Step 2: Query all rows from DataSrc:T241 and output them as a raw JSON array -->
    | [[MobilityType::{{{MobilityType|}}}]]
    {{#vardefine:rawData|
    |-
      {{#ask:
    ! Participant Status
        [[-Has subobject::DataSrc:T241]]
    | [[Status::{{{Status|}}}]]
        | ?type_of_mobility
    |-
        | ?status_of_mobility_participant
    ! Participants
        | ?participants
    | [[Participants::{{{Participants|}}}]]
        | format=template
    |}
        | template=MobilityRowInline
        | intro=[
        | outro=]
        | sep=,
      }}
    }}
     
    <!-- Step 3: Render the chart using ECharts -->
    {{#echarts:
    | width=800px
    | height=500px
    | option = {
        tooltip: {
          trigger: 'axis',
          axisPointer: { type: 'shadow' }
        },
        legend: {},
        dataset: [
          {
            id: 'raw',
            dimensions: ['mobility','status','participants'],
            source: {{#var:rawData}}
          },
          {
            id: 'Student bachelor',
            fromDatasetId: 'raw',
            transform: {
              type: 'filter',
              config: { dimension: 'status', '=': 'Student bachelor' }
            }
          },
          {
            id: 'Student master',
            fromDatasetId: 'raw',
            transform: {
              type: 'filter',
              config: { dimension: 'status', '=': 'Student master' }
            }
          },
          {
            id: 'Student doctorate',
            fromDatasetId: 'raw',
            transform: {
              type: 'filter',
              config: { dimension: 'status', '=': 'Student doctorate' }
            }
          },
          {
            id: 'Staff academic',
            fromDatasetId: 'raw',
            transform: {
              type: 'filter',
              config: { dimension: 'status', '=': 'Staff academic' }
            }
          },
          {
            id: 'Staff administrative',
            fromDatasetId: 'raw',
            transform: {
              type: 'filter',
              config: { dimension: 'status', '=': 'Staff administrative' }
            }
          },
          {
            id: 'Researcher',
            fromDatasetId: 'raw',
            transform: {
              type: 'filter',
              config: { dimension: 'status', '=': 'Researcher' }
            }
          }
        ],
        xAxis: {
          type: 'category'
        },
        yAxis: {
          type: 'value'
        },
        series: [
          {
            name: 'Student bachelor',
            type: 'bar',
            datasetId: 'Student bachelor',
            encode: { x: 'mobility', y: 'participants' }
          },
          {
            name: 'Student master',
            type: 'bar',
            datasetId: 'Student master',
            encode: { x: 'mobility', y: 'participants' }
          },
          {
            name: 'Student doctorate',
            type: 'bar',
            datasetId: 'Student doctorate',
            encode: { x: 'mobility', y: 'participants' }
          },
          {
            name: 'Staff academic',
            type: 'bar',
            datasetId: 'Staff academic',
            encode: { x: 'mobility', y: 'participants' }
          },
          {
            name: 'Staff administrative',
            type: 'bar',
            datasetId: 'Staff administrative',
            encode: { x: 'mobility', y: 'participants' }
          },
          {
            name: 'Researcher',
            type: 'bar',
            datasetId: 'Researcher',
            encode: { x: 'mobility', y: 'participants' }
          }
        ]
      }
    }}
    </includeonly>
    </includeonly>

    Revision as of 10:33, 20 March 2025

    This template dynamically generates a bar chart from the T241 data. Usage: Insert



    on any page.
    


    }}


    </includeonly>