import { Questionnaire } from '@/types'; const options = [ { id: 1, content: '完全不像我', value: '1' }, { id: 2, content: '不太像我', value: '2' }, { id: 3, content: '有点像我', value: '3' }, { id: 4, content: '比较像我', value: '4' }, { id: 5, content: '非常像我', value: '5' }, ]; export const empathy: Questionnaire = { id: 'empathy', title: 'IRI 人际反应指数量表(28题)', description: '从观点采择、共情关怀、个人痛苦和想象代入理解共情模式', category: '人格', tags: ['共情', '自评'], time: '6-10分钟', evaluation: { academicRecognition: 'A', retestSuitable: true, recommendedInterval: '1年', }, details: { introduction: 'IRI 是常用的多维共情自评量表。它不只看“是否有同理心”,而是区分理解他人视角、关心他人、在人际紧张中自己的不安反应,以及对故事角色的想象代入。', questionCount: '28个项目', evaluationTime: '通常为6-10分钟', instructions: '请根据这些描述与平时自己的相似程度作答。结果没有单一好坏,四个分项的组合更有意义。', scoringMethod: [ '每题1-5分,部分题目反向计分。', '四个分量表分别计算平均分:观点采择、共情关怀、个人痛苦、想象代入。', '不建议只看总分,尤其个人痛苦高分代表自我不安反应较强,不等同于更成熟的共情。', ], dimensions: [ { name: '观点采择', description: '是否能自然站到他人视角理解问题。' }, { name: '共情关怀', description: '是否容易对他人的处境产生关心和怜悯。' }, { name: '个人痛苦', description: '面对他人痛苦或紧张场景时,自己是否容易不安。' }, { name: '想象代入', description: '是否容易代入故事、电影或虚构角色的感受。' }, ], notes: [ '共情关怀高不等于必须承担他人的所有情绪。', '个人痛苦高时,可以关注边界感、情绪调节和助人后的恢复。', '该量表适合用于自我理解和关系反思,不是临床诊断工具。', ], references: [ { text: 'Davis (1983). Measuring individual differences in empathy: Evidence for a multidimensional approach.', url: 'https://doi.org/10.1037/0022-3514.44.1.113', }, { text: 'Interpersonal Reactivity Index overview', url: 'https://www.eckerd.edu/psychology/iri/', }, ], }, questions: [ { id: 1, content: '在做决定前,我通常会试着理解每个人的看法。' }, { id: 2, content: '我有时很难从别人的角度看问题。' }, { id: 3, content: '当朋友和我意见不同时,我会努力理解对方为什么这样想。' }, { id: 4, content: '我不太会花时间想别人为什么会有那样的感受。' }, { id: 5, content: '在争论中,我能同时看到双方各自合理的部分。' }, { id: 6, content: '我常常只从自己的立场判断事情。' }, { id: 7, content: '我能比较自然地把自己放到别人的处境里。' }, { id: 8, content: '看到别人遇到困难时,我通常会感到关心。' }, { id: 9, content: '面对陌生人的不幸,我也可能产生同情。' }, { id: 10, content: '别人难过时,我通常没什么感觉。' }, { id: 11, content: '我会为处境弱势的人感到心疼。' }, { id: 12, content: '当身边人受伤或受挫时,我会真心希望能帮上忙。' }, { id: 13, content: '他人的痛苦很少影响到我。' }, { id: 14, content: '我容易被真实的人情故事触动。' }, { id: 15, content: '看到紧张或冲突场面时,我自己也容易慌。' }, { id: 16, content: '当别人情绪崩溃时,我常常不知道该怎么保持镇定。' }, { id: 17, content: '在紧急场景里,我通常能保持冷静。' }, { id: 18, content: '看到别人受苦时,我会感到明显的不舒服。' }, { id: 19, content: '别人很焦虑时,我也容易被带得焦虑。' }, { id: 20, content: '面对他人的痛苦,我通常不会太受影响。' }, { id: 21, content: '当身边气氛很紧张时,我会感到压力。' }, { id: 22, content: '看电影或读小说时,我很容易代入角色。' }, { id: 23, content: '我常常想象自己处在故事人物的位置。' }, { id: 24, content: '虚构角色的经历通常不会让我有太强感受。' }, { id: 25, content: '看完一个故事后,我有时会继续想着角色的命运。' }, { id: 26, content: '我很少被小说、影视里的情绪感染。' }, { id: 27, content: '我能很快进入一个故事营造的情绪世界。' }, { id: 28, content: '我不太会把自己想象成故事中的人物。' }, ], renderOptions: () => options, };