Template:Mobility: Difference between revisions

    From UNITApedia
    No edit summary
    Tag: Reverted
    No edit summary
    Tag: Manual revert
    Line 1: Line 1:
    <noinclude>
    <noinclude>
    This template dynamically generates a Mobility chart using data from DataSrc:T241.
    [[Category:Templates]]
    Usage: Simply insert {{Mobility}} on a page.
    <!--{{#cargo_declare:
    [[Category:Mobility]]
    _table=mobilities;
    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>
    <!-- Step 1: Define an inline JSON row formatter -->
    [[Category:Mobilities]]
    {{#vardefine: MobilityRowInline |
    {{#if: {{{MobilityType|}}} | [[Category:{{{MobilityType}}}]] }}
    <noinclude>Defines the JSON output for each row</noinclude>
    {| class="wikitable" style="float:right; margin:0 0 0 1em; text-align:left;"
    <includeonly>{
    |-
      "mobility": "{{{type_of_mobility}}}",
    ! Mobility ID
      "status": "{{{status_of_mobility_participant}}}",
    | [[ID::{{{ID|}}}]]
      "participants": {{{participants|0}}}
    |-
    }</includeonly>
    ! University
    }}
    | [[University::{{{University|}}}]]
     
    |-
    <!-- Step 2: Query all rows from DataSrc:T241 and store the raw JSON array -->
    ! Type of Mobility
    {{#vardefine:rawData|
    | [[MobilityType::{{{MobilityType|}}}]]
      {{#ask:
    |-
        [[-Has subobject::DataSrc:T241]]
    ! Participant Status
        | ?type_of_mobility
    | [[Status::{{{Status|}}}]]
        | ?status_of_mobility_participant
    |-
        | ?participants
    ! Participants
        | format=template
    | [[Participants::{{{Participants|}}}]]
        | template=MobilityRowInline
    |}
        | intro=[
        | outro=]
        | sep=,
      }}
    }}
     
    <!-- Step 3: Render the Mobility bar 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',
          // Categories (the mobility types) are read from the dataset's "mobility" field.
        },
        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 13:11, 20 March 2025


    Template for documenting a single mobility event.

    Template parameters

    ParameterDescriptionTypeStatus
    Mobility IDID

    Unique identifier for the mobility event

    Example
    1, 2, 3
    Numberrequired
    University of OriginUniversity

    Name of the university where the mobility originated

    Example
    Universitatea De Vest Din Timisoara
    Stringrequired
    Type of MobilityMobilityType

    The type of mobility event (e.g., BIP‑student mobility for studies, SMS‑student mobility for studies, etc.)

    Example
    BIP‑student mobility for studies
    Stringrequired
    Participant StatusStatus

    The status of the mobility participant (e.g., Student bachelor, Staff academic, etc.)

    Example
    Student bachelor
    Stringrequired
    Number of ParticipantsParticipants

    Count of participants for this mobility event

    Example
    101
    Numberrequired